summaryrefslogtreecommitdiffstats
path: root/Led.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Led.hpp')
-rw-r--r--Led.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Led.hpp b/Led.hpp
index d4f4dcd..b082d7d 100644
--- a/Led.hpp
+++ b/Led.hpp
@@ -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;
};