I’m running 0.88.1 and my notify.ios is no longer working. I updated to 0.88.0 and all went bad,
I ended up having to re-image the microSD card and start from scratch. device_tracker is working getting away and home updates. Another thing, when I open the Home Assistant App. Both components and platform have “X”'s and I no longer can toggle to check marks. Any help would be greatly appreciated.
Here is my configuration.yaml entry.
asuswrt:
host: !secret asus_ip
username: !secret asus_username
password: !secret asus_password
device_tracker:
- platform: asuswrt
#interval_seconds: 10
consider_home: 60
new_device_defaults:
track_new_devices: False
hide_if_away: False
Here is test script for sending push notifications when I toggle a wemo switch on/off.
- alias: Notiry iOS On
trigger:
platform: state
entity_id: switch.bookcase
to: 'on'
#condition:
#- condition: state
#entity_id: device_tracker.iphone7plus
#state: home
action:
service: notify.ios_iphone7plus
data:
message: water has been detected in the garage
data:
push:
badge: 0
sound: "US-EN-Alexa-Water-Detected-In-Garage.wav"
- alias: Test Push Notifications Off
trigger:
platform: state
entity_id: switch.bookcase
to: 'off'
#condition:
#- condition: state
#entity_id: device_tracker.iphone7plus
#state: not_home
action:
service: notify.ios_iphone7plus
data:
message: water has been detected in the kichen
data:
push:
badge: 0
sound: "US-EN-Alexa-Water-Detected-In-Kitchen.wav"