As I’m using Vera to control most of my zwave stuff I was holding of to do the upgrade from .39.x. Yesterday I did upgrade to 43.1 and renamed my over 70 Vera devices.
All works fine and I’m enjoying all the latest and greatest again. However my home/away automation (see below) stopped working. I did not find any breaking changes relate to this in the docs from .39 > .43 and any of the versions in between.
I can still trigger them manually and it works. Also the device trackers all still work individually.
Any ideas?
- alias: "Someone home"
trigger:
- platform: state
entity_id: group.all_devices
from: "not_home"
to: "home"
action:
- service: input_select.select_option
data:
entity_id: input_select.Occupancy
option: "Home"
- service: input_select.select_option
data:
entity_id: input_select.alarm
option: "None"
- service: switch.turn_on
data:
entity_id: switch.vera_home_mode
- service: alarm_control_panel.alarm_disarm
data:
entity_id: alarm_control_panel.ha_alarm
- service: switch.turn_on
data:
entity_id: switch.otg_resume
- delay:
minutes: 1
- service: switch.turn_off
data:
entity_id: switch.otg_resume
- alias: "Away"
trigger:
- platform: state
entity_id: group.all_devices
from: "home"
to: "not_home"
for:
minutes: 3
action:
- service: notify.mypushover
data:
title: "Presence"
message: "All Away"
target: ""
- service: input_select.select_option
data:
entity_id: input_select.Occupancy
option: "Away"
- service: input_select.select_option
data:
entity_id: input_select.alarm
option: "Away"
- service: scene.turn_on
data:
entity_id: scene.all_away
- service: climate.set_temperature
data:
entity_id: climate.opentherm_gateway_117
temperature: '15'
- service: switch.turn_off
data:
entity_id: switch.vera_home_mode
- service: alarm_control_panel.alarm_arm_away
data:
entity_id: alarm_control_panel.ha_alarm
- service: tts.google_say
entity_id: media_player.family_room_home, media_player.kitchen_home
data_template:
message: "Alarm has been armed. Alarm will sound when motion is detected"
cache: false