为什么我的arduino不使用串口?

时间:2017-04-07 07:47:47

标签: python arduino

我正在尝试使用wii nunchuk作为带有arduino的鼠标。 project就在这里。

以下是错误消息:photo

如果您想知道我为什么不在页面上发布此内容,那是因为它已经有好几年了,而且还没有人再去那里了。

1 个答案:

答案 0 :(得分:0)

在你的python脚本中,你忘了在定义串行对象时初始化波特率" port"

# The port to which your Arduino board is connected
port = 'arduino_port'

试试这个,

# The port to which your Arduino board is connected
port = serial.Serial('/dev/ttyACM0',9600)  
#or whatever your port is called