From 79853beeb2befdd571998786262371a36928fbce Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Fri, 29 Jul 2022 11:10:26 -0500 Subject: [PATCH] Update telemetry.proto --- telemetry.proto | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/telemetry.proto b/telemetry.proto index 9010056..30ef8b3 100644 --- a/telemetry.proto +++ b/telemetry.proto @@ -101,33 +101,28 @@ enum TelemetrySensorType { */ NotSet = 0; - /* - * Moderate accuracy temperature and humidity - */ - DHT22 = 1; - /* * High accuracy temperature, pressure, humidity */ - BME280 = 2; + BME280 = 1; /* * High accuracy temperature, pressure, humidity, and air resistance */ - BME680 = 3; + BME680 = 2; /* * Very high accuracy temperature */ - MCP9808 = 4; + MCP9808 = 3; /* * Moderate accuracy current and voltage */ - INA260 = 5; + INA260 = 4; /* * Moderate accuracy current and voltage */ - INA219 = 6; -}; \ No newline at end of file + INA219 = 5; +};