Compare commits
4 Commits
7d4f165244
...
2c34b7a741
Author | SHA1 | Date |
---|---|---|
Brendan Davis | 2c34b7a741 | |
J. Nick Koston | f721a72b47 | |
Brendan Davis | 9f54e2ea30 | |
brgaulin | be16a745a0 |
|
@ -6,6 +6,8 @@ external_components:
|
||||||
url: https://github.com/ratgdo/esphome-ratgdo
|
url: https://github.com/ratgdo/esphome-ratgdo
|
||||||
refresh: 1s
|
refresh: 1s
|
||||||
|
|
||||||
|
safe_mode:
|
||||||
|
|
||||||
preferences:
|
preferences:
|
||||||
flash_write_interval: 1min
|
flash_write_interval: 1min
|
||||||
|
|
||||||
|
@ -45,6 +47,9 @@ api:
|
||||||
id($id_prefix).clear_paired_devices(ratgdo::PairedDevice::ACCESSORY);
|
id($id_prefix).clear_paired_devices(ratgdo::PairedDevice::ACCESSORY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ota:
|
||||||
|
- platform: esphome
|
||||||
|
|
||||||
sensor:
|
sensor:
|
||||||
- platform: ratgdo
|
- platform: ratgdo
|
||||||
id: ${id_prefix}_openings
|
id: ${id_prefix}_openings
|
||||||
|
|
|
@ -8,6 +8,8 @@ external_components:
|
||||||
url: https://github.com/ratgdo/esphome-ratgdo
|
url: https://github.com/ratgdo/esphome-ratgdo
|
||||||
refresh: 1s
|
refresh: 1s
|
||||||
|
|
||||||
|
safe_mode:
|
||||||
|
|
||||||
preferences:
|
preferences:
|
||||||
flash_write_interval: 1min
|
flash_write_interval: 1min
|
||||||
|
|
||||||
|
@ -25,6 +27,9 @@ ratgdo:
|
||||||
discrete_close_pin: ${discrete_close_pin}
|
discrete_close_pin: ${discrete_close_pin}
|
||||||
protocol: drycontact
|
protocol: drycontact
|
||||||
|
|
||||||
|
ota:
|
||||||
|
- platform: esphome
|
||||||
|
|
||||||
binary_sensor:
|
binary_sensor:
|
||||||
- platform: ratgdo
|
- platform: ratgdo
|
||||||
type: obstruction
|
type: obstruction
|
||||||
|
|
|
@ -6,6 +6,8 @@ external_components:
|
||||||
url: https://github.com/ratgdo/esphome-ratgdo
|
url: https://github.com/ratgdo/esphome-ratgdo
|
||||||
refresh: 1s
|
refresh: 1s
|
||||||
|
|
||||||
|
safe_mode:
|
||||||
|
|
||||||
preferences:
|
preferences:
|
||||||
flash_write_interval: 1min
|
flash_write_interval: 1min
|
||||||
|
|
||||||
|
@ -28,6 +30,9 @@ ratgdo:
|
||||||
message: "Failed to communicate with garage opener on startup."
|
message: "Failed to communicate with garage opener on startup."
|
||||||
notification_id: "esphome_ratgdo_${id_prefix}_sync_failed"
|
notification_id: "esphome_ratgdo_${id_prefix}_sync_failed"
|
||||||
|
|
||||||
|
ota:
|
||||||
|
- platform: esphome
|
||||||
|
|
||||||
lock:
|
lock:
|
||||||
- platform: ratgdo
|
- platform: ratgdo
|
||||||
id: ${id_prefix}_lock_remotes
|
id: ${id_prefix}_lock_remotes
|
||||||
|
|
|
@ -18,9 +18,13 @@ CoverOpeningTrigger = ratgdo_ns.class_(
|
||||||
CoverClosingTrigger = ratgdo_ns.class_(
|
CoverClosingTrigger = ratgdo_ns.class_(
|
||||||
"CoverClosingTrigger", automation.Trigger.template()
|
"CoverClosingTrigger", automation.Trigger.template()
|
||||||
)
|
)
|
||||||
|
CoverStateTrigger = ratgdo_ns.class_(
|
||||||
|
"CoverStateTrigger", automation.Trigger.template()
|
||||||
|
)
|
||||||
|
|
||||||
CONF_ON_OPENING = "on_opening"
|
CONF_ON_OPENING = "on_opening"
|
||||||
CONF_ON_CLOSING = "on_closing"
|
CONF_ON_CLOSING = "on_closing"
|
||||||
|
CONF_ON_STATE_CHANGE = "on_state_change"
|
||||||
|
|
||||||
CONFIG_SCHEMA = cover.COVER_SCHEMA.extend(
|
CONFIG_SCHEMA = cover.COVER_SCHEMA.extend(
|
||||||
{
|
{
|
||||||
|
@ -31,6 +35,9 @@ CONFIG_SCHEMA = cover.COVER_SCHEMA.extend(
|
||||||
cv.Optional(CONF_ON_CLOSING): automation.validate_automation(
|
cv.Optional(CONF_ON_CLOSING): automation.validate_automation(
|
||||||
{cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(CoverClosingTrigger)}
|
{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)
|
).extend(RATGDO_CLIENT_SCHMEA)
|
||||||
|
|
||||||
|
@ -46,5 +53,8 @@ async def to_code(config):
|
||||||
for conf in config.get(CONF_ON_CLOSING, []):
|
for conf in config.get(CONF_ON_CLOSING, []):
|
||||||
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
||||||
await automation.build_automation(trigger, [], conf)
|
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)
|
await register_ratgdo_child(var, config)
|
||||||
|
|
|
@ -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 ratgdo
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|
|
@ -41,8 +41,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -41,8 +41,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -41,8 +41,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -41,8 +41,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
|
@ -42,8 +42,6 @@ time:
|
||||||
api:
|
api:
|
||||||
id: api_server
|
id: api_server
|
||||||
|
|
||||||
ota:
|
|
||||||
|
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
|
|
Loading…
Reference in New Issue