meshtastic/docs/settings/moduleconfig/serial.mdx

159 lines
4.8 KiB
Plaintext
Raw Normal View History

---
id: serial
2022-06-25 00:39:41 -07:00
title: Serial Module Configuration
sidebar_label: Serial
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
The serial module config options are: Enabled, Echo, Mode, Receive GPIO, Transmit GPIO and Sender. 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.
## Serial Module Config Values
### Enabled
Enables the serial module.
### Echo
If set, any packets you send will be echoed back to your device.
### Mode
### Receive GPIO Pin
Set the GPIO pin to the RXD pin you have set up.
### Transmit GPIO Pin
Set the GPIO pin to the RXD 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".
:::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: 'Flasher', value: 'flasher'},
{label: 'Web', value: 'web'},
]}>
<TabItem value="android">
:::info
Serial module config is not available for Android.
:::
</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">
2022-08-03 08:16:18 -07:00
All serial module config options are available in the python CLI. Example commands are below:
| Setting | Acceptable Values | Default |
| :-------------------: | :-----------------: | :-----: |
2022-08-03 08:16:18 -07:00
| serial.enabled | `true`, `false` | `false` |
| serial.echo | `true`, `false` | `false` |
| serial.mode | `modeDefault` `modeSimple` `modeProto` | `modeDefault` |
| serial.rxd | GPIO Pin Number 1-39 | Default of `0` is Unset |
| serial.txd | GPIO Pin Number 1-39 | Defaunlt of `0` is Unset |
| serial.baud | `baudDefault` `baud110` `baud300` `baud600` `baud1200` `baud2400` `baud4800` `baud9600` `baud19200` `baud38400` `baud57600` `baud115200` `baud230400` `baud460800` `baud576000` `baud921600` | `baudDefault` |
| serial.timeout | `integer` (seconds) | `0` |
```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-08-03 08:16:18 -07:00
meshtastic --set serial.mode modeDefault
meshtastic --set serial.mode modeProto
```
```shell title="Set RXD to GPIO pin number 7"
meshtastic --set serial_module_rxd 7
```
```shell title="Set TXD to GPIO pin number 28"
meshtastic --set serial_module_txd 28
```
```shell title="Set Baud Rate"
2022-08-03 08:16:18 -07:00
meshtastic --set serial.baud baudDefault
meshtastic --set serial.baud baud576000
```
```shell title="Set Timeout to 15 seconds"
2022-08-03 08:16:18 -07:00
meshtastic --set serial.timeout 15
```
</TabItem>
<TabItem value="flasher">
:::info
2022-08-03 08:16:18 -07:00
No serial module config options are available in the Flasher.
:::
</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.
### Basic Usage:
1. Enable the module by setting `serial_module_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-07-03 11:20:04 -07:00
- RXD 35
- TXD 15
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-07-03 11:20:04 -07:00
4. (Optional) In serial_module.h set the port to `PortNum_TEXT_MESSAGE_APP`if you want to send messages to/from the general text message channel.
5. Connect to your device over the serial interface at `38400 8N1`.
6. Send a packet up to 240 bytes in length. This will get relayed over the mesh network.
7. (Optional) Set `serial_module_echo` to `1` and any message you send out will be echoed back to your device.