Skip to main content
PRO Feature

This feature is available in the PRO subscription tier. Learn more about PRO

SMS Node

The SMS Node allows you to send SMS messages using a Waveshare SIM7600G-H 4G dongle connected to your server or PC via serial port.

SMS Node

Important

If you are running Agentic Signal from Docker (see Quick Start guide), only serial ports explicitly mapped from the host into the container will be discoverable and usable by the SMS Node.

TIP: For the SMS node to work, you must select the serial port that corresponds to the modem's AT command interface. On Windows, this is usually the port with AT in its name (e.g., Simcom HS-USB AT PORT 9001 (COM13)).

You only need to forward the COM port that corresponds to the modem's AT interface (the one with AT in its name). For example:

docker run --device='//./COM13' ...

Prerequisites

Configuration

The SMS Node is configured using the serial port and optional baud rate settings. The node also validates the upstream JSON payload before sending the message.

Configure the connected modem by selecting the correct serial port and, if needed, the baud rate.

SMS Node Configuration


Features

  • Sends SMS to any phone number using a 4G dongle
  • Supports serial port autodiscovery (dropdown selection)
  • Configurable baud rate
  • Input validation and error reporting

How it works

  1. The node opens the selected serial port and communicates with the dongle using AT commands.
  2. It sends the SMS using the standard GSM AT command sequence (AT+CMGF=1, AT+CMGS=...).
  3. Errors (e.g. port not found, SIM locked, network issues) are reported in the logs dialog.

Notes

  • The SIM PIN must be unlocked by your OS (Windows Cellular settings, Linux ModemManager, etc) before the node can send SMS.
  • If your setup requires entering the PIN manually, unlock the SIM before using this node.
  • Serial port autodiscovery is available, but you can always enter a port manually if needed.

Troubleshooting

  • If you see errors about the port or SIM, check that the dongle is connected and the SIM is unlocked.
  • On Linux, you may need to add your user to the dialout group or run as root to access serial ports.
  • On Windows, ensure the correct COM port is selected and not in use by another program.