Fixing #59 and unnecessary jack insertion messages-release

This commit is contained in:
Sebastien
2020-11-21 09:26:56 -05:00
parent 2687023b6f
commit 2d573da503
5 changed files with 5 additions and 13 deletions

View File

@@ -40,8 +40,6 @@ static struct {
.cells = 2,
};
extern void wifi_manager_update_status();
/****************************************************************************************
*
*/
@@ -66,7 +64,6 @@ static void battery_callback(TimerHandle_t xTimer) {
battery.avg = battery.sum / battery.count;
battery.sum = battery.count = 0;
ESP_LOGI(TAG, "Voltage %.2fV", battery.avg);
wifi_manager_update_status();
}
}