diff options
Diffstat (limited to 'StatusLED.h')
-rw-r--r-- | StatusLED.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/StatusLED.h b/StatusLED.h index b1c0f23..9348f19 100644 --- a/StatusLED.h +++ b/StatusLED.h @@ -22,16 +22,17 @@ public: StatusLED(); - void addLED(const LED& led); + void add(const LED& led); void setMode(Mode mode); void setBPM(int bpm); private: - void initLED(const LED& led); - void updateLED(const LED& led); + bool init(const LED& led); + void update(const LED& led); std::vector<LED> m_leds; // on best effort base, those will all show the same status Mode m_mode; int m_bpm; }; + |