Skip to main content

Serial Module Configuration

The serial module config options are: Enabled, Echo, Mode, Receive GPIO, Transmit GPIO, Baud Rate, Timeout, and Override Console Serial Port. Serial Module config uses an admin message sending a ConfigModule.Serial protobuf.

This is an interface to talk to and control your Meshtastic device over a serial port. The module can be set to different modes, each fulfilling a different use-case.

image

Serial Module Config Values

Enabled

Enables the serial module.

Echo

If set, any packets you send will be echoed back to your device.

Mode

Defaults to 'Simple'.

Available Values:

  • DEFAULT equals SIMPLE.
  • SIMPLE operates as a dumb UART tunnel. What goes in will come out, requires a channel named 'serial'.
  • PROTO exposes the Protobuf Client API on this serial port. You can use this to connect from another device, see the Arduino client library and the API Reference.
  • TEXTMSG will allow you to send a string over the serial port to the device, which will be broadcasted as a text message to the default channel. Any text message received from the mesh will be sent to the serial port as follows: <Short Name>: <text>.
  • NMEA will output a NMEA 0183 Data stream containing the internal GPS or fixed position and other node locations as Waypoints (WPL).
  • CALTOPO will output NMEA 0183 Waypoints (WPL) every 10 seconds for all valid node locations, to be consumed by CalTopo / SARTopo.

Receive GPIO Pin

Set the GPIO pin to the RXD pin you have set up.

Transmit GPIO Pin

Set the GPIO pin to the TXD pin you have set up.

tip

Connect the TX pin to the other device's RX pin, and vice versa. Connect their grounds to each other (not necessary if they're both plugged into the same USB power source.)

Baud Rate

The serial baud rate.

Timeout

The amount of time to wait before we consider your packet as "done".

Override Console Serial Port

If set to true, this will allow Serial Module to control (set baud rate) and use the primary USB serial bus for output. This is only useful for NMEA and CalTopo modes and may behave strangely or not work at all in other modes. Setting TX/RX pins in the Serial Module config will cause this setting to be ignored.

tip

Once module settings are changed, a reset is required for them to take effect.

Serial Module Config Client Availability

Apple

info

All serial module config options are available on iOS, iPadOS and macOS at Settings > Module Configuration > Serial.

warning

GPIO access is fundamentally dangerous because invalid options can physically damage or destroy your hardware. Ensure that you fully understand the schematic for your particular device before trying this as we do not offer a warranty. Use at your own risk.

This module requires attaching a peripheral accessory to your device. It will not work without one.

Examples

Default is to use RX GPIO 16 and TX GPIO 17.

Basic Usage

  1. Enable the module by setting serial.enabled to 1.

  2. Set the pins (serial.rxd / serial.txd) for your preferred RX and TX GPIO pins. On tbeam boards it is recommended to use:

    • RXD 13
    • TXD 14
  3. Set serial.timeout to the amount of time to wait before we consider your packet as "done".

  4. (Optional) set serial.mode to TEXTMSG if you want to send messages to/from the general text message channel. For more specific control, use the PROTO mode, e.g. in combination with the Arduino client library.

  5. Connect to your device over the serial interface at 38400 8N1.

    With tiotio -e -b 38400 -f none /dev/myserialport

  6. Send a packet up to 237 bytes in length. This will get broadcasted over the default channel.

  7. (Optional) Set serial.echo to 1 and any message you send out will be echoed back to your device.

Interfacing PIR Sensor With External Microcontroller

The following are examples of using either a Raspberry Pi Pico or Arduino Mini Pro connected to a PIR sensor to detect motion. When motion is detected, a message is sent via serial to the T-Beam. The T-Beam transmits the message as text over the default channel by utilizing the serial module in TXTMSG mode.

Meshtastic Software Configuration

  • Serial module enabled, mode: TEXTMSG
  • GPIO Pins (For T-Beam) RX 13, TX 14
  • 38400 Baud

Rasberry Pi Pico BOM

Raspberry Pi Pico Wiring

image

  • TX pin 14 on the T-Beam to RX pin 2 on the Pico
  • RX pin 13 on the T-Beam to TX pin 1 on the Pico
  • PIR sensor Vcc and GND pins to Vcc/GND on breadboard respectively
  • PIR sensor trigger line to Pico GPIO28 (Pico pin 34)
  • GND pin on T-Beam to GND pin 38 on the Pico
  • GND pin 38 on the Pico to breadboard ground rail
  • 3V3 pin 36 on the Pico to the breadboard positive voltage rail
  • Optional, to power the Pico off of the T-Beam instead of USB:
    • Connect 5V pin on T-Beam to Vbus pin 40 on the Pico

Circuit Python Code

import time
import board
import busio
import digitalio

# Setup PIR sensor on GP28
pir = digitalio.DigitalInOut(board.GP28)
pir.direction = digitalio.Direction.INPUT

# Setup serial UART connection TX/RX on (GP0/GP1)
uart = busio.UART(board.GP0, board.GP1, baudrate=38400, timeout=0)

while True:
if(pir.value == True):
uart.write(bytes("Motion Detected", "ascii"))
time.sleep(30)
time.sleep(0.5)

Arduino Mini Pro BOM

  • An Arduino Mini Pro with example sketch from below uploaded to it.
  • T-Beam V1.1 running Meshtastic
  • PIR Sensor (Adafruit Breadboard Model)

Arduino Mini Pro Wiring

image

  • T-BEAM RX PIN 13 to TX PIN on the ARDUINO MINI
  • T-BEAM TX PIN 14 to RX PINon the ARDUINO MINI
  • T-BEAM PIN 3.3V to 3.3V PIN on the ARDUINO MINI
  • T-BEAM PIN GND to GND PIN on the ARDUINO MINI
  • ARDUINO MINI PIN 2 to OUT PIN on the PIR SENSOR
  • ARDUINO MINI PIN 3.3V to 3.3V on the PIR SENSOR
  • ARDUINO MINI PIN GND to GND PIN on the PIR SENSOR

Arduino Mini Pro Code

int LED = 13; // the pin to which the LED is connected
int PIR = 2; // the pin to which the sensor is connected
int previousState = LOW; // previous state of the sensor


void setup() {
pinMode(LED, OUTPUT); // initialize the LED as an output
pinMode(PIR, INPUT); // initialize the sensor as an input
Serial.begin(9600); // initialize serial communication
}

void loop(){
int currentState = digitalRead(PIR); // read the current state of the sensor
if (currentState != previousState) { // check if the state has changed
if (currentState == HIGH) { // check if there is motion
digitalWrite(LED, HIGH); // turn the LED on
Serial.println("Motion Detected");
}
else {
digitalWrite(LED, LOW); // turn the LED off
Serial.println("No Motion");
}
previousState = currentState; // update the previous state
}
delay(100); // small delay to avoid false sensor readings

}