Boxing captor arduino nano 33 ble:问题 excel
Boxing captor arduino nano 33 ble : problem excel
(抱歉英语不好)
我为学校做了一个项目:这是一个用 Arduino nano 33 ble sense 制作的拳击捕手。我只使用卡上的加速度计和陀螺仪。我想知道拳击手击打的加速度,以推断出拳击手的击打力量。出气筒的倾斜度也很有用。
俘虏将被放在出气筒上。
加速度计的简单程序可以工作,但是当我尝试编辑它以传输数据时 excel 我收到一条错误消息“错误:DATA < ASCII 10 或 >ACSII 200 with PLX-DAQ ....”。我无法修复它..
你能帮帮我吗?
感谢您的帮助!!
the code is here
错误表明 PLX-DAQ 不接受 < 10 或 > 200 的 ASCII 字符。
\t
,水平制表符为十进制9
。确保只发送 ASCII table.
中十进制 10-200 的字符
https://en.wikipedia.org/wiki/ASCII
来自 PLX-DAQ 手册:
- For simple error checking, PLX-DAQ will indicate an error anytime that
a string containing characters < ASCII 10 or > ASCII 200 is received.
- Values of ASCII 10 (Line Feed) are replaced with ASCII 13 (Carriage
Return) prior to processing.
我建议您使用逗号而不是水平制表符来分隔值。
(抱歉英语不好)
我为学校做了一个项目:这是一个用 Arduino nano 33 ble sense 制作的拳击捕手。我只使用卡上的加速度计和陀螺仪。我想知道拳击手击打的加速度,以推断出拳击手的击打力量。出气筒的倾斜度也很有用。 俘虏将被放在出气筒上。 加速度计的简单程序可以工作,但是当我尝试编辑它以传输数据时 excel 我收到一条错误消息“错误:DATA < ASCII 10 或 >ACSII 200 with PLX-DAQ ....”。我无法修复它..
你能帮帮我吗?
感谢您的帮助!!
the code is here
错误表明 PLX-DAQ 不接受 < 10 或 > 200 的 ASCII 字符。
\t
,水平制表符为十进制9
。确保只发送 ASCII table.
https://en.wikipedia.org/wiki/ASCII
来自 PLX-DAQ 手册:
- For simple error checking, PLX-DAQ will indicate an error anytime that a string containing characters < ASCII 10 or > ASCII 200 is received.
- Values of ASCII 10 (Line Feed) are replaced with ASCII 13 (Carriage Return) prior to processing.
我建议您使用逗号而不是水平制表符来分隔值。