accu_allergies
accu_allergies copied to clipboard
Cant get this working
Hi All,
I set this up in HA and it was working fine, but now it doesn't show any data, my app.yaml looks like this:
accu_allergies: module: accu_allergies class: Get_Accu_Allergies ACC_FILE: "./allergies" ACC_FLAG: "input_boolean.get_allergies_data" DEB_FLAG: "input_boolean.reset_allergies_sensor" URL_ID: "328298" URL_CITY: "pinner" URL_COUNTRY: "gb" URL_LANG: "en" URL_POSTCODE: "ha5-3" WEB_VER: "APRIL22" # or use "APRIL22"
I also tried setting up the input_booleans but had no luck with that. input_boolean.yaml looks like this (as i have this in my configuration.yaml input_boolean: !include input_boolean.yaml ):
load_allergies_data:
get_allergies_data:
and my 2 automations look like this
alias: Accuweather Allergies Data description: '' trigger:
- platform: state
entity_id:
- input_boolean.get_allergies_data to: 'off' condition: [] action:
- service: input_boolean.turn_on target: entity_id: input_boolean.load_allergies_data data: {} mode: single
alias: Accuweather Get Allergies Data description: '' trigger:
- platform: time at: '16:00:00'
- platform: time at: '17:30:00' condition: [] action:
- service: input_boolean.turn_on data: {} target: entity_id: input_boolean.get_allergies_data mode: single
Anything i am doing wrong ?