使用 C# 在诺基亚手机中拨打号码的应用程序
可能的重复:
通过C#程序拨打手机
我有诺基亚手机通过USB连接到电脑。现在我想创建一个可以拨打这款诺基亚手机中的号码的应用程序。为此,我们必须使用 AT 命令。但我不知道如何使用它。但我可以使用 C# 创建代码来查找计算机的串行端口。 那么如何使用C#创建程序呢?
此链接显示有关诺基亚 AT 命令= http://wiki.forum.nokia.com /index.php/AT_Commands
string[] ports = SerialPort.GetPortNames();
foreach (string port in ports)
{
comboBox1.Items.Add(port);
}
Possible Duplicate:
Dial mobile phone via C# program
I have nokia phone connected to the computer through USB. Now I want to create an application which can dial the number in this nokia phone. For that we have to use AT COMMANDS. But i dont know how to use that. But I can create code using C# to find Serial ports of the computer.
So how can I ceate the program using C#?
This link shows about the nokia AT Commands= http://wiki.forum.nokia.com/index.php/AT_Commands
string[] ports = SerialPort.GetPortNames();
foreach (string port in ports)
{
comboBox1.Items.Add(port);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照以下步骤向诺基亚手机发送 AT 命令:
使用
using System.IO.Ports
类配置并打开串口Serialport.open()
和Serialport.close()
API 可用于执行相同操作。将AT命令写入步骤1中打开的COM端口。
Serialport.Writeline()
API 也可用于相同目的。我正在下面编写更具体的示例代码:
这不是经过测试的代码,它只是一个示例代码。您需要更多地阅读如何进行串行端口通信。这是串行的链接端口通讯编程。
我没有任何这样的设施来测试这个。所以,一旦你测试了就告诉我。
Follow below steps to send AT commands to nokia mobile:
Configure and open the serial port using
using System.IO.Ports
classSerialport.open()
andSerialport.close()
API are available for doing the same.Write the AT command to opened COM port in step 1.
Serialport.Writeline()
API can be used for same.I'm writing sample code below to be more specific:
This is not tested code, its just a sample code. You need to do more reading on how to do serial port communication. Here is link for serial port communication programming.
I dont have any such facility to test this. So, let me know once you test it.