From a353b191bfeeea4c1fb97a8d55defa1e0d5d2f65 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 11 Jun 2022 08:45:36 -0500 Subject: [PATCH] ina sensor types --- telemetry.proto | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/telemetry.proto b/telemetry.proto index 9479ad9..f408979 100644 --- a/telemetry.proto +++ b/telemetry.proto @@ -97,51 +97,61 @@ message Telemetry { */ enum TelemetrySensorType { /* - * No external telemetry sensor + * No external telemetry sensor explicitly set */ NotSet = 0; /* - * TODO: REPLACE + * Moderate accuracy temperature */ DHT11 = 1; /* - * TODO: REPLACE + * High accuracy temperature */ DS18B20 = 2; /* - * TODO: REPLACE + * Moderate accuracy temperature and humidity */ DHT12 = 3; /* - * TODO: REPLACE + * Moderate accuracy temperature and humidity */ DHT21 = 4; /* - * TODO: REPLACE + * Moderate accuracy temperature and humidity */ DHT22 = 5; /* - * TODO: REPLACE + * High accuracy temperature, pressure, humidity */ BME280 = 6; /* - * TODO: REPLACE + * High accuracy temperature, pressure, humidity, and air resistance */ BME680 = 7; /* - * TODO: REPLACE + * Very high accuracy temperature */ MCP9808 = 8; /* - * TODO: REPLACE + * Moderate accuracy temperature and humidity */ SHTC3 = 9; + + /* + * Moderate accuracy current and voltage + */ + INA260 = 10; + + /* + * Moderate accuracy current and voltage + */ + INA219 = 11; }; \ No newline at end of file