Open BjoernLuig opened 1 week ago
Formatter does not work properly. For example:
void loop() { solar_update_SB041(); if (( solar_panel_voltage > 2)) { deep_sleep_and_restart(30 * 60000);} else { deep_sleep_and_restart(12 * 3600000);} }
Proper indentation of if-else and no space infront of solar_panel_voltage. For example:
void loop() { solar_update_SB041(); if ((solar_panel_voltage > 2)) { deep_sleep_and_restart(30 * 60000); } else { deep_sleep_and_restart(12 * 3600000); } }
Is the code generated via blocks?
Yes and using the format button in the code editor doesn't work either.
Current behaviour
Formatter does not work properly. For example:
Expected behaviour
Proper indentation of if-else and no space infront of solar_panel_voltage. For example: