Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 c# 开发一个 Web 应用程序,以使用 AT 命令从 GSM 调制解调器发送和接收 SMS。
发送和接收工作正常。接收短信正在处理按钮点击事件,但我希望每当有新短信出现时程序应该自动显示它。
您不需要任何线程,您只需要定义 datarecieved 事件,该事件将在新消息到达时自动触发。您可以使用它的处理程序来读取消息。
你需要设置
serialport1.DtrEnablle = true; serialport1.RtsEnable = true;
考虑到您已启用通知使用
AT+CNMI=1 AT&W