--- id: telemetry-module title: Environmental Measurement Plugin Settings sidebar_label: Environmental Measurement 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 The environment metrics feature of this plugin requires attaching a peripheral accessory to your device. It will not work without one. ::: ## Overview In addition to key device metrics such as battery level, the Environment Monitoring Plugin will also allow nodes to send environmental metrics from externally connected sensors. Currently supported sensors are BME280, BME680, DHT11, DHT12, DHT21, DHT22, Dallas 1-wire DS18B20 and MCP9808. :::tip Once plugin settings are changed, a **reset** is required for them to take effect. ::: ## Settings | Setting | Acceptable Values | Default | | :-----------------------------------------------------: | :-----------------: | :-----: | | environmental_measurement_plugin_device_update_interval | `integer` (seconds) | `0` | | environmental_measurement_plugin_display_fahrenheit | `true`, `false` | `false` | | environmental_measurement_plugin_measurement_enabled | `true`, `false` | `false` | | environmental_measurement_plugin_read_error_count_threshold | `integer` | `0` | | environmental_measurement_plugin_recovery_interval | `integer` (seconds) | `0` | | environmental_measurement_plugin_screen_enabled | `true`, `false` | `0` | | environmental_measurement_plugin_sensor_pin | `integer` | `0` | | environmental_measurement_plugin_sensor_type | `0-6` | `0` | | environmental_measurement_plugin_update_interval | `integer` (seconds) | `0` | ### environmental_measurement_plugin_device_update_interval Interval in seconds of how often we should try to send our measurements to the mesh. ```shell title="Set plugin update interval to default" meshtastic --set environmental_measurement_plugin_device_update_interval 0 ``` ```shell title="Set plugin update interval to 120 seconds" meshtastic --set environmental_measurement_plugin_device_update_interval 120 ``` :::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. ::: ### environmental_measurement_plugin_display_fahrenheit The sensor is always read in Celsius, but the user can opt to view the temperature display in Fahrenheit using this setting. #### Display Farenheit/Celsius ```shell title="Display Farenheit" meshtastic --set environmental_measurement_plugin_display_fahrenheit true ```` ```shell title="Display Celsius" meshtastic --set environmental_measurement_plugin_display_fahrenheit 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. ::: ### environmental_measurement_plugin_measurement_enabled Enables the plugin to utilize environmental metrics. #### Enable/Disable the plugin ```shell title="Enable Plugin" meshtastic --set environmental_measurement_plugin_measurement_enabled true ```` ```shell title="Disable Plugin" meshtastic --set environmental_measurement_plugin_measurement_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. ::: ### environmental_measurement_plugin_read_error_count_threshold Sometimes sensor reads can fail. If this happens, we will retry a configurable number of attempts. Each attempt will be delayed by the minimum required refresh rate for that sensor #### Configure environmental_measurement_plugin_read_error_count_threshold ```shell title="Configure environmental_measurement_plugin_read_error_count_threshold to 3 tries" meshtastic --set environmental_measurement_plugin_read_error_count_threshold 3 ```` :::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. ::: ### environmental_measurement_plugin_recovery_interval Sometimes we can end up with more than read_error_count_threshold failures. In this case, we will stop trying to read from the sensor for a while. Wait this long until trying to read from the sensor again. #### Configure environmental_measurement_plugin_recovery_interval ```shell title="Configure environmental_measurement_plugin_recovery_interval to 120 seconds" meshtastic --set environmental_measurement_plugin_recovery_interval 120 ```` :::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. ::: ### environmental_measurement_plugin_screen_enabled Enable/Disable the Environmental Measurement Plugin on-device display. #### Enable/Disable the plugin on device screen ```shell title="Enable on device screen" meshtastic --set environmental_measurement_plugin_screen_enabled true ```` ```shell title="Disable on device screen" meshtastic --set environmental_measurement_plugin_screen_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. ::: ### environmental_measurement_plugin_sensor_pin :::note The preferred setup is using I2C, so the `environmental_measurement_plugin_sensor_pin` may not be needed. ::: Specify the preferred GPIO Pin for sensor readings. May not be needed if using I2C. :::caution To prevent damaging your device, double check your device's schematics before attaching to the GPIO pins and setting this value. ::: #### Set plugin sensor pin ```shell title="Set plugin sensor pin" meshtastic --set environmental_measurement_plugin_sensor_pin PINNUMBER ```` :::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. ::: ### environmental_measurement_plugin_sensor_type Specify the sensor type. :::important The sensor values changed between 1.2 and 1.3. The docs represent the 1.3 values. When configuring devices on 1.2, please subtract 1 from the numbers below for the appropriate sensor. ::: | Value | Description | Sensor Features | | :---: | :---------------------: | :--------------------------------------: | | `1` | DHT11 | Temperature, Humidity | | `2` | DS18B20 (Dallas 1-wire) | Temperature | | `3` | DHT12 | Temperature, Humidity | | `4` | DHT21 | Temperature, Humidity | | `5` | DHT22 | Temperature, Humidity | | `6` | BME280 | Temperature, Humidity, Pressure | | `7` | BME680 | Temperature, Humidity, Pressure, VOC Gas | | `8` | MCP9808 | Precision Temperature | #### Set sensor type :::important The sensor values changed between 1.2 and 1.3. The docs represent the 1.3 values. When configuring devices on 1.2, please subtract 1 from the numbers on the table above for the appropriate sensor. ::: :::note The CLI is able to take the `value` or the `name` of the sensor from the table above. ::: ```shell title="Set sensor type to DS18B20" meshtastic --set environmental_measurement_plugin_sensor_type 2 ```` ```shell title="Set sensor type to DS18B20" meshtastic --set environmental_measurement_plugin_sensor_type DS18B20 ``` :::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. ::: #### Set plugin update interval ```shell title="Set plugin update interval to 120 seconds" meshtastic --set environmental_measurement_plugin_update_interval 120 ```` :::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. ::: ## Details ### Hardware The sensors can be wired differently, here's [one example](https://randomnerdtutorials.com/esp32-ds18b20-temperature-arduino-ide) for sensor DS18B20. ### Known Problems - No default configuration values are currently set, so this must be done when enabling the plugin.