binary sensor

This commit is contained in:
J. Nick Koston 2023-06-07 12:04:22 -05:00
parent e3d8beb990
commit dd86f7c756
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View File

@ -49,6 +49,7 @@ namespace ratgdo {
traits.set_is_assumed_state(false);
return traits;
}
void RATGDOCover::control(const CoverCall& call) { }
} // namespace ratgdo
} // namespace esphome

View File

@ -20,8 +20,8 @@ namespace ratgdo {
void on_light_state(esphome::ratgdo::LightState state) override;
void on_lock_state(esphome::ratgdo::LockState state) override;
// protected:
// void control(const cover::CoverCall &call) override;
protected:
void control(const cover::CoverCall& call) override;
};
} // namespace ratgdo