FutureTense / lock-manager

Home Assistant Lock Manager
54 stars 19 forks source link

Unable to find service script/frontdoor_manual_notify #12

Closed zhazell closed 4 years ago

zhazell commented 4 years ago

Hello,

I've looked everywhere at the files and cannot find a service "manual_notify" being created. It seems in order to get any of the notifications, the automations and other services rely on this server.

homeassistant.exceptions.ServiceNotFound: Unable to find service script/frontdoor_manual_notify

image

Running HomeAssistant 0.115

firstof9 commented 4 years ago

You create the script yourself :)

Here's an example:

frontdoor_manual_notify:
  mode: parallel
  sequence:
    - service: notify.phones
      data_template:
        title: "{{ title }}"
        message: "{{ message }}"
zhazell commented 4 years ago

Perfect! I was able to create it and now the automations work to notify.

zhazell commented 4 years ago

I had to change this to - service: notify.notify as notify.phones did not work for me (doesn't seem to exist as a valid service?)

firstof9 commented 4 years ago

It's an example, you're suppose to change it to whatever notification service you've setup 😄