如何在 Python 中将整数转换为有符号字(与 PySerial 一起使用)?

发布于 2024-09-11 04:21:46 字数 588 浏览 6 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

和影子一齐双人舞 2024-09-18 04:21:46

了解 struct 模块。

http://docs.python.org/library/struct.html

替换所有“chr”以及正确的 struct.pack() 调用。

具体

bytes = struct.pack( 'h', some_data )

应该给你一个“签名词”。

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

bytes = struct.pack( 'h', some_data )

Should give you a "signed word".

少女情怀诗 2024-09-18 04:21:46

您可能需要再次修改有关“pack”和“unpack”的文档。选择适当的大写或小写允许您指定字节顺序。因此,根据上面的示例,它在您的设备上无法完美运行,我认为您需要:

x = 100
y = 350
serial.Write('\x01' + 
             struct.pack('>hh', x) + 
             struct.pack('>hh', y)) # command , xpos , ypos

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:

x = 100
y = 350
serial.Write('\x01' + 
             struct.pack('>hh', x) + 
             struct.pack('>hh', y)) # command , xpos , ypos
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文