14 lines
168 B
C++
14 lines
168 B
C++
#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
|