From 19fac1a4ec71575e245170b2f465501b0136c668 Mon Sep 17 00:00:00 2001 From: RicInNewMexico <78682404+RicInNewMexico@users.noreply.github.com> Date: Mon, 7 Feb 2022 21:50:40 -0700 Subject: [PATCH 1/2] Adding MCP9808 sensor to environmental measurement plugin docs --- docs/software/plugins/environment.md | 3 ++- docs/software/settings/environmental-measurment-plugin.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/software/plugins/environment.md b/docs/software/plugins/environment.md index 125b870c..25105a65 100644 --- a/docs/software/plugins/environment.md +++ b/docs/software/plugins/environment.md @@ -5,7 +5,7 @@ sidebar_label: Environment measurement --- ## About -The Environment Measurement Plugin 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 Environment Measurement Plugin will allow nodes to send a specific message with information from connected environmental sensors. Currently supported sensors are BME280, BME680, MCP9808, DHT11, DHT12, DHT21, DHT22 and Dallas 1-wire DS18B20. The preferred setup is using I2C, so the `environmental_measurement_plugin_sensor_pin` may not be needed. @@ -56,6 +56,7 @@ These are the settings that can be configured. 4 = DHT22 5 = BME280 6 = BME680 + 7 = MCP9808 environmental_measurement_plugin_sensor_pin Which pin is the sensor connected to? diff --git a/docs/software/settings/environmental-measurment-plugin.md b/docs/software/settings/environmental-measurment-plugin.md index 14cb2dad..6cc4a746 100644 --- a/docs/software/settings/environmental-measurment-plugin.md +++ b/docs/software/settings/environmental-measurment-plugin.md @@ -240,6 +240,7 @@ Specify the sensor type. | `4` | DHT22 | Temperature, Humidity | | `5` | BME280 | Temperature, Humidity, Pressure | | `6` | BME680 | Temperature, Humidity, Pressure, VOC Gas | +| `7` | MCP9808 | Precision Temperature | #### Set sensor type From 02704742741676472a950f227b03fbfaf73b5767 Mon Sep 17 00:00:00 2001 From: RicInNewMexico <78682404+RicInNewMexico@users.noreply.github.com> Date: Tue, 8 Feb 2022 11:58:46 -0700 Subject: [PATCH 2/2] Update environment.md --- docs/software/plugins/environment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/software/plugins/environment.md b/docs/software/plugins/environment.md index 25105a65..28af7d35 100644 --- a/docs/software/plugins/environment.md +++ b/docs/software/plugins/environment.md @@ -5,7 +5,7 @@ sidebar_label: Environment measurement --- ## About -The Environment Measurement Plugin will allow nodes to send a specific message with information from connected environmental sensors. Currently supported sensors are BME280, BME680, MCP9808, DHT11, DHT12, DHT21, DHT22 and Dallas 1-wire DS18B20. +The Environment Measurement Plugin 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 preferred setup is using I2C, so the `environmental_measurement_plugin_sensor_pin` may not be needed.