python3 pySerial TypeError: unicode strings are not supported, please encode to bytes:

泪湿孤枕 提交于 2019-11-28 23:16:53

Encode your data which you are writing to serial,in your case "serialcmd" to bytes.try the following :

ser.write(serialcmd.encode())

i found same you problem for learn "Arduino Python Serial"
You can do another way this:

ser.write(str.encode('allon'))
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!