diff options
Diffstat (limited to 'platformio/relayctl/src/led.cpp')
-rw-r--r-- | platformio/relayctl/src/led.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/platformio/relayctl/src/led.cpp b/platformio/relayctl/src/led.cpp new file mode 100644 index 0000000..eafc662 --- /dev/null +++ b/platformio/relayctl/src/led.cpp @@ -0,0 +1,20 @@ +#include "led.h" + +namespace homekit { + +void Led::blink(uint8_t count, uint16_t delay_ms) const { + for (uint8_t i = 0; i < count; i++) { + on_off(delay_ms, i < count-1); + } +} + +void Led::on_off(uint16_t delay_ms, bool last_delay) const { + on(); + delay(delay_ms); + + off(); + if (last_delay) + delay(delay_ms); +} + +}
\ No newline at end of file |