按道理来说这种报错是我发的格式不对,但是我这个发的形式不就是用字典吗,可有时候却可以接收得到,有时候还是会报这个错,不稳定。我猜有可能是发送周期不统一,但不清楚具体原因,请问有什么好的解决办法吗。
我想通过读取串口里的数据,然后再用json解码,另外一个设备也是用json的格式发送的数据,和我用串口助手发送的形式一样。
while(uart.any()):
ch = uart.read()
#print(ch)
Receive_data=ujson.loads(ch)
#pyb.delay(200)
print(Receive_data)
root = Receive_data["x"]
method = Receive_data["value"]
id_0 = Receive_data["y"]
print('root:',root,'method:',method,'id:',id_0)