Skip to content

Commit

Permalink
not encoded telemetry as default
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Sep 25, 2024
1 parent 640166a commit 3fd819b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LoRa_APRS_iGate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ________________________________________________________________________________
#include "A7670_utils.h"
#endif

String versionDate = "2024.09.23";
String versionDate = "2024.09.25";
Configuration Config;
WiFiClient espClient;

Expand Down
2 changes: 1 addition & 1 deletion src/configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ bool Configuration::readFile() {
battery.voltageDividerR1 = data["battery"]["voltageDividerR1"] | 100.0;
battery.voltageDividerR2 = data["battery"]["voltageDividerR2"] | 27.0;

battery.sendVoltageAsTelemetry = data["battery"]["sendVoltageAsTelemetry"] | true;
battery.sendVoltageAsTelemetry = data["battery"]["sendVoltageAsTelemetry"] | false;

bme.active = data["bme"]["active"] | false;
bme.heightCorrection = data["bme"]["heightCorrection"] | 0;
Expand Down

0 comments on commit 3fd819b

Please sign in to comment.