mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-10 11:00:14 -04:00
22 lines
655 B
YAML
22 lines
655 B
YAML
binary_sensor:
|
|
- name: "Chore: Mow"
|
|
unique_id: rest_binary_sensor.chore_mow
|
|
platform: rest
|
|
resource: http://192.168.1.11:9192/api/chores/32
|
|
icon: mdi:mower-bag
|
|
headers:
|
|
GROCY-API-KEY: !secret grocy_api_key
|
|
accept: "application/json"
|
|
value_template: "{{value_json.next_estimated_execution_time}}"
|
|
|
|
sensor:
|
|
- name: "Chore: Mow"
|
|
unique_id: rest_sensor.chore_mow
|
|
platform: rest
|
|
resource: http://192.168.1.11:9192/api/chores/32
|
|
icon: mdi:mower-bag
|
|
headers:
|
|
GROCY-API-KEY: !secret grocy_api_key
|
|
accept: "application/json"
|
|
value_template: "{{value_json.next_estimated_execution_time}}"
|