2018-06-13 22:58:46 +02:00
|
|
|
Dual relay cover motor control
|
|
|
|
==============================
|
|
|
|
|
2018-11-04 22:19:14 +01:00
|
|
|
The following is a possible configuration file for common covers that use a motor with 2 inputs.
|
|
|
|
Only one should be powered at a time (interlocking) to either move the cover up or down. For this
|
|
|
|
the `Sonoff Dual R2 <https://www.itead.cc/sonoff-dual.html>`__ can be used which has two independent
|
|
|
|
relays. Additionally this configuration allows the single button on the Sonoff to control the motion
|
|
|
|
by cycling between: open->stop->down->stop->...
|
2018-06-13 22:58:46 +02:00
|
|
|
|
2018-11-04 22:19:14 +01:00
|
|
|
These kind of motors automatically stop when the end of the cover movement is reached. However,
|
|
|
|
to be safe, this automation stops powering the motor after 1 minute of movement. In the rare case
|
|
|
|
of the end-stop switch in the motor failing this will reduce the risk for damage or fire.
|
2018-06-13 22:58:46 +02:00
|
|
|
|
2018-11-04 22:19:14 +01:00
|
|
|
Of the four main components (button sensor, 2 relays switches and the cover), only the cover will be
|
|
|
|
visible to the end-user. The other three are hidden by means of not including a ``name``. This is to
|
|
|
|
prevent accidentally switching on both relays simultaneously from MQTT/Home-assistant as that might be harmful
|
|
|
|
for some motors.
|
2018-06-13 22:58:46 +02:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
2018-11-04 22:19:14 +01:00
|
|
|
Controlling the cover to quickly (sending new open/close commands within a minute of previous commands)
|
|
|
|
might cause unexpected behaviour (eg: cover stopping halfway). This is because the delayed relay off
|
|
|
|
feature is implemented using asynchronous automations. So every time a open/close command is sent a
|
|
|
|
delayed relay off command is added and old ones are not removed.
|
2018-06-13 22:58:46 +02:00
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
esphomeyaml:
|
|
|
|
name: cover
|
2018-11-04 22:19:14 +01:00
|
|
|
platform: ESP8266
|
2018-06-13 22:58:46 +02:00
|
|
|
board: esp01_1m
|
|
|
|
board_flash_mode: dout
|
|
|
|
|
|
|
|
wifi:
|
|
|
|
ssid: '***'
|
|
|
|
password: '***'
|
|
|
|
|
|
|
|
mqtt:
|
|
|
|
broker: 'mqtt'
|
|
|
|
username: ''
|
|
|
|
password: ''
|
|
|
|
|
|
|
|
logger:
|
|
|
|
|
|
|
|
ota:
|
|
|
|
|
|
|
|
binary_sensor:
|
|
|
|
- platform: gpio
|
|
|
|
pin:
|
|
|
|
number: 10
|
|
|
|
inverted: true
|
|
|
|
id: button
|
|
|
|
on_press:
|
|
|
|
then:
|
|
|
|
# logic for cycling through movements: open->stop->close->stop->...
|
|
|
|
- lambda: |
|
|
|
|
if (id(cover).state == cover::COVER_OPEN) {
|
2018-10-20 14:53:27 +02:00
|
|
|
if (id(open).state){
|
2018-06-13 22:58:46 +02:00
|
|
|
// cover is in opening movement, stop it
|
|
|
|
id(cover).stop();
|
|
|
|
} else {
|
|
|
|
// cover has finished opening, close it
|
|
|
|
id(cover).close();
|
|
|
|
}
|
2018-10-20 14:53:27 +02:00
|
|
|
} else {
|
|
|
|
if (id(close).state){
|
2018-06-13 22:58:46 +02:00
|
|
|
// cover is in closing movement, stop it
|
|
|
|
id(cover).stop();
|
|
|
|
} else {
|
|
|
|
// cover has finished closing, open it
|
|
|
|
id(cover).open();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch:
|
|
|
|
- platform: gpio
|
|
|
|
pin: 12
|
|
|
|
id: open
|
|
|
|
- platform: gpio
|
|
|
|
pin: 5
|
|
|
|
id: close
|
|
|
|
|
|
|
|
cover:
|
|
|
|
- platform: template
|
|
|
|
name: "Cover"
|
|
|
|
id: cover
|
|
|
|
open_action:
|
|
|
|
# cancel potential previous movement
|
2018-11-04 22:19:14 +01:00
|
|
|
- switch.turn_off: close
|
2018-06-13 22:58:46 +02:00
|
|
|
# perform movement
|
2018-11-04 22:19:14 +01:00
|
|
|
- switch.turn_on: open
|
2018-06-13 22:58:46 +02:00
|
|
|
# wait until cover is open
|
|
|
|
- delay: 60s
|
|
|
|
# turn of relay to prevent keeping the motor powered
|
2018-11-04 22:19:14 +01:00
|
|
|
- switch.turn_off: open
|
2018-06-13 22:58:46 +02:00
|
|
|
close_action:
|
2018-11-04 22:19:14 +01:00
|
|
|
- switch.turn_off: open
|
|
|
|
- switch.turn_on: close
|
2018-06-13 22:58:46 +02:00
|
|
|
- delay: 60s
|
2018-11-04 22:19:14 +01:00
|
|
|
- switch.turn_off: close
|
2018-06-13 22:58:46 +02:00
|
|
|
stop_action:
|
2018-11-04 22:19:14 +01:00
|
|
|
- switch.turn_off: open
|
|
|
|
- switch.turn_off: close
|
2018-06-13 22:58:46 +02:00
|
|
|
optimistic: true
|
|
|
|
|
|
|
|
See Also
|
2018-08-24 22:44:01 +02:00
|
|
|
--------
|
2018-06-13 22:58:46 +02:00
|
|
|
|
|
|
|
- :doc:`/esphomeyaml/guides/automations`
|
|
|
|
- :doc:`/esphomeyaml/components/cover/template`
|
|
|
|
- :doc:`/esphomeyaml/devices/sonoff`
|
|
|
|
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/cookbook/dual-r2-cover.rst>`__
|
2018-10-12 16:33:22 +02:00
|
|
|
|
|
|
|
.. disqus::
|