meshtastic/docs/configuration/module-config/serial.mdx

290 lines
12 KiB
Plaintext
Raw Normal View History

---
id: serial
2022-06-25 00:39:41 -07:00
title: Serial Module Configuration
2022-11-02 11:46:54 -07:00
slug: /settings/moduleconfig/serial
sidebar_label: Serial
---
2023-01-19 05:01:57 -08:00
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
2023-07-10 13:27:03 -07:00
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 a simple interface to send messages over the mesh network by sending strings over a serial port. Anything you send the node will be turned into a message sent out over the mesh, and anything received from the mesh will be sent to the serial port. Note that this module does not (yet) allow arbitrary protobuf commands to be sent over the serial connection.
2022-12-04 17:34:44 -08:00
![image](https://user-images.githubusercontent.com/9000580/205529843-962c3187-8411-452c-b729-42c58b1571f5.png)
2023-06-18 11:34:30 -07:00
<object data="https://www.youtube.com/embed/HdOiGKBtapw?autohide=1&autoplay=0" width="100%" height="400"></object>
2023-06-17 22:48:38 -07:00
## Serial Module Config Values
### Enabled
Enables the serial module.
### Echo
If set, any packets you send will be echoed back to your device.
### Mode
2022-11-09 03:17:06 -08:00
Defaults to 'Simple'.
Available Values:
2023-01-19 05:01:57 -08:00
- `DEFAULT`
- `SIMPLE` operate as an 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. [API Reference](/docs/development/device/client-api)
- `TEXTMSG` Will send the string received over the serial port as a Text Message for Display on the other devices.
- `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](/docs/software/integrations/caltopo.mdx).
2022-11-09 03:17:06 -08:00
### Receive GPIO Pin
Set the GPIO pin to the RXD pin you have set up.
### Transmit GPIO Pin
2022-11-09 03:17:06 -08:00
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".
2023-05-30 14:49:52 -07:00
### 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
<Tabs
groupId="settings"
defaultValue="apple"
values={[
{label: 'Android', value: 'android'},
{label: 'Apple', value: 'apple'},
2022-06-29 12:08:30 -07:00
{label: 'CLI', value: 'cli'},
{label: 'Web', value: 'web'},
]}>
<TabItem value="android">
:::info
2022-12-04 13:32:56 -08:00
Serial Module Config options are available for Android.
1. Open the Meshtastic App
2023-06-17 22:06:11 -07:00
2. Navigate to: **Vertical Ellipsis (3 dots top right) > Radio Configuration > Serial**
2022-12-04 13:32:56 -08:00
:::
</TabItem>
<TabItem value="apple">
:::info
2022-06-29 12:08:30 -07:00
All serial module config options are available on iOS, iPadOS and macOS at Settings > Modules > Serial.
:::
</TabItem>
<TabItem value="cli">
:::info
2022-08-03 08:16:18 -07:00
All serial module config options are available in the python CLI. Example commands are below:
:::
2023-01-19 05:01:57 -08:00
| Setting | Acceptable Values | Default |
| :------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------: |
| serial.enabled | `true`, `false` | `false` |
| serial.echo | `true`, `false` | `false` |
2023-05-30 14:53:40 -07:00
| serial.mode | `DEFAULT` `SIMPLE` `PROTO` `TEXTMSG`, `NMEA`, `CALTOPO` | `DEFAULT` |
2023-01-19 05:01:57 -08:00
| serial.rxd | GPIO Pin Number 1-39 | Default of `0` is Unset |
| serial.txd | GPIO Pin Number 1-33 | Default of `0` is Unset |
| serial.baud | `BAUD_DEFAULT` `BAUD_110` `BAUD_300` `BAUD_600` `BAUD_1200` `BAUD_2400` `BAUD_4800` `BAUD_9600` `BAUD_19200` `BAUD_38400` `BAUD_57600` `BAUD_115200` `BAUD_230400` `BAUD_460800` `BAUD_576000` `BAUD_921600` | `BAUD_DEFAULT` |
| serial.timeout | `integer` (milli seconds) | Default of `0` corresponds to 250 ms |
2023-05-30 14:53:40 -07:00
| serial.override_console_serial_port | `true`, `false` | `false` |
:::tip
Because the device will reboot after each command is sent via CLI, it is recommended when setting multiple values in a config section that commands be chained together as one.
```shell title="Example:"
meshtastic --set serial.enabled true --set serial.echo true
```
:::
```shell title="Enable / Disable Module"
2022-08-03 08:16:18 -07:00
meshtastic --set serial.enabled true
meshtastic --set serial.enabled false
```
```shell title="Enable / Disable Echo"
2022-08-03 08:16:18 -07:00
meshtastic --set serial.echo true
meshtastic --set serial.echo false
```
```shell title="Set Mode"
2022-09-22 15:41:33 -07:00
meshtastic --set serial.mode DEFAULT
meshtastic --set serial.mode PROTO
```
```shell title="Set RXD to GPIO pin number 7"
2022-11-09 03:17:06 -08:00
meshtastic --set serial.rxd 7
```
```shell title="Set TXD to GPIO pin number 28"
2022-10-17 07:22:25 -07:00
meshtastic --set serial.txd 28
```
```shell title="Set Baud Rate"
2022-09-22 15:41:33 -07:00
meshtastic --set serial.baud BAUD_DEFAULT
meshtastic --set serial.baud BAUD_576000
```
```shell title="Set Timeout to 15 milli seconds"
2022-08-03 08:16:18 -07:00
meshtastic --set serial.timeout 15
```
</TabItem>
<TabItem value="web">
:::info
2022-08-03 08:16:18 -07:00
All serial module config options are available in the Web UI.
:::
</TabItem>
2022-07-03 11:20:04 -07:00
</Tabs>
2022-07-14 22:29:59 -07:00
:::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.
:::
2022-07-03 11:20:04 -07:00
## Examples
Default is to use RX GPIO 16 and TX GPIO 17.
2023-01-19 05:01:57 -08:00
### Basic Usage
2022-07-03 11:20:04 -07:00
2022-12-01 08:03:17 -08:00
1. Enable the module by setting `serial.enabled` to `1`.
2022-08-03 08:16:18 -07:00
2. Set the pins (`serial.rxd` / `serial.txd`) for your preferred RX and TX GPIO pins. On tbeam boards it is recommended to use:
2022-12-04 17:34:44 -08:00
- RXD 13
- TXD 14
2022-08-03 08:16:18 -07:00
3. Set `serial.timeout` to the amount of time to wait before we consider your packet as "done".
2022-12-04 17:38:22 -08:00
4. (Optional) set serial.mode to TEXTMSG if you want to send messages to/from the general text message channel
2022-07-03 11:20:04 -07:00
5. Connect to your device over the serial interface at `38400 8N1`.
2022-12-04 17:34:44 -08:00
2023-01-19 05:01:57 -08:00
With [tio](https://github.com/tio/tio) &ndash; `tio -e -b 38400 -f none /dev/myserialport`
6. Send a packet up to 237 bytes in length. This will get relayed over the mesh network.
7. (Optional) Set `serial.echo` to `1` and any message you send out will be echoed back to your device.
2023-01-05 10:57:45 -08:00
### Interfacing PIR Sensor With External Microcontroller
2023-01-19 05:01:57 -08:00
2023-07-15 09:06:52 -07:00
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.
2023-01-19 05:01:57 -08:00
#### Meshtastic Software Configuration
- Serial module enabled, mode: TXTMSG
- GPIO Pins (For T-Beam) RX 13, TX 14
- 38400 Baud
#### Rasberry Pi Pico BOM
- A Raspberry Pi Pico running [CircuitPython](https://learn.adafruit.com/getting-started-with-raspberry-pi-pico-circuitpython)
- T-Beam V1.1 running Meshtastic
- PIR Sensor ([Adafruit Breadboard Model](https://www.adafruit.com/product/4871))
#### Raspberry Pi Pico Wiring
![image](https://user-images.githubusercontent.com/2799310/210852481-21ea76e5-ecaa-40c1-8f34-635ef2a1c95b.png)
- 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:
2023-01-19 05:01:57 -08:00
- Connect 5V pin on T-Beam to Vbus pin 40 on the Pico
#### Circuit Python Code
2023-01-19 05:01:57 -08:00
```python
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](https://www.adafruit.com/product/4871))
#### Arduino Mini Pro Wiring
![image](/img/modules/Serial/arduino-mini-pro-pir-wiring.png)
- 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
```c++
int LED = 13; // the pin that the LED is atteched to
int PIR = 2; // the pin that the sensor is atteched to
void setup() {
pinMode(LED, OUTPUT); // initialize LED as an output
pinMode(PIR, INPUT); // initialize sensor as an input
Serial.begin(9600); // initialize serial
}
void loop(){
if (digitalRead(PIR) == HIGH) { // check if the sensor is HIGH
digitalWrite(LED, HIGH); // turn LED ON
Serial.write(":Motion!:");
delay(10000); // delay 100 milliseconds
}
else {
digitalWrite(LED, LOW); // turn LED OFF
Serial.write("Motion stopped!");
delay(10000); // delay 100 milliseconds
}
}
```