rename Environmental Measurment

This commit is contained in:
Sacha Weatherstone 2022-03-10 07:43:13 +11:00
parent e8e7605af2
commit 40cceb2f4b
No known key found for this signature in database
GPG key ID: 7AB2D7E206124B31
6 changed files with 19 additions and 19 deletions

View file

@ -18,7 +18,7 @@ Meshtastic Channels: Can create a _somewhat_ secure method of communication on t
## Data
### Environmental Measurment Data
### Telemetry Data
### MQTT Bridges

View file

@ -6,7 +6,7 @@ sidebar_label: External Devices
## Overview
External hardware can be connected to your device using a GPIO (General Purpose Input/Output) interface. Using GPIO, you are able to connect external buttons, circuits, rotary encoders, environmental sensors and more. Many of our modules offer solutions to implement additional functionality.
External hardware can be connected to your device using a GPIO (General Purpose Input/Output) interface. Using GPIO, you are able to connect external buttons, circuits, rotary encoders, sensors and more. Many of our modules offer solutions to implement additional functionality.
Soldering is likely required when attaching items to your device, so practice your skills elsewhere before trying on your radio. If you're not careful or don't know what your doing, you can damage your hardware.
@ -18,9 +18,9 @@ Many of our modules require external hardware to be attached to the device.
Requires use of the [rotary encoder module](#rotary-encoder-module). The rotary encoder acts as an input to select one of up to 50 customizable messages. This way you can send canned messages without needing to pair your device to a phone.
### Environmental Measurement Module
### Telemetry Module
Broadcast environmental measurements to your mesh! Temperature, Humidity, Pressure, & VOC Gas are all options that are currently available with the supported sensors.
Broadcast telemetry to your mesh! Temperature, Humidity, Pressure, & VOC Gas are all options that are currently available with the supported sensors.
### External Notifications Module

View file

@ -1,7 +1,7 @@
---
id: environmental-measurement-module
title: Environmental Measurement Module Settings
sidebar_label: Environmental Measurement Module
id: telemetry-module
title: Telemetry Module Settings
sidebar_label: Telemetry Module
---
import Tabs from '@theme/Tabs';
@ -19,7 +19,7 @@ This module requires attaching a peripheral accessory to your device. It will no
## Overview
The Environment Measurement Module will allow nodes to send a specific message with information from connected environmental sensors. Currently supported sensors are BME280, BME680, DHT11, DHT12, DHT21, DHT22 and Dallas 1-wire DS18B20.
The Telemetry Module will allow nodes to send a specific message with information from connected sensors. Currently supported sensors are BME280, BME680, DHT11, DHT12, DHT21, DHT22 and Dallas 1-wire DS18B20.
:::tip
Once module settings are changed, a **reset** is required for them to take effect.
@ -228,7 +228,7 @@ Configuring this setting is not yet available for the selected platform. If this
### telemetry_module_screen_enabled
Enable/Disable the environmental measurement module on-device display.
Enable/Disable the Telemetry Module on-device display.
#### Enable/Disable the module on device screen

View file

@ -16,4 +16,4 @@ These modules are currently integrated into the firmware:
These modules are currently in development:
- Store and forward - Allows a node to store messages and resend them to nodes that have intermittent connection to the mesh
- Environment measurement - Allows a node to measure it's local environment and report across the mesh
- Telemetry - Allows a node to measure it's local environment and report across the mesh

View file

@ -1,12 +1,12 @@
---
id: environment-module
title: Environment measurement
sidebar_label: Environment measurement
id: telemetry-module
title: Telemetry
sidebar_label: Telemetry
---
## About
The Environment Measurement Module will allow nodes to send a specific message with information from connected environmental sensors. Currently supported sensors are `BME280`, `BME680`, `DHT11`, `DHT12`, `DHT21`, `DHT22`, Dallas 1-wire `DS18B20`, and `MCP9808`.
The Telemetry Module will allow nodes to send a specific message with information from connected sensors. Currently supported sensors are `BME280`, `BME680`, `DHT11`, `DHT12`, `DHT21`, `DHT22`, Dallas 1-wire `DS18B20`, and `MCP9808`.
The preferred setup is using I2C, so the `telemetry_module_sensor_pin` may not be needed.
@ -126,7 +126,7 @@ You can change the values above to suit your needs. The commands can be run one
:::
- reboot/reset the device (press the RST button or unplug/plug in the device)
- when the device boots it should say "Environment" and it may show the sensor data
- when the device boots it should say "Telemetry" and it may show the sensor data
- if "no data", then triple check the wiring
- if still "no data", run:
@ -174,7 +174,7 @@ You can change the values above to suit your needs. The commands can be run one
:::
- reboot/reset the device (press the RST button or unplug/plug in the device)
- when the device boots it should say "Environment" and it may show the sensor data
- when the device boots it should say "Telemetry" and it may show the sensor data
- if "no data", then triple check the wiring
- if still "no data", run:
@ -208,7 +208,7 @@ You can change the values above to suit your needs. The commands can be run one
:::
- reboot/reset the device (press the button or unplug/plug in the device)
- when the device boots it should say "Environment" and it may show the sensor data
- when the device boots it should say "Telemetry" and it may show the sensor data
- if still "no data", run:
```bash

View file

@ -95,7 +95,7 @@ module.exports = {
"software/modules/canned-message-module",
"software/modules/serial-module",
"software/modules/store-forward-module",
"software/modules/environment-module",
"software/modules/telemetry-module",
],
},
{
@ -171,7 +171,7 @@ module.exports = {
{
Modules: [
"settings/canned-message-module",
"settings/environmental-measurement-module",
"settings/telemetry-module",
"settings/external-notification-module",
"settings/range-test-module",
"settings/rotary-encoder-module",