[問題] str 或 int 轉 bytes 輸出,使用 pyserial 套件

作者: wadd (醜男轉世-低調)   2013-12-19 16:28:20
環境:
* 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) )
這樣送出的資料卻不正確
不知道有人遇過這樣的問題嗎?
作者: fjm31714 (float)   2013-02-19 17:07:00
hex 應該不是你要的結果應該用 chr ?
作者: wadd (醜男轉世-低調)   2013-02-19 19:22:00
我現是直接用土炮的方式直接一對一 mapping,我試試 chr謝謝你的回應。

Links booklink

Contact Us: admin [ a t ] ucptt.com