在使用 python 编码的 Android 应用程序中使用蓝牙
我知道有多种工具可以使用 python 创建 Android 应用程序,例如 python-for-android、android-scripting-evrironment、SL4A 等。
我需要知道的是,如果我需要我的应用程序使用蓝牙模块,那么这些工具中哪一个会有帮助设备的。
I know there are various tools for creating android apps using python eg python-for-android, android-scripting-evrironment, SL4A etc.
What I need to know is which of these would be helpful if I need my application to use the Bluetooth module of the device.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
即将推出的 SL4A 第 5 版已实现了一个 BluetoothFacade。
API 参考位于 http://code.google.com/p/android -scripting/wiki/unofficial_apiref
我不认为(目前)可以通过 Kivy 或任何 Kivy 衍生项目访问蓝牙服务。
There is a BluetoothFacade that has been implemented for the upcoming release 5 of SL4A.
The API reference is located at http://code.google.com/p/android-scripting/wiki/unofficial_apiref
I don't believe that access to Bluetooth services is (at present) available via Kivy or any Kivy-derived project.
看起来kivy现在开始提供蓝牙相关功能: https://github.com/ kivy/python-for-android/tree/蓝牙
It looks kivy start to provide Bluetooth related function now: https://github.com/kivy/python-for-android/tree/bluetooth
您还可以使用 PyBluez 库。您需要为 ARM 内核进行编译才能在 Android 上使用它,但这已经完成,并且可以从 PY4A 网站的 模块页面。您只需将其下载到您的设备,然后使用 PY4A 应用程序的安装模块功能进行安装。
You can also use the PyBluez library. You need it compiled for ARM cores to use it on Android, but this has already been done and is available from the PY4A website's Modules page. You just download it to your device, then install it using your PY4A app's Install Module feature.