Less debug output

This commit is contained in:
Ollo 2020-12-28 14:59:25 +01:00
parent 2fc835f396
commit 4f754199eb

View File

@ -495,7 +495,7 @@ int readTemp() {
if (rtcLipoTempIndex != -1) if (rtcLipoTempIndex != -1)
{ {
float temp1Raw = sensors.getTempCByIndex(rtcLipoTempIndex); float temp1Raw = sensors.getTempCByIndex(rtcLipoTempIndex);
Serial << "lipoTempCurrent: " << temp1Raw << endl; //Serial << "lipoTempCurrent: " << temp1Raw << endl;
lipoTempSensor.add(temp1Raw); lipoTempSensor.add(temp1Raw);
} }
else else
@ -513,7 +513,7 @@ int readTemp() {
if (sensorCount > 1 && rtcWaterTempIndex != -1) if (sensorCount > 1 && rtcWaterTempIndex != -1)
{ {
float temp2Raw = sensors.getTempCByIndex(rtcWaterTempIndex); float temp2Raw = sensors.getTempCByIndex(rtcWaterTempIndex);
Serial << "waterTempCurrent: " << temp2Raw << endl; //Serial << "waterTempCurrent: " << temp2Raw << endl;
waterTempSensor.add(temp2Raw); waterTempSensor.add(temp2Raw);
} }