esphome-ratgdo/components/ratgdo/ratgdo_child.cpp

21 lines
744 B
C++
Raw Normal View History

2023-06-07 22:54:31 +00:00
#include "esphome/core/helpers.h"
#include "ratgdo.h"
#include "ratgdo_state.h"
namespace esphome {
namespace ratgdo {
void RATGDOClient::on_door_state(DoorState state) {};
void RATGDOClient::on_light_state(LightState state) {};
void RATGDOClient::on_lock_state(LockState state) {};
void RATGDOClient::on_motion_state(MotionState state) {};
void RATGDOClient::on_obstruction_state(ObstructionState state) {};
2023-06-08 02:40:07 +00:00
void RATGDOClient::on_motor_state(MotorState state) {};
2023-06-07 22:59:08 +00:00
void RATGDOClient::on_rolling_code_change(uint32_t rollingCodeCounter) {};
2023-06-09 22:37:52 +00:00
void RATGDOClient::on_openings_change(uint32_t openings) {};
2023-06-09 23:07:11 +00:00
void RATGDOClient::on_button_state(ButtonState state) {};
2023-06-07 22:54:31 +00:00
} // namespace ratgdo
} // namespace esphome