Adding an astyle make target and running everything through it

This commit is contained in:
2013-12-30 00:00:35 -05:00
parent e01c30f7c7
commit 7e43885af4
6 changed files with 50 additions and 46 deletions

View File

@@ -13,7 +13,7 @@ void loop() {
const int CURRENT_BUTTON_STATE = digitalRead(BUTTON_PIN);
if (CURRENT_BUTTON_STATE != oldButtonState &&
CURRENT_BUTTON_STATE == HIGH) {
CURRENT_BUTTON_STATE == HIGH) {
if (ledState == LOW) {
ledState = HIGH;
} else {