Skip to content

Commit

Permalink
shortening reduced Wx report
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Sep 23, 2024
1 parent ddb4554 commit 202d03c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/bme_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ namespace BME_Utils {
String wx;
if (isnan(newTemp) || isnan(newHum) || isnan(newPress)) {
Serial.println("BME/BMP/Si7021 Module data failed");
wx = ".../...g...t...r...p...P...h..b.....";
wx = ".../...g...t...";
fifthLine = "";
return wx;
} else {
Expand Down Expand Up @@ -246,7 +246,7 @@ namespace BME_Utils {

wx = ".../...g...t";
wx += tempStr;
wx += "r...p...P...h";
wx += "h";
wx += humStr;
wx += "b";
wx += presStr;
Expand Down
4 changes: 2 additions & 2 deletions src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ namespace Utils {
beaconPacket += sensorData;
secondaryBeaconPacket += sensorData;
} else if (Config.bme.active && wxModuleType == 0) {
beaconPacket += ".../...g...t...r...p...P...h..b.....";
secondaryBeaconPacket += ".../...g...t...r...p...P...h..b.....";
beaconPacket += ".../...g...t...";
secondaryBeaconPacket += ".../...g...t...";
}
beaconPacket += Config.beacon.comment;
secondaryBeaconPacket += Config.beacon.comment;
Expand Down

0 comments on commit 202d03c

Please sign in to comment.