diff options
Diffstat (limited to 'platformio/common/libs/relay/homekit')
-rw-r--r-- | platformio/common/libs/relay/homekit/relay.cpp | 22 | ||||
-rw-r--r-- | platformio/common/libs/relay/homekit/relay.h | 13 |
2 files changed, 0 insertions, 35 deletions
diff --git a/platformio/common/libs/relay/homekit/relay.cpp b/platformio/common/libs/relay/homekit/relay.cpp deleted file mode 100644 index b00a7a2..0000000 --- a/platformio/common/libs/relay/homekit/relay.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include <Arduino.h> -#include "./relay.h" - -namespace homekit::relay { - -void init() { - pinMode(CONFIG_RELAY_GPIO, OUTPUT); -} - -bool state() { - return digitalRead(CONFIG_RELAY_GPIO) == HIGH; -} - -void on() { - digitalWrite(CONFIG_RELAY_GPIO, HIGH); -} - -void off() { - digitalWrite(CONFIG_RELAY_GPIO, LOW); -} - -} diff --git a/platformio/common/libs/relay/homekit/relay.h b/platformio/common/libs/relay/homekit/relay.h deleted file mode 100644 index 288cc05..0000000 --- a/platformio/common/libs/relay/homekit/relay.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef HOMEKIT_LIB_RELAY_H -#define HOMEKIT_LIB_RELAY_H - -namespace homekit::relay { - -void init(); -bool state(); -void on(); -void off(); - -} - -#endif //HOMEKIT_LIB_RELAY_H |