标签:log pre hex ascii class 字符串 格式 nas 字符
python 2.7
serial串口发送只有字符串格式,发送hex格式需要稍微转换一下
# a=‘48‘.encode(‘hex‘) #‘3438‘ #a=‘0‘.encode(‘hex‘) #‘30‘ #只能0~255的数字 b=chr(48) #‘0‘ b=chr(0x30) #‘0‘ # import binascii c=binascii.b2a_hex(‘48‘) #‘3438‘ #c=binascii.b2a_hex(‘0‘) #‘30‘
标签:log pre hex ascii class 字符串 格式 nas 字符
原文地址:http://www.cnblogs.com/dyan1024/p/7753612.html