From 4f754199ebce76cde5ec870871c37984dadf2293 Mon Sep 17 00:00:00 2001 From: Ollo Date: Mon, 28 Dec 2020 14:59:25 +0100 Subject: [PATCH] Less debug output --- esp32/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp32/src/main.cpp b/esp32/src/main.cpp index 1280fed..76edb13 100644 --- a/esp32/src/main.cpp +++ b/esp32/src/main.cpp @@ -495,7 +495,7 @@ int readTemp() { if (rtcLipoTempIndex != -1) { float temp1Raw = sensors.getTempCByIndex(rtcLipoTempIndex); - Serial << "lipoTempCurrent: " << temp1Raw << endl; + //Serial << "lipoTempCurrent: " << temp1Raw << endl; lipoTempSensor.add(temp1Raw); } else @@ -513,7 +513,7 @@ int readTemp() { if (sensorCount > 1 && rtcWaterTempIndex != -1) { float temp2Raw = sensors.getTempCByIndex(rtcWaterTempIndex); - Serial << "waterTempCurrent: " << temp2Raw << endl; + //Serial << "waterTempCurrent: " << temp2Raw << endl; waterTempSensor.add(temp2Raw); }