diff options
author | Nao Pross <naopross@thearcway.org> | 2018-04-10 16:28:48 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-04-10 16:28:48 +0200 |
commit | 5580da62728ffe353f50bddabd27b88aba8ac5f2 (patch) | |
tree | c4e34c47af058636b3867195fabc6617bb27cbd0 /Led.hpp | |
parent | First commit (diff) | |
download | SAMLiquidSmoke-5580da62728ffe353f50bddabd27b88aba8ac5f2.tar.gz SAMLiquidSmoke-5580da62728ffe353f50bddabd27b88aba8ac5f2.zip |
Add Led class implementation
Diffstat (limited to 'Led.hpp')
-rw-r--r-- | Led.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,13 +20,13 @@ public: Led() = delete; virtual ~Led(); - Color color(); + Color color() const; void set(bool status); - bool status() const; + bool state() const; private: - bool _status; + bool _state; Color _color; }; |