comments, fix typos, prep for v3.2

This commit is contained in:
proddy
2021-07-24 11:56:39 +02:00
parent 6d94335079
commit e22b191a48
9 changed files with 14 additions and 17 deletions

View File

@@ -511,7 +511,7 @@ void System::measure_analog() {
if (!measure_last_ || (uint32_t)(uuid::get_uptime() - measure_last_) >= SYSTEM_MEASURE_ANALOG_INTERVAL) {
measure_last_ = uuid::get_uptime();
#if defined(ESP32)
uint16_t a = analogRead(36);
uint16_t a = analogRead(ADC_CH0_GPIO);
#else
uint16_t a = 0; // standalone
#endif