Merge pull request #540 from dhskinner/new-sensor-types

Additional Telemetry sensors - BMP388, ICM-20948, MAX17048
This commit is contained in:
Ben Meadors 2024-08-11 09:53:18 -05:00 committed by GitHub
commit 071fd931ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -395,6 +395,21 @@ enum TelemetrySensorType {
* NAU7802 Scale Chip or compatible
*/
NAU7802 = 25;
/*
* BMP3XX High accuracy temperature and pressure
*/
BMP3XX = 26;
/*
* ICM-20948 9-Axis digital motion processor
*/
ICM20948 = 27;
/*
* MAX17048 1S lipo battery sensor (voltage, state of charge, time to go)
*/
MAX17048 = 28;
}
/*