I am having trouble getting pushover notifications set up in 0.80.2, any ideas what I am doing wrong? I am trying to get my plant sensors to notify me when my plants need water, but when it triggers I get this error:
[homeassistant.helpers.script] Script Vanne planter: Running script
[homeassistant.helpers.script] Script Vanne planter: Test condition time: True
[homeassistant.helpers.script] Script Vanne planter: Executing step call service
[homeassistant.core] Unable to find service notify/pushover
my configuration.yaml has this entry:
notify:
platform: pushover
api_key: -
user_key: -
and automations.yaml has this:
- alias: 'Vanne planter'
initial_state: 'off'
trigger:
platform: numeric_state
entity_id: sensor.plant_1_brightness
below: 8000
action:
- condition: time
after: '00:00:00'
before: '23:59:00'
- service: notify.pushover
data:
message: "test"
title: "test"
Home Assistant running in Container Station on a QNAP nas.
Any help would be awesome 