Hello
I am attempting to setup notifications. I have added Notify to my
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
tts:
- platform: google_translate
http:
base_url: https://#####.duckdns.org
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
sun:
mobile_app:
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
sensor test: !include_dir_list ./sensors
homeassistant:
# customize: !include customize.yaml
customize: !include customize_glob.yaml
camera:
- platform: ffmpeg
name: Kitchen Camera
input: rtsp://admin:[email protected]:554/H.264
device_tracker:
- platform: linksys_smart
host: 192.168.0.1
notify:
- name: pushbullet_message
platform: pushbullet
api_key: !secret pushbullet_api_key
google:
client_id: !secret catchall_client_id
client_secret: !secret catchall_client_secret
spotify:
client_id: !secret spotify_client_id
client_secret: !secret spotify_client_secret"
When I used developer tools and try to send a test message I get the following error message
Failed to call service notify/notify. expected dict for dictionary value @ data['service_data']. Got 'Test Message'
Any ideas/advice on what I am doing wrong?
thanks