Skip to content

Commit

Permalink
feat: add cover.on_state_change trigger (#195)
Browse files Browse the repository at this point in the history
Co-authored-by: J. Nick Koston <[email protected]>
  • Loading branch information
brgaulin and bdraco authored Jul 3, 2024
1 parent 9df4ceb commit 38d2508
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions components/ratgdo/cover/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
CoverClosingTrigger = ratgdo_ns.class_(
"CoverClosingTrigger", automation.Trigger.template()
)
CoverStateTrigger = ratgdo_ns.class_(
"CoverStateTrigger", automation.Trigger.template()
)

CONF_ON_OPENING = "on_opening"
CONF_ON_CLOSING = "on_closing"
CONF_ON_STATE_CHANGE = "on_state_change"

CONFIG_SCHEMA = cover.COVER_SCHEMA.extend(
{
Expand All @@ -31,6 +35,9 @@
cv.Optional(CONF_ON_CLOSING): automation.validate_automation(
{cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(CoverClosingTrigger)}
),
cv.Optional(CONF_ON_STATE_CHANGE): automation.validate_automation(
{cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(CoverStateTrigger)}
),
}
).extend(RATGDO_CLIENT_SCHMEA)

Expand All @@ -46,5 +53,8 @@ async def to_code(config):
for conf in config.get(CONF_ON_CLOSING, []):
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
await automation.build_automation(trigger, [], conf)
for conf in config.get(CONF_ON_STATE_CHANGE, []):
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
await automation.build_automation(trigger, [], conf)

await register_ratgdo_child(var, config)
10 changes: 10 additions & 0 deletions components/ratgdo/cover/automation.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,15 @@ namespace ratgdo {
}
};

class CoverStateTrigger : public Trigger<> {
public:
CoverStateTrigger(cover::Cover* a_cover)
{
a_cover->add_on_state_callback([this, a_cover]() {
this->trigger();
});
}
};

} // namespace ratgdo
} // namespace esphome

0 comments on commit 38d2508

Please sign in to comment.