This commit is contained in:
J. Nick Koston 2023-06-07 17:51:44 -05:00
parent c7b7519364
commit 392fe161ae
No known key found for this signature in database
1 changed files with 5 additions and 5 deletions

View File

@ -13,11 +13,11 @@ namespace ratgdo {
class RATGDOClient : public Parented<RATGDOComponent> {
public:
virtual void on_door_state(esphome::ratgdo::DoorState state);
virtual void on_light_state(esphome::ratgdo::LightState state);
virtual void on_lock_state(esphome::ratgdo::LockState state);
virtual void on_motion_state(esphome::ratgdo::MotionState state);
virtual void on_obstruction_state(esphome::ratgdo::ObstructionState state);
virtual void on_door_state(DoorState state);
virtual void on_light_state(LightState state);
virtual void on_lock_state(LockState state);
virtual void on_motion_state(MotionState state);
virtual void on_obstruction_state(ObstructionState state);
protected:
friend RATGDOComponent;