This commit is contained in:
J. Nick Koston 2023-06-07 17:54:31 -05:00
parent 392fe161ae
commit f5e1e72e25
No known key found for this signature in database
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#pragma once
#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) {};
} // namespace ratgdo
} // namespace esphome