如何在移动设备上使用 Python 访问串行端口?
串行端口必须通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从这里得到这个:
I got this from here: