我的代码存在问题。
我需要从PICAXE KIT接收MSB和LSB 10位数据,但我不知道如何在我可以使用的整数上转换MSB和LSB。
我尝试了,但不行。
for x in range(1,400,10):
MSB = ser.read(2)
LSB = ser.read(2)
datos = (MSB*256)+LSB
print datos
degree = float(int(datos,2))
linea = (432,200)
linea_len = 100
x = linea[0] + math.cos(math.radians(degree)) * linea_len
y = linea[1] + math.sin(math.radians(degree)) * linea_len
如何通过串口接收来自picaxe的MSB和LSB
谢谢你