Fix error in comment

This commit is contained in:
2025-10-01 15:39:52 +02:00
parent f4e690cf3c
commit fb3fdab7df
+1 -1
View File
@@ -36,7 +36,7 @@ uint16_t moistureRead(void) {
for (uint8_t i = 0; i < SENSORS_NUM; i++) {
uint16_t sensorAverage = moistureAverage(sensorPins[i]);
//TODO: if a sensor gives 0, discard that sensor entirely (means it is disconnected or not working)
//TODO: if a sensor gives 1023, discard that sensor entirely (means it is disconnected or not working)
overallSum += sensorAverage;
}