Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions meshtastic/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -247,17 +247,17 @@
/*
* Concentration Units Standard PM1.0 in ug/m3
*/
optional uint32 pm10_standard = 1;
optional float pm10_standard = 1;

Check failure on line 250 in meshtastic/telemetry.proto

View workflow job for this annotation

GitHub Actions / build

Field "1" with name "pm10_standard" on message "AirQualityMetrics" changed type from "uint32" to "float".

/*
* Concentration Units Standard PM2.5 in ug/m3
*/
optional uint32 pm25_standard = 2;
optional float pm25_standard = 2;

Check failure on line 255 in meshtastic/telemetry.proto

View workflow job for this annotation

GitHub Actions / build

Field "2" with name "pm25_standard" on message "AirQualityMetrics" changed type from "uint32" to "float".

/*
* Concentration Units Standard PM10.0 in ug/m3
*/
optional uint32 pm100_standard = 3;
optional float pm100_standard = 3;

Check failure on line 260 in meshtastic/telemetry.proto

View workflow job for this annotation

GitHub Actions / build

Field "3" with name "pm100_standard" on message "AirQualityMetrics" changed type from "uint32" to "float".

/*
* Concentration Units Environmental PM1.0 in ug/m3
Expand Down Expand Up @@ -337,7 +337,7 @@
/*
* Concentration Units Standard PM4.0 in ug/m3
*/
optional uint32 pm40_standard = 19;
optional float pm40_standard = 19;

Check failure on line 340 in meshtastic/telemetry.proto

View workflow job for this annotation

GitHub Actions / build

Field "19" with name "pm40_standard" on message "AirQualityMetrics" changed type from "uint32" to "float".

/*
* 4.0um Particle Count in #/0.1l
Expand Down
Loading