I’ve got a strange problem, I’m using PC with Ubuntu 16.04 and the Python 2.7.12 virtual environment for HASS 0.63.3 as here.
I’ve been manually starting HA in the past with:
sudo su -s /bin/bash homeassistant
source /srv/homeassistant/bin/activate
hass
Yesterday I setup Autostart using systemd from here and followed this to the letter with no issues. Now, the majority of things are still working as before, but several of my automations seem to have stopped working.
These were all working a couple of days ago and nothing else has changed… Both the below components load on startup… can’t see any errors… anyone with any ideas??
Thanks in advance…
The Doorbird event does not seem to happen when the button it pushed:
- alias: Doorbird ring
trigger:
- platform: event
event_type: doorbird_doorbell
The lights no longer turn on when Plex is paused…
- alias: "Lounge Room Media player paused"
trigger:
- platform: state
entity_id: media_player.tv_ua65js8000
from: 'playing'
to: 'paused'
condition:
- condition: state
entity_id: sun.sun
state: 'below_horizon'
action:
service: light.turn_on
data:
entity_id: light.tv_4
data:
brightness_pct: 20