Difference between revisions of "LouvreTec"

From Simon's Help System
Jump to navigation Jump to search
(Created page with "=LouvreTec= The Nodo device was purchased from the Netherlands (https://www.nodo-shop.nl/nl/21-rflink-gateway) This uses an Arduino Mega 2560 board and adds a 443MHz radio file:rflink.jpg There is native support for this device in home assistant. Search the /dev/serial/by-id/ folder to identify the name. It will also show any simlink into tty. In my case this was /dev/ttyACM0 Follow the instructions at https://github.com/filipmaelbrancke/ha-rflink-rts to pair...")
 
 
Line 1: Line 1:
=LouvreTec=
The Nodo device was purchased from the Netherlands (https://www.nodo-shop.nl/nl/21-rflink-gateway)
The Nodo device was purchased from the Netherlands (https://www.nodo-shop.nl/nl/21-rflink-gateway)
This uses an Arduino Mega 2560 board and adds a 443MHz radio
This uses an Arduino Mega 2560 board and adds a 443MHz radio

Latest revision as of 13:50, 28 August 2023

The Nodo device was purchased from the Netherlands (https://www.nodo-shop.nl/nl/21-rflink-gateway) This uses an Arduino Mega 2560 board and adds a 443MHz radio

Rflink.jpg

There is native support for this device in home assistant. Search the /dev/serial/by-id/ folder to identify the name. It will also show any simlink into tty. In my case this was /dev/ttyACM0

Follow the instructions at https://github.com/filipmaelbrancke/ha-rflink-rts to pair with the existing somfy controller Note the device RTS name, in my case 0A0A0A

In configuration.yaml add:

rflink
  port: /dev/ttyACM0

Then create a cover for the shutters

cover:
  - platform: rflink
    devices:
      RTS_0A0A0A_0:
        name: Louvertec

Note the final '-0' is added to the address as this signifies to use the first device linked to 0A0A0A

Cover

Create a new cover in Lovelace.

type: entities
square: false
title: Louvertec
entities:
  - type: section
  - type: custom:paper-buttons-row
    base_config:
      style:
        button:
          margin-left: 1px
          margin-right: 1px
    buttons:
      - entity: cover.louvretec
        icon: mdi:arrow-left-bold-outline
        name: close
        layout: icon_name
        tap_action:
          action: call-service
          service: cover.close_cover
          service_data:
            entity_id: cover.louvretec
      - entity: cover.louvretec
        icon: mdi:stop
        name: stop
        layout: icon_name
        tap_action:
          action: call-service
          service: cover.stop_cover
          service_data:
            entity_id: cover.louvretec
      - entity: cover.louvretec
        icon: mdi:arrow-right-bold-outline
        name: open
        layout: icon_name
        tap_action:
          action: call-service
          service: cover.open_cover
          service_data:
            entity_id: cover.louvretec

Louvertec.png