Blueprints help

Please follow Questions Guideline #11 by formatting code blocks properly including proper indentation. Otherwise, there is no way for us to know if issues are being caused by format issues.

ChatGPT and other LLMs are bullshit engines that are very bad at anything beyond the most basic Home Assistant configuration. They regularly fail to correctly configure even the simplest automations.

Issues in the posted blueprint:

  1. I’m not completely sure, but I don’t think templates are not allowed in input definitions as you have done in the default values for the messages.

  2. The entity_id key of numeric state conditions do not accept templates. In this case you can just use !input humidity_sensors.

  3. Inputs need to be declared as script variables to be used in templates. (https://community.home-assistant.io/t/blueprints-get-your-input-value-into-a-template/720983)

  4. Be aware that the Device selector used for notify_device will return a device ID which is very unlikely to be the correct thing to append to notify.mobile_app_.

  5. Though the trigger is correctly configured, it will cause the automation to be fired every time the state or any attribute changes value, this will lead to you being flooded with notifications.

1 Like