You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've followed the instructions to install Mealie on HOASS as an add-on. I've managed to get it running but not sure what I need/how to do the next steps in the readme. Is there anyone able to help point me in the right direction. See below the instructions from the readme #file.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've followed the instructions to install Mealie on HOASS as an add-on. I've managed to get it running but not sure what I need/how to do the next steps in the readme. Is there anyone able to help point me in the right direction. See below the instructions from the readme #file.
Create a restful sensor
sensor:
platform: rest
resource: "http://###.###.#.#:9090/api/groups/mealplans/today"
method: GET
name: Mealie todays meal
headers:
Authorization: Bearer
value_template: "{{ value_json.value }}"
json_attributes_path: $..recipe
json_attributes:
Create template sensors from attributes
name: TodaysDinner
unique_id: sensor.TodaysDinner
state: "{{ state_attr('sensor.mealie_todays_meal', 'name') }}"
name: TodaysDinnerDescription
unique_id: sensor.DinnerDescription
state: "{{ state_attr('sensor.mealie_todays_meal', 'description') }}"
name: TodaysDinnerSlug
unique_id: sensor.DinnerSlug
state: "{{ state_attr('sensor.mealie_todays_meal', 'slug') }}"
name: TodaysDinnerID
unique_id: sensor.DinnerID
state: "{{ state_attr('sensor.mealie_todays_meal', 'id') }}"
Beta Was this translation helpful? Give feedback.
All reactions