码迷,mamicode.com
首页 > 编程语言 > 详细

python 串口发送hex码

时间:2017-10-30 15:02:21      阅读:383      评论:0      收藏:0      [点我收藏+]

标签: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‘

 

python 串口发送hex码

标签:log   pre   hex   ascii   class   字符串   格式   nas   字符   

原文地址:http://www.cnblogs.com/dyan1024/p/7753612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!