环境:
* python 2.7.3
* pyserial
我有一个程式,透过 RS232 送命令给终端装置。
a = '\xaa\x21\x01\x00'
ser.write(a)
可以正常运行
但我希望能让使用者自由送出这四个 byte
def sendData( byte1, byte2, byte3, byte4)
ser.write( hex(byte1) + hex(byte2) + hex(byte3) + hex(byte4) )
改为
def sendData( byte1, byte2, byte3, byte4)
ser.write( chr(byte1) + chr(byte2) + chr(byte3) + chr(byte4) )
这样送出的资料却不正确
不知道有人遇过这样的问题吗?