使用Python通过串行发送字符串命令

时间:2020-04-28 22:29:01

标签: arduino pyserial

我正在尝试通过下面的代码发送2个命令。

while(1):
    if(serialPort.in_waiting>0):
        data=serialPort.readline()
        print(data.decode('Ascii'))

serialPort.write('relay.off CL30_1'.encode())
time.sleep(1)
serialPort.write('relay.on CL30_1'.encode())

没有收到命令。

0 个答案:

没有答案