From a4f63f508580d1353d26e50c0be0bb26b9d8a45b Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Sun, 16 Jan 2022 15:01:23 -0800 Subject: [PATCH 1/2] add DHT22 sensor --- radioconfig.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/radioconfig.proto b/radioconfig.proto index 9929ea2..5f31d8b 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -551,6 +551,7 @@ message RadioConfig { enum EnvironmentalMeasurementSensorType { DHT11 = 0; DS18B20 = 1; + DHT22 = 2; }; /* From f60875612d6381e07f11cede0cc58b38031937ef Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Sun, 16 Jan 2022 15:14:03 -0800 Subject: [PATCH 2/2] going to add the other 2 devices too --- radioconfig.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/radioconfig.proto b/radioconfig.proto index 5f31d8b..82d93a0 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -551,7 +551,9 @@ message RadioConfig { enum EnvironmentalMeasurementSensorType { DHT11 = 0; DS18B20 = 1; - DHT22 = 2; + DHT12 = 2; + DHT21 = 3; + DHT22 = 4; }; /*