Inital Commit
This commit is contained in:
61
configuration.yaml
Normal file
61
configuration.yaml
Normal file
@@ -0,0 +1,61 @@
|
||||
# Configure a default setup of Home Assistant (frontend, api, etc)
|
||||
default_config:
|
||||
|
||||
frontend:
|
||||
themes: !include_dir_merge_named themes
|
||||
|
||||
homeassistant:
|
||||
customize: !include customize.yaml
|
||||
packages: !include_dir_named packages
|
||||
|
||||
#group: !include groups.yaml
|
||||
group: !include_dir_merge_named group/
|
||||
automation: !include_dir_merge_list automations/
|
||||
automation UI: !include automations.yaml
|
||||
script: !include_dir_merge_named scripts/
|
||||
#script UI: !include scripts.yaml
|
||||
scene: !include scenes.yaml
|
||||
#mqtt merged: !include_dir_merge_named mqtt/
|
||||
#sensor merged: !include_dir_merge_list sensor/
|
||||
sensor: !include_dir_merge_list sensor/
|
||||
|
||||
logger:
|
||||
default: info
|
||||
logs:
|
||||
custom_components.hacs: debug
|
||||
custom_components.evnex: debug
|
||||
evnex: debug
|
||||
|
||||
# mqtt broker
|
||||
#mqtt:
|
||||
# broker: !secret mqtt1_broker
|
||||
# port: !secret mqtt1_port
|
||||
|
||||
device_tracker:
|
||||
- platform: bluetooth_le_tracker
|
||||
|
||||
input_boolean:
|
||||
foxhole_occupied:
|
||||
name: Foxhole Guest Occupied
|
||||
icon: mdi:briefcase-plus-outline
|
||||
quiet_time:
|
||||
name: Quiet time for no notifications
|
||||
icon: mdi:shield-moon
|
||||
away_occupied_routine:
|
||||
name: Automation for Lights etc when away
|
||||
icon: mdi:shield-lock
|
||||
|
||||
rest_command:
|
||||
chores1_request:
|
||||
url: !secret grocy_api_uri_chore6
|
||||
method: PUT
|
||||
headers:
|
||||
accept: "*/*"
|
||||
GROCY-API-KEY: !secret grocy_api_key
|
||||
content_type: "application/json"
|
||||
payload: '{
|
||||
"name" : "{{ name }}" ,
|
||||
"next_execution_assigned_to_user_id" : "{{ assigned_to }}"
|
||||
}'
|
||||
# payload: '{"name" : "{{ name }}" , "next_estimated_execution_time" : "{{ next_time }}", "next_execution_assigned_to_user_id" : "{{ assigned_to }}" }'
|
||||
verify_ssl: false
|
Reference in New Issue
Block a user