Skip to content

Commit 2bb91cd

Browse files
committed
Adjust temperature offset value for WiFi mode
1 parent 1ca95f2 commit 2bb91cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OpenCO2_Sensor.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- WiFiManager: https://github.com/tzapu/WiFiManager
1111
- ArduinoMqttClient (if MQTT is defined)
1212
*/
13-
#define VERSION "v6.0"
13+
#define VERSION "v6.1"
1414

1515
#define HEIGHT_ABOVE_SEA_LEVEL 50 // Berlin
1616
#define TZ_DATA "CET-1CEST,M3.5.0,M10.5.0/3" // Europe/Berlin time zone from https://github.com/nayarsystems/posix_tz_db/blob/master/zones.csv
@@ -317,7 +317,7 @@ void loadCredentials() {
317317

318318
float getTempOffset() {
319319
if (!BatteryMode) {
320-
if (useWiFi) return 12.2;
320+
if (useWiFi) return 11.0;
321321
return 4.4;
322322
} else {
323323
return 0.0; // was with periodic measurment 0.8

0 commit comments

Comments
 (0)