add NAU7802 protobufs

This commit is contained in:
Thomas Göttgens 2024-06-13 14:39:08 +02:00 committed by GitHub
parent 8f4faf76e5
commit 95e94d5af0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -375,4 +375,24 @@ enum TelemetrySensorType {
* DFRobot Lark Weather station (temperature, humidity, pressure, wind speed and direction)
*/
DFROBOT_LARK = 24;
/*
* NAU7802 Scale Chip or compatible
*/
NAU7802 = 25;
}
/*
* NAU7802 Telemetry configuration, for saving to flash
*/
message Nau7802Config {
/*
* The offset setting for the NAU7802
*/
int32 zeroOffset = 1;
/*
* The calibration factor for the NAU7802
*/
float calibrationFactor = 2;
}