--- id: serial-module title: Serial Plugin Settings sidebar_label: Serial Plugin --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; :::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. ::: :::note This plugin requires attaching a peripheral accessory to your device. It will not work without one. ::: ## Overview 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 plugin does not (yet) allow arbitrary protobuf commands to be sent over the serial connection. :::tip Once plugin settings are changed, a **reset** is required for them to take effect. ::: :::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.) ::: ## Settings | Setting | Acceptable Values | Default | | :-------------------: | :-----------------: | :-----: | | serial_plugin_enabled | `true`, `false` | `false` | | serial_plugin_echo | `true`, `false` | `false` | | serial_plugin_mode | `integer` | `0` | | serial_plugin_rxd | `integer` (GPIO) | `0` | | serial_plugin_timeout | `integer` (seconds) | `0` | | serial_plugin_txd | `integer` (GPIO) | `0` | ### serial_plugin_enabled Enables the plugin. ```shell title="Enable plugin" meshtastic --set serial_plugin_enabled true ``` ```shell title="Disable plugin" meshtastic --set serial_plugin_enabled false ``` :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: ### serial_plugin_echo If set, any packets you send will be echoed back to your device. ```shell title="Enable serial_plugin_echo" meshtastic --set serial_plugin_echo true ``` ```shell title="Disable serial_plugin_echo" meshtastic --set serial_plugin_echo false ``` :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: ### serial_plugin_mode :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: ### serial_plugin_rxd Set the GPIO pin to the RXD pin you have set up. :::caution To prevent damaging your device, double check your device's schematics before attaching to the GPIO pins and setting this value. ::: :::note Replace `GPIO` in the below command with the GPIO number your circuit is attached to. ::: ```shell title="Set RXD to GPIO pin number" meshtastic --set serial_plugin_rxd GPIO ``` :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: ### serial_plugin_timeout The amount of time to wait before we consider your packet as "done". ```shell title="Set serial_plugin_timeout to 15 seconds" meshtastic --set serial_plugin_timeout 15 ``` :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: ### serial_plugin_txd Set the GPIO pin to the TXD pin you have set up. :::caution To prevent damaging your device, double check your device's schematics before attaching to the GPIO pins and setting this value. ::: :::note Replace `GPIO` in the below command with the GPIO number your circuit is attached to. ::: ```shell title="Set TXD to GPIO pin number" meshtastic --set serial_plugin_txd GPIO ``` :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. ::: :::info Configuring this setting is not yet available for the selected platform. If this is incorrect please update the documentation for this page. :::