We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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); } }
The text was updated successfully, but these errors were encountered:
Is the code generated via blocks?
Sorry, something went wrong.
Yes and using the format button in the code editor doesn't work either.
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: