Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.82 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.82 KB

Becker cover support for Home Assistant

A native home assistant component to control becker RF shutters with a Becker Centronic USB Stick. It uses pybecker. The becker integration currently support to

  • Open a Cover
  • Close a Cover
  • Stop a Cover

It as well support value template if you wan to use sensors to set the current state of your cover

Installation

Copy the different sources in custom_components folder of your hass configuration directory

Configuration

Once installed you can add a new cover configuration in your HA configuration

cover:
  - platform: becker
    covers:
      kitchen:
        friendly_name: "Kitchen Cover"
        channel: "1"
      bedroom:
        friendly_name: "Bedroom Cover"
        channel: "2"
        value_template: "{{ states('sensor.bedroom_sensor_value') | float > 22 }}"

Note: The channel needs to be a string!

Note

The component does not support pairing for the moment. It means that your different shuters must be already paired with your USB stick You can achieve this prior to the installation in home assistant by using pybecker with the following command Of course you have to put your shutter in pairing mode before. This is generally done by holding the programming button of your sender until you hear a "clac" noise

pybecker -a PAIR -c <CHANNEL_ID>

TODO

  • Find a solution to pair new shutters from HA (if you have ideas you are welcome)

Support

Donate

This integration was developed for my home integration. Even if I tried to make it as generic as possible, it could be that you have to adapt it a bit for your own integration.