Update telemetry.proto

This commit is contained in:
Ben Meadors 2022-07-29 11:10:26 -05:00 committed by GitHub
parent c6293d78a6
commit 79853beeb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
INA219 = 5;
};