diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-20 15:40:14 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-20 15:40:14 +0100 |
commit | 7ecbb11321a05f7498f36ff91d08b51fd3d00a62 (patch) | |
tree | 207c8c133929bd4643b68779391a78bdae06452c /StatusLED.cpp | |
parent | 78ace79b86aeba3575b2abe2ba617798f6d8da85 (diff) |
Add StatusLED
Diffstat (limited to 'StatusLED.cpp')
-rw-r--r-- | StatusLED.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/StatusLED.cpp b/StatusLED.cpp new file mode 100644 index 0000000..c3544a5 --- /dev/null +++ b/StatusLED.cpp @@ -0,0 +1,10 @@ +#include "StatusLED.h" + +StatusLED::StatusLED() +{ +} + +void StatusLED::addLED(const LED& led) +{ + m_leds.push_back(led); +} |