如何在 Python 中将整数转换为有符号字(与 PySerial 一起使用)?
我在使用 pyserial 让 Python 与硬件显示器对话时遇到一些问题。 某些显示器的功能需要在命令之后作为参数发送带符号的单词(即显示屏上的 X 或 Y)。
我以前一直使用 chr() ,但这只适用于数字 < 255.
我已经尝试了以下转换,但它给出了一些奇怪的结果,将东西放置在远离设定位置的位置:
def ByteIt(self,data):
datastring = str()
for each in tuple(str(data)):
datastring = datastring + chr(int(each))
return datastring
我可能在这里偏离了自己:)
我将如何使用它的示例:
x = 100
y = 350
serial.Write('\x01' + ByteIt(x) + ByteIt(y)) # command , xpos , ypos
问题是,当我这样做时,这些东西没有放置在x100,y350,大多数时候显示器会崩溃:(
有关如何正确完成此操作的任何提示?
I'm having some problems making Python talk to a hardware display using pyserial.
Some of the display's functions require a signed word to be sent as arguments after commands (ie. X or Y on display screen).
I've been getting by with chr() previously, but that only works with numbers < 255.
I've tried the following for conversion but it's giving some weird results, placing things way off the set position:
def ByteIt(self,data):
datastring = str()
for each in tuple(str(data)):
datastring = datastring + chr(int(each))
return datastring
I may be way off myself here :)
Example of how i would use it:
x = 100
y = 350
serial.Write('\x01' + ByteIt(x) + ByteIt(y)) # command , xpos , ypos
The thing is, when i do this, the stuff is not placed at x100,y350, most times the display will crash :(
Any tips on how this can be done properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
了解
struct
模块。http://docs.python.org/library/struct.html
替换所有“chr”以及正确的 struct.pack() 调用。
具体
应该给你一个“签名词”。
Read about the
struct
module.http://docs.python.org/library/struct.html
Replace all of the "chr" and stuff with proper
struct.pack()
calls.Specifically
Should give you a "signed word".
您可能需要再次修改有关“pack”和“unpack”的文档。选择适当的大写或小写允许您指定字节顺序。因此,根据上面的示例,它在您的设备上无法完美运行,我认为您需要:
You may want to revise again the documentation about "pack" and "unpack". Selecting the appropriate upper-case or lower-case allows you to specify the Endianness. So, based on the example above which didn't work perfectly on your device, I presume you need: