在 PHP 中通过 USB 接口的 GSM 调制解调器发送短信

发布于 2024-12-20 22:29:53 字数 357 浏览 0 评论 0 原文

我在Google上搜索过,发现我必须使用AT命令发送短信,这里是链接,

http://gonzalo123.wordpress.com/2011/03/21/howto-sendread-smss-using-a-gsm-modem-at-commands-and-php/

但是在本教程他使用串行接口的 GSM 调制解调器,是否可以通过 USB 接口的 GMS 调制解调器发送短信。请指导我。

I have searched on Google and found that I have to use AT commands to send SMS here is the link,

http://gonzalo123.wordpress.com/2011/03/21/howto-sendread-smss-using-a-gsm-modem-at-commands-and-php/

But in this tutorial he is using serial interfaced GSM modem, is it possible to send SMS via USB interfaced GMS modem. Please guide me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一身软味 2024-12-27 22:29:53

USB 接口的 GSM 调制解调器将提供 USB 串行接口,通常/希望符合 USB CDC 规范。换句话说,您可以将其视为虚拟 COM 端口,并且您链接到的教程仍然与您相关。

A USB interfaced GSM modem will be presenting a USB serial interface, usually / hopefully conforming to the USB CDC specification. In other words you can treat it as a virtual COM port and the tutorial you linked to will still be relevant for you.

≈。彩虹 2024-12-27 22:29:53

在 Unix 系统中,您可以从 USB 读/写,串行端口从 /dev/ttyS0 或 /dev/ttyUSB0 读取数据。您还可以使用 USB/串行转换器。它们是廉价的设备。但我对这些 USB 转换器的体验非常糟糕。因此,我更喜欢使用串行/以太网转换器。它们还允许我将串行设备放置在任何地方,而不必靠近服务器。好吧,也许使用 GSM 设备不是问题。我们可以将其放置在任何我们想要的地方,但如果我们使用相同的技术从另一个设备(如传感器、秤等)读取/写入,这可能是一个问题。

In Unix systems you can read/write from USB and Serial port reading data from /dev/ttyS0 or /dev/ttyUSB0. You also can use a usb/serial converter. They are cheap devices. But my experience with those usb converters is very bad. Because of that I prefer to use serial/ethernet convertes. They also allow me to place the serial device in any place and not necesary close to the server. OK maybe with a GSM device is not a problem. We can place it wherever we want, but if we are using the same technique to read/write from another device (like sensors, scales, ...), this may be a problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文