使用蓝牙COM口短信连接指导
手机AT&T指导?
我使用蓝牙 COM 端口连接来连接我的中国/和诺基亚手机。它显示 COM at 5。
我如何使用此连接使用 C# 发送和接收短信?例如,是否有一些资源可供参考,或者一些示例代码是什么样子?
Mobile phone AT&T guidance?
I connect my China/ and Nokia phone using Bluetooth COM PORT CONNECTION. It says COM at 5.
How can I use this connection to send and receive SMSes using C#? For example, are there some resources to consult, or how would some example code look like?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用蓝牙调制解调器驱动程序吗?如果你是&它将电话显示为 COM5 上的串行设备,那么您应该能够像任何调制解调器一样访问它。
尝试 GSMComm 库,它还有一个演示应用程序可供您使用进行测试。
Are you using a bluetooth modem driver? If you are & its presenting the phone as a serial device on COM5 then you should be able to access it in the same was as any modem.
Try the GSMComm library, it also has a demo app you can use to test.
我快速进行了 Google 搜索,但找不到用于通过蓝牙公开 SMS 功能的内置 API。然而,通过搜索诺基亚网站上的文档,Symbian C++ 库似乎有一个 用于发送和接收短信的API,以及用于与蓝牙堆栈交互的库。您需要安装 Symbian C++ IDE 和工具链来构建应用程序。您可以在此处找到有关如何执行此操作的信息。
I did a quick Google search, and I can't find a builtin API for exposing SMS capability via Bluetooth. However, from searching the documentation on the Nokia site, it appears the Symbian C++ libraries have an API for sending and receiving SMS, as well as libraries for interfacing with the bluetooth stack. You'll need to install the Symbian C++ IDE and toolchain for building apps. You can find information here on how to do that.