Formating and Conventions Work

- Moved controller code to utilities
- added m_ prefix to member variables to stick with conventions
This commit is contained in:
HFocus
2019-08-07 18:46:31 -06:00
parent ecef9065de
commit 745d55342d
6 changed files with 16 additions and 11 deletions
@@ -33,6 +33,10 @@ public enum LEDPatterns {
// GETTERS/SETTERS
private final float id;
LEDPatterns(float id) { this.id = id; }
public float getValue() { return id; }
LEDPatterns(float id) {
this.id = id;
}
public float getValue() {
return id;
}
}