Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

Allgemein

...

Nach Abschluss der Installation ist die Weboberfläche unter der URL http://<IP-Adresse>:8123/ aufrufbar. 

Konfiguration

Die gesamte Konfiguration für Home Assistant wird strukturiert in .yaml Dateien abgelegt und kann mit einem Texteditor bearbeitet werden.

...

Codeblock
titleHome Assistant - configuration.yaml
device_tracker:
  - platform: bluetooth_le_tracker
 
notify:
  - name: loxone_presence_home
    platform: rest
    resource: http://<Loxone HASS User>Benutzer>:<Loxone HASS Password>@<LoxonePasswort>@<Loxone Miniserver IP-Adress>/dev/sps/io/presence/on
  - name: loxone_presence_away
    platform: rest
    resource: http://<Loxone HASS User>Benutzer>:<Loxone HASS Password>@<LoxonePasswort>@<Loxone Miniserver IP-Adress>/dev/sps/io/presence/off
 
automation:
  - alias: Loxone Presence Home
    hide_entity: True
    trigger:
      - platform: state
        entity_id: device_tracker.gigaset_gtag
        state: 'home'
    action:
      service: notify.loxone_presence_home
      data:
        message: I'm home
  - alias: Loxone Presence Away
    hide_entity: True
    trigger:
      - platform: state
        entity_id: device_tracker.gigaset_gtag
        state: 'not_home'
    action:
      service: notify.loxone_presence_away
      data:
        message: I'm away

...