removed debug output from battery.cpp

This commit is contained in:
Klaus K Wilting 2019-02-23 20:38:05 +01:00
parent f08a649086
commit d0de4ae3bc

View File

@ -48,7 +48,6 @@ uint16_t read_voltage() {
#ifdef BATT_FACTOR #ifdef BATT_FACTOR
voltage *= BATT_FACTOR; voltage *= BATT_FACTOR;
#endif #endif
ESP_LOGD(TAG, "Raw: %d / Voltage: %dmV", adc_reading, voltage);
return voltage; return voltage;
#else #else
return 0; return 0;