GsmComm USSD命令
我一直在使用 scampers 库通过 GSM 调制解调器发送和接收短信。它几乎按照我想要的方式工作。但我遇到的问题是我无法发出像 *101# 或类似的命令,经过一些研究后我发现这些命令称为 USSD 命令。所以我的问题是,有没有人能够通过 Scampers 库发出 USSD 命令。
I have been using scampers library to send and receive SMS through a GSM modem. It is working pretty much the way I wanted. But the problem I stuck with is I can not issue command like *101# or similar, after doing some research I found these command are called USSD command. So my question is, has anyone been able to issue USSD command through Scampers library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
USSD 是与 SMS 不同的协议,因此您不能使用以 SMS 为中心的库来发送 USMD 消息。这就像尝试从 ftp 客户端库发送 http 请求一样。
USSD is a different protocol than SMS so you can't use an SMS centric library to send USMD messages. It would be like trying to send http requests from an ftp client library.
这对我使用 GsmComm 来说非常有效:
This worked quite nicely for me using GsmComm:
_comm 的类型是 GsmCommMain
the type of _comm is a GsmCommMain