通过蓝牙拨打电话号码
我想在Win/Mac/*nix下编写一个程序,它需要一个电话号码并通过蓝牙在我的手机上拨打它。 我对BT了解不多。 那可能吗? 手机是我的,我想让它拨打。 我该怎么办呢?
I want to write a program under Win/Mac/*nix, that takes a phone number and dials it on my mobile through Bluetooth. I don't know much about BT. Is that possible? The mobile is mine and I WANT it to dial. How would I go about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要获取手机制造商的 AT 命令集手册。 然后,您需要通过蓝牙打开串行连接(OS X:与手机连接,应出现 /dev/tty.nameofyourphone)。 您可以像使用常规调制解调器一样与电话通话,并按照文档中的指定发送命令。
You probably want to fetch your mobile phone manufacturer's AT command set manual. You then need to open a serial connection through Bluetooth (OS X: Connect with phone, /dev/tty.nameofyourphone should appear). You can talk with the phone as with a regular modem and send commands as specified in the documentation.