蓝牙和delphi,怎么样?
我想使用蓝牙将文件发送到设备(手机),没什么花哨的。但我不知道应该从哪里开始寻找司机?也许你们中的一个人以前使用过蓝牙,可以给我一个起点。
I want to send a file to a device (phone) using bluetooth nothing fancy. But i don't know where to start should i find a driver? Maybe one of you guys worked with bluetooth before and can give me a starting point.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 Indy 中添加了一些蓝牙支持(因为你只能(?)通过套接字读取/写入蓝牙:使用 Windows 套接字进行蓝牙编程)一个月前。
请参阅我在 indy 论坛上的帖子以获取代码:
Indy 蓝牙支持
我们在这里使用它来读取蓝牙条码扫描仪(主模式和从模式),具有自动连接等(也许我需要更新发布的代码以获得主支持,如果您需要,请告诉我)
I hacked some bluetooth support into Indy (because you can only(?) read/write bluetooth via sockets: Bluetooth Programming with Windows Sockets) a month ago.
See my post on the indy forum for the code:
Indy Bluetooth support
We use it here for reading a bluetooth barcode scanner (both master and slave mode), with auto connect etc (maybe I need to update the posted code for master support, please let me know if you need it)
我以前没有使用过它,但我会从 MSDN
文章 开始解释如何使用 Windows 套接字连接到蓝牙设备。
这些方法可能有包装器。研究后我会添加更多信息
I haven't worked with it before but I'd start on MSDN
The article explains how to use windows sockets to connect to Bluetooth devices.
There's probably wrappers for these methods. I'll add some more information after I've looked into it