summaryrefslogtreecommitdiff
path: root/platformio/common/libs/led
diff options
context:
space:
mode:
Diffstat (limited to 'platformio/common/libs/led')
-rw-r--r--platformio/common/libs/led/homekit/led.cpp27
-rw-r--r--platformio/common/libs/led/homekit/led.h33
-rw-r--r--platformio/common/libs/led/library.json8
3 files changed, 0 insertions, 68 deletions
diff --git a/platformio/common/libs/led/homekit/led.cpp b/platformio/common/libs/led/homekit/led.cpp
deleted file mode 100644
index ffefb04..0000000
--- a/platformio/common/libs/led/homekit/led.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "led.h"
-
-namespace homekit::led {
-
-void Led::on_off(uint16_t delay_ms, bool last_delay) const {
- on();
- delay(delay_ms);
-
- off();
- if (last_delay)
- delay(delay_ms);
-}
-
-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);
- }
-}
-
-
-#ifdef CONFIG_TARGET_NODEMCU
-const Led* board_led = new Led(CONFIG_BOARD_LED_GPIO);
-#endif
-const Led* mcu_led = new Led(CONFIG_MCU_LED_GPIO);
-
-
-}
diff --git a/platformio/common/libs/led/homekit/led.h b/platformio/common/libs/led/homekit/led.h
deleted file mode 100644
index 775d2eb..0000000
--- a/platformio/common/libs/led/homekit/led.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef HOMEKIT_LIB_LED_H
-#define HOMEKIT_LIB_LED_H
-
-#include <Arduino.h>
-#include <stdint.h>
-
-namespace homekit::led {
-
-class Led {
-private:
- uint8_t _pin;
-
-public:
- explicit Led(uint8_t pin) : _pin(pin) {
- pinMode(_pin, OUTPUT);
- off();
- }
-
- inline void off() const { digitalWrite(_pin, HIGH); }
- inline void on() const { digitalWrite(_pin, LOW); }
-
- void on_off(uint16_t delay_ms, bool last_delay = false) const;
- void blink(uint8_t count, uint16_t delay_ms) const;
-};
-
-#ifdef CONFIG_TARGET_NODEMCU
-extern const Led* board_led;
-#endif
-extern const Led* mcu_led;
-
-}
-
-#endif //HOMEKIT_LIB_LED_H
diff --git a/platformio/common/libs/led/library.json b/platformio/common/libs/led/library.json
deleted file mode 100644
index 6785d42..0000000
--- a/platformio/common/libs/led/library.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "homekit_led",
- "version": "1.0.8",
- "build": {
- "flags": "-I../../include"
- }
-}
-