如何在移动设备上使用 Python 访问串行端口?

发布于 2024-12-16 19:56:57 字数 257 浏览 3 评论 0原文

串行端口必须通过 USB 电缆从手机连接到计算机。

在 Java 中,我通过使用以下代码使其工作:

CommConnection comm = (CommConnection)Connector.open("comm:USB1");

// Now use comm to read and write data

How can I do this in Python for mobiles,尤其是 PyS60?

The serial port must be over USB cable, from the phone to a computer.

In Java, I got it working by using the following code:

CommConnection comm = (CommConnection)Connector.open("comm:USB1");

// Now use comm to read and write data

How can I do this in Python for mobiles, specifically PyS60?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

じ违心 2024-12-23 19:56:57

我从这里得到这个:

    import pys60usb
    usb = pys60usb.USBConnection()

    # Connect to port 1. Works with most S60 3rd devices.
    usb.connect( port = 1, mode = pys60usb.ECommExclusive )

I got this from here:

    import pys60usb
    usb = pys60usb.USBConnection()

    # Connect to port 1. Works with most S60 3rd devices.
    usb.connect( port = 1, mode = pys60usb.ECommExclusive )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文