在Python中接收16位整数
我正在通过串行端口从硬件读取 16 位整数。
使用Python,我怎样才能得到正确的LSB和MSB,并使Python明白它是我正在摆弄的16位有符号整数,而不仅仅是两个字节的数据?
I'm reading 16-bit integers from a piece of hardware over the serial port.
Using Python, how can I get the LSB and MSB right, and make Python understand that it is a 16 bit signed integer I'm fiddling with, and not just two bytes of data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 struct 模块:
Try using the struct module: