diff --git a/configuration.yaml b/configuration.yaml index 7a1dd02..50197b6 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -14,366 +14,6 @@ homeassistant: customize: !include customize.yaml packages: !include_dir_named packages -# Show links to resources in log and frontend -#introduction: - -# Enables the frontend -frontend: - -# Enables configuration UI -config: - -# Uncomment this if you are using SSL/TLS, running in Docker container, etc. -http: - base_url: alacenaha.duckdns.org:8123 - -# Checks for available updates -# Note: This component will send some information about your system to -# the developers to assist with development of Home Assistant. -# For more information, please see: -# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/ -updater: - # Optional, allows Home Assistant developers to focus on popular components. - # include_used_components: true - -# Discover some devices automatically -discovery: - ignore: - - yeelight - -# Allows you to issue voice commands from the frontend in enabled browsers -conversation: - -# Enables support for tracking state changes over time -history: -# Sustituye a history -recorder: - purge_keep_days: 90 - db_url: !secret db_url - -# View all events in a logbook -logbook: - -logger: - default: warning - logs: - miflora: debug - btlewrap: debug - bluepy: debug - homeassistant.components.mqtt: error - homeassistant.components.zwave: error - homeassistant.components.yeelight: debug - -weather: - -# Enables a map showing the location of tracked devices -map: -system_health: -# Track the sun -sun: - -# Sensors -#sensor: - # Weather prediction - # - platform: yr - - #mqtt: !include mqtt.yaml -# Text to speech -tts: - - platform: google - -# Cloud -cloud: - group: !include groups.yaml automation: !include automations.yaml script: !include scripts.yaml - -switch: - - platform: rest - name: "General Luces" - scan_interval: 30 - resource: http://10.10.1.153/relay/0 - body_on: 'turn=on' - body_off: 'turn=off' - timeout: 60 - is_on_template: '{{ value_json.ison == true}}' - headers: - content-type: application/x-www-form-urlencoded - - - platform: rest - name: "General Persianas" - scan_interval: 30 - resource: http://10.10.1.153/relay/1 - body_on: 'turn=on' - body_off: 'turn=off' - timeout : 60 - is_on_template: '{{ value_json.ison == true}}' - headers: - content-type: application/x-www-form-urlencoded - - - platform: rest - name: "General Caldera" - scan_interval: 30 - resource: http://10.10.1.153/relay/2 - body_on: 'turn=on' - body_off: 'turn=off' - timeout : 60 - is_on_template: '{{ value_json.ison == true}}' - headers: - content-type: application/x-www-form-urlencoded - - - platform: rest - name: "Coche Eléctrico" - scan_interval: 30 - resource: http://10.10.1.153/relay/3 - body_on: 'turn=on' - body_off: 'turn=off' - timeout : 60 - is_on_template: '{{ value_json.ison == true}}' - headers: - content-type: application/x-www-form-urlencoded - - - platform: xiaomi_miio - name: Xiaomi Strip 1 - host: 10.10.1.145 - token: fe3b88c2fdf9d129e30c8cd945ed4461 - - - platform: xiaomi_miio - name: Xiaomi Strip 2 - host: 10.10.1.146 - token: 3e1fea7691567cf1d5241f02ebb989ee - - -zwave: - usb_path: /dev/ttyACM1 - - -google_assistant: - project_id: homeassistant-8c53b - api_key: AIzaSyDhRdUJU0pHmxxVP0IYu-BKNKDrf1_ivlM - expose_by_default: true - exposed_domains: - - switch - - light - - media_player - entity_config: - light.yeelight_ceiling_7c49ebae71f9: - expose: true - name: Luz Habitación Estudio - -binary_sensor: - - platform: mqtt - name: "Puerta Entrada" #Puerta de Entrada - payload_on: "A2670A" - payload_off: "A2670E" - device_class: opening - state_topic: "sonoffbridge/tele/RESULT" - value_template: "{{value_json.RfReceived.Data}}" - - - platform: mqtt - name: "Puerta Tendedero" - payload_on: "0D7F0A" - payload_off: "0D7F0E" - device_class: opening - state_topic: "sonoffbridge/tele/RESULT" - value_template: "{{value_json.RfReceived.Data}}" - - - platform: mqtt - name: "Movimiento Habitación Estudio" - payload_on: "2A00BC" - payload_off: "2A00BCoff" - device_class: motion - state_topic: "sonoffbridge/tele/RESULT" - value_template: "{{value_json.RfReceived.Data}}" - off_delay: 8 - - - platform: mqtt - name: "Movimiento Pasillo Habitaciones" - payload_on: "5D559C" - payload_off: "5D559Coff" - device_class: motion - state_topic: "sonoffbridge/tele/RESULT" - value_template: "{{value_json.RfReceived.Data}}" - off_delay: 8 - - - platform: workday - country: ES - province: MAD - workdays: [mon, tue, wed, thu, fri] - -sensor: - - platform: sql - db_url: !secret db_url - queries: - - name: db_size - query: "SELECT (pg_database_size('homeassistant')/1024/1024) as db_size;" - column: db_size - unit_of_measurement: MB - scan_interval: 120 - - - platform: mqtt - name: "Consumo General Luces" - state_topic: "shellies/shelly4pro-061E6E/relay/0/power" - unit_of_measurement: "W" - - platform: mqtt - name: "Consumo General Persianas" - state_topic: "shellies/shelly4pro-061E6E/relay/1/power" - unit_of_measurement: "W" - - platform: mqtt - name: "Consumo General Calefacción" - state_topic: "shellies/shelly4pro-061E6E/relay/2/power" - unit_of_measurement: "W" - - platform: mqtt - name: "Consumo General Coche Eléctrico" - state_topic: "shellies/shelly4pro-061E6E/relay/3/power" - unit_of_measurement: "W" - - platform: mqtt - name: "Energia General Luces" - state_topic: "shellies/shelly4pro-061E6E/relay/0/energy" - unit_of_measurement: "KWh" - value_template: "{{ value | multiply(0.01) | float | round(2)}}" - - platform: mqtt - name: "Energia General Persianas" - state_topic: "shellies/shelly4pro-061E6E/relay/1/energy" - unit_of_measurement: "KWh" - value_template: "{{ value | multiply(0.01) | float | round(2)}}" - - platform: mqtt - name: "Energia General Calefacción" - state_topic: "shellies/shelly4pro-061E6E/relay/2/energy" - unit_of_measurement: "KWh" - value_template: "{{ value | multiply(0.01) | float | round(2)}}" - - platform: mqtt - name: "Energia General Coche Eléctrico" - state_topic: "shellies/shelly4pro-061E6E/relay/3/energy" - unit_of_measurement: "KWh" - value_template: "{{ value | multiply(0.01) | float | round(2)}}" - - #Sensor del horno -# - platform: mqtt -# name: "Consumo Horno Actual" -# state_topic: "tele/SonoffHorno/SENSOR" -# value_template: "{{value_json['ENERGY'].Power }}" -# qos: 1 -# unit_of_measurement : "W" - -# - platform: mqtt -# name: "Voltaje Horno" -# state_topic: "tele/SonoffHorno/SENSOR" -# value_template: "{{ value_json['ENERGY'].Voltage }}" -# qos: 1 -# unit_of_measurement : "V" - -# - platform: mqtt -# name: "Amperios Horno" -# state_topic: "tele/SonoffHorno/SENSOR" -# value_template: "{{ value_json['ENERGY'].Current }}" -# qos: 1 -# unit_of_measurement : "A" - -# - platform: mqtt -# name: "Consumo Horno Hoy" -# state_topic: "tele/SonoffHorno/SENSOR" -# value_template: "{{ value_json['ENERGY'].Today }}" -# qos: 1 -# unit_of_measurement : "kWh" - -# - platform: mqtt -# name: "Consumo Horno Ayer" -# state_topic: "tele/SonoffHorno/SENSOR" -# value_template: "{{ value_json['ENERGY'].Yesterday }}" -# qos: 1 -# unit_of_measurement : "kWh" - -# - platform: mqtt -# name: "Consumo Horno Total" -# state_topic: "tele/SonoffHorno/SENSOR" -# value_template: "{{ value_json['ENERGY'].Total }}" -# qos: 1 -# unit_of_measurement : "kWh" - - #Sensor Usos Varios 2 -# - platform: mqtt -# name: "Consumo Usos Varios 2 Actual" -# state_topic: "tele/Sonoffuv2/SENSOR" -# value_template: "{{value_json['ENERGY'].Power }}" -# qos: 1 -# unit_of_measurement : "W" - -# - platform: mqtt -# name: "Voltaje Usos Varios 2" -# state_topic: "tele/Sonoffuv2/SENSOR" -# value_template: "{{ value_json['ENERGY'].Voltage }}" -# qos: 1 -# unit_of_measurement : "V" - -# - platform: mqtt -# name: "Amperios Usos Varios 2" -# state_topic: "tele/Sonoffuv2/SENSOR" -# value_template: "{{ value_json['ENERGY'].Current }}" -# qos: 1 -# unit_of_measurement : "A" - -# - platform: mqtt -# name: "Consumo Usos Varios 2 Hoy" -# state_topic: "tele/Sonoffuv2/SENSOR" -# value_template: "{{ value_json['ENERGY'].Today }}" -# qos: 1 -# unit_of_measurement : "kWh" - -# - platform: mqtt -# name: "Consumo Usos Varios 2 Ayer" -# state_topic: "tele/Sonoffuv2/SENSOR" -# value_template: "{{ value_json['ENERGY'].Yesterday }}" -# qos: 1 -# unit_of_measurement : "kWh" - -# - platform: mqtt -# name: "Consumo Usos Varios 2 Total" -# state_topic: "tele/Sonoffuv2/SENSOR" -# value_template: "{{ value_json['ENERGY'].Total }}" -# qos: 1 -# unit_of_measurement : "kWh" - -light: - - platform: xiaomi_miio - name: Luz Entrada Dormitorio - host: 10.10.1.191 - token: f7a017cf2a7df0f64f3866d091ec24e1 - model: philips.light.downlight - - - platform: xiaomi_miio - name: Luz Habitaciones Pasillo - host: 10.10.1.192 - token: f6743cf3e3639ac42870bed17dfc5fc0 - model: philips.light.downlight - - - platform: xiaomi_miio - name: Luz Estudio Pasillo - host: 10.10.1.193 - token: 7026ea559226f23e1ed3bff25adac20d - model: philips.light.downlight - - - platform: xiaomi_miio - name: Luz Entrada Pasillo - host: 10.10.1.194 - token: 1f7148e6ecadea293937b34565f2035c - model: philips.light.downlight - - - platform: xiaomi_miio - name: Luz Tendedero - host: 10.10.1.195 - token: 7b7b7720161907220116d261372161fb - model: philips.light.downlight - - - platform: yeelight - devices: - 10.10.1.161: - name: Luz Habitacion Estudio - 10.10.1.162: - name: Luz Habitacion Noha - 10.10.1.163: - name: Luz Habitacion Mia - 10.10.1.164: - name: Luz Habitacion Principal - diff --git a/packages/apertura_puerta_entrada.yaml b/packages/apertura_puerta_entrada.yaml new file mode 100644 index 0000000..3e71e61 --- /dev/null +++ b/packages/apertura_puerta_entrada.yaml @@ -0,0 +1,9 @@ +binary_sensor: + - platform: mqtt + name: "Puerta Entrada" #Puerta de Entrada + payload_on: "A2670A" + payload_off: "A2670E" + device_class: opening + state_topic: "sonoffbridge/tele/RESULT" + value_template: "{{value_json.RfReceived.Data}}" + diff --git a/packages/apertura_puerta_tendedero.yaml b/packages/apertura_puerta_tendedero.yaml new file mode 100644 index 0000000..b5519f2 --- /dev/null +++ b/packages/apertura_puerta_tendedero.yaml @@ -0,0 +1,8 @@ +binary_sensor: + - platform: mqtt + name: "Puerta Tendedero" + payload_on: "0D7F0A" + payload_off: "0D7F0E" + device_class: opening + state_topic: "sonoffbridge/tele/RESULT" + value_template: "{{value_json.RfReceived.Data}}" diff --git a/packages/basededatos_megas.yaml b/packages/basededatos_megas.yaml new file mode 100644 index 0000000..a5fad63 --- /dev/null +++ b/packages/basededatos_megas.yaml @@ -0,0 +1,9 @@ +sensor: + - platform: sql + db_url: !secret db_url + queries: + - name: db_size + query: "SELECT (pg_database_size('homeassistant')/1024/1024) as db_size;" + column: db_size + unit_of_measurement: MB + scan_interval: 120 diff --git a/packages/calendario_trabajo.yaml b/packages/calendario_trabajo.yaml new file mode 100644 index 0000000..b0300b0 --- /dev/null +++ b/packages/calendario_trabajo.yaml @@ -0,0 +1,5 @@ +binary_sensor: + - platform: workday + country: ES + province: MAD + workdays: [mon, tue, wed, thu, fri] diff --git a/packages/cloud.yaml b/packages/cloud.yaml new file mode 100644 index 0000000..45089d4 --- /dev/null +++ b/packages/cloud.yaml @@ -0,0 +1,2 @@ +cloud: + diff --git a/packages/coche_electrico.yaml b/packages/coche_electrico.yaml new file mode 100644 index 0000000..1b6f76a --- /dev/null +++ b/packages/coche_electrico.yaml @@ -0,0 +1,25 @@ +switch: + - platform: rest + name: "Coche Eléctrico" + scan_interval: 30 + resource: http://10.10.1.153/relay/3 + body_on: 'turn=on' + body_off: 'turn=off' + timeout : 60 + is_on_template: '{{ value_json.ison == true}}' + headers: + content-type: application/x-www-form-urlencoded + +sensor: + - platform: mqtt + name: "Consumo General Coche Eléctrico" + state_topic: "shellies/shelly4pro-061E6E/relay/3/power" + unit_of_measurement: "W" + +sensor: + - platform: mqtt + name: "Energia General Coche Eléctrico" + state_topic: "shellies/shelly4pro-061E6E/relay/3/energy" + unit_of_measurement: "KWh" + value_template: "{{ value | multiply(0.01) | float | round(2)}}" + diff --git a/packages/config.yaml b/packages/config.yaml new file mode 100644 index 0000000..2e5a330 --- /dev/null +++ b/packages/config.yaml @@ -0,0 +1,2 @@ +# Enables configuration UI +config: diff --git a/packages/conversation.yaml b/packages/conversation.yaml new file mode 100644 index 0000000..17f6112 --- /dev/null +++ b/packages/conversation.yaml @@ -0,0 +1,2 @@ +# Allows you to issue voice commands from the frontend in enabled browsers +#conversation: diff --git a/packages/discover.yaml b/packages/discover.yaml new file mode 100644 index 0000000..4d166a0 --- /dev/null +++ b/packages/discover.yaml @@ -0,0 +1,4 @@ +# Discover some devices automatically +discovery: + ignore: + - yeelight diff --git a/packages/frontend.yaml b/packages/frontend.yaml new file mode 100644 index 0000000..14a14b0 --- /dev/null +++ b/packages/frontend.yaml @@ -0,0 +1,2 @@ +# Enables the frontend +frontend: diff --git a/packages/general_caldera.yaml b/packages/general_caldera.yaml new file mode 100644 index 0000000..87f0b95 --- /dev/null +++ b/packages/general_caldera.yaml @@ -0,0 +1,25 @@ +switch: + - platform: rest + name: "General Caldera" + scan_interval: 30 + resource: http://10.10.1.153/relay/2 + body_on: 'turn=on' + body_off: 'turn=off' + timeout : 60 + is_on_template: '{{ value_json.ison == true}}' + headers: + content-type: application/x-www-form-urlencoded + +sensor: + - platform: mqtt + name: "Consumo General Calefacción" + state_topic: "shellies/shelly4pro-061E6E/relay/2/power" + unit_of_measurement: "W" + +sensor: + - platform: mqtt + name: "Energia General Calefacción" + state_topic: "shellies/shelly4pro-061E6E/relay/2/energy" + unit_of_measurement: "KWh" + value_template: "{{ value | multiply(0.01) | float | round(2)}}" + diff --git a/packages/general_luces.yaml b/packages/general_luces.yaml new file mode 100644 index 0000000..5eff2db --- /dev/null +++ b/packages/general_luces.yaml @@ -0,0 +1,25 @@ +switch: + - platform: rest + name: "General Luces" + scan_interval: 30 + resource: http://10.10.1.153/relay/0 + body_on: 'turn=on' + body_off: 'turn=off' + timeout: 60 + is_on_template: '{{ value_json.ison == true}}' + headers: + content-type: application/x-www-form-urlencoded + +sensor: + - platform: mqtt + name: "Consumo General Luces" + state_topic: "shellies/shelly4pro-061E6E/relay/0/power" + unit_of_measurement: "W" + +sensor: + - platform: mqtt + name: "Energia General Luces" + state_topic: "shellies/shelly4pro-061E6E/relay/0/energy" + unit_of_measurement: "KWh" + value_template: "{{ value | multiply(0.01) | float | round(2)}}" + diff --git a/packages/general_persianas.yaml b/packages/general_persianas.yaml new file mode 100644 index 0000000..37d0797 --- /dev/null +++ b/packages/general_persianas.yaml @@ -0,0 +1,25 @@ +switch: + - platform: rest + name: "General Persianas" + scan_interval: 30 + resource: http://10.10.1.153/relay/1 + body_on: 'turn=on' + body_off: 'turn=off' + timeout : 60 + is_on_template: '{{ value_json.ison == true}}' + headers: + content-type: application/x-www-form-urlencoded + +sensor: + - platform: mqtt + name: "Consumo General Persianas" + state_topic: "shellies/shelly4pro-061E6E/relay/1/power" + unit_of_measurement: "W" + +sensor: + - platform: mqtt + name: "Energia General Persianas" + state_topic: "shellies/shelly4pro-061E6E/relay/1/energy" + unit_of_measurement: "KWh" + value_template: "{{ value | multiply(0.01) | float | round(2)}}" + diff --git a/packages/google_assistant.yaml b/packages/google_assistant.yaml new file mode 100644 index 0000000..f2edf9c --- /dev/null +++ b/packages/google_assistant.yaml @@ -0,0 +1,14 @@ +google_assistant: + project_id: homeassistant-8c53b + api_key: AIzaSyDhRdUJU0pHmxxVP0IYu-BKNKDrf1_ivlM + expose_by_default: true + exposed_domains: + - switch + - light + - media_player + - cover + entity_config: + light.yeelight_ceiling_7c49ebae71f9: + expose: true + name: Luz Habitación Estudio + diff --git a/packages/history.yaml b/packages/history.yaml new file mode 100644 index 0000000..c0c8dd0 --- /dev/null +++ b/packages/history.yaml @@ -0,0 +1,3 @@ +# Enables support for tracking state changes over time +history: + diff --git a/packages/http.yaml b/packages/http.yaml new file mode 100644 index 0000000..b4f4555 --- /dev/null +++ b/packages/http.yaml @@ -0,0 +1,3 @@ +# Uncomment this if you are using SSL/TLS, running in Docker container, etc. +http: + base_url: alacenaha.duckdns.org:8123 diff --git a/packages/introduction.yaml b/packages/introduction.yaml new file mode 100644 index 0000000..29363ef --- /dev/null +++ b/packages/introduction.yaml @@ -0,0 +1,2 @@ +# Show links to resources in log and frontend +#introduction: diff --git a/packages/logbook.yaml b/packages/logbook.yaml new file mode 100644 index 0000000..2dc5a1c --- /dev/null +++ b/packages/logbook.yaml @@ -0,0 +1,2 @@ +# View all events in a logbook +logbook: diff --git a/packages/logger.yaml b/packages/logger.yaml new file mode 100644 index 0000000..f6db6f8 --- /dev/null +++ b/packages/logger.yaml @@ -0,0 +1,9 @@ +logger: + default: warning + logs: + miflora: debug + btlewrap: debug + bluepy: debug + homeassistant.components.mqtt: error + homeassistant.components.zwave: error + homeassistant.components.yeelight: debug diff --git a/packages/luz_entrada_dormitorio_principal.yaml b/packages/luz_entrada_dormitorio_principal.yaml new file mode 100644 index 0000000..2d3cdc7 --- /dev/null +++ b/packages/luz_entrada_dormitorio_principal.yaml @@ -0,0 +1,7 @@ +light: + - platform: xiaomi_miio + name: Luz Entrada Dormitorio + host: 10.10.1.191 + token: f7a017cf2a7df0f64f3866d091ec24e1 + model: philips.light.downlight + diff --git a/packages/luz_entrada_pasillo.yaml b/packages/luz_entrada_pasillo.yaml new file mode 100644 index 0000000..496f4ff --- /dev/null +++ b/packages/luz_entrada_pasillo.yaml @@ -0,0 +1,6 @@ +light: + - platform: xiaomi_miio + name: Luz Entrada Pasillo + host: 10.10.1.194 + token: 1f7148e6ecadea293937b34565f2035c + model: philips.light.downlight diff --git a/packages/luz_estudio_pasillo.yaml b/packages/luz_estudio_pasillo.yaml new file mode 100644 index 0000000..009f048 --- /dev/null +++ b/packages/luz_estudio_pasillo.yaml @@ -0,0 +1,6 @@ +light: + - platform: xiaomi_miio + name: Luz Estudio Pasillo + host: 10.10.1.193 + token: 7026ea559226f23e1ed3bff25adac20d + model: philips.light.downlight diff --git a/packages/luz_habitaciones_pasillo.yaml b/packages/luz_habitaciones_pasillo.yaml new file mode 100644 index 0000000..462c127 --- /dev/null +++ b/packages/luz_habitaciones_pasillo.yaml @@ -0,0 +1,6 @@ +light: + - platform: xiaomi_miio + name: Luz Habitaciones Pasillo + host: 10.10.1.192 + token: f6743cf3e3639ac42870bed17dfc5fc0 + model: philips.light.downlight diff --git a/packages/luz_tendedero.yaml b/packages/luz_tendedero.yaml new file mode 100644 index 0000000..2b12187 --- /dev/null +++ b/packages/luz_tendedero.yaml @@ -0,0 +1,6 @@ +light: + - platform: xiaomi_miio + name: Luz Tendedero + host: 10.10.1.195 + token: 7b7b7720161907220116d261372161fb + model: philips.light.downlight diff --git a/packages/luz_yeeligth.yaml b/packages/luz_yeeligth.yaml new file mode 100644 index 0000000..8f9eb70 --- /dev/null +++ b/packages/luz_yeeligth.yaml @@ -0,0 +1,11 @@ +light: + - platform: yeelight + devices: + 10.10.1.161: + name: Luz Habitacion Estudio + 10.10.1.162: + name: Luz Habitacion Noha + 10.10.1.163: + name: Luz Habitacion Mia + 10.10.1.164: + name: Luz Habitacion Principal diff --git a/packages/map.yaml b/packages/map.yaml new file mode 100644 index 0000000..8784a72 --- /dev/null +++ b/packages/map.yaml @@ -0,0 +1,2 @@ +# Enables a map showing the location of tracked devices +map: diff --git a/packages/movimiento_habitacion_estudio.yaml b/packages/movimiento_habitacion_estudio.yaml new file mode 100644 index 0000000..edf82c2 --- /dev/null +++ b/packages/movimiento_habitacion_estudio.yaml @@ -0,0 +1,9 @@ +binary_sensor: + - platform: mqtt + name: "Movimiento Habitación Estudio" + payload_on: "2A00BC" + payload_off: "2A00BCoff" + device_class: motion + state_topic: "sonoffbridge/tele/RESULT" + value_template: "{{value_json.RfReceived.Data}}" + off_delay: 8 diff --git a/packages/movimiento_habitacion_principal.yaml b/packages/movimiento_habitacion_principal.yaml new file mode 100644 index 0000000..af21002 --- /dev/null +++ b/packages/movimiento_habitacion_principal.yaml @@ -0,0 +1,10 @@ +binary_sensor: + - platform: mqtt + name: "Movimiento Habitación Principal" + payload_on: "FDE2BC" + payload_off: "FDE2BCoff" + device_class: motion + state_topic: "sonoffbridge/tele/RESULT" + value_template: "{{value_json.RfReceived.Data}}" + off_delay: 8 + diff --git a/packages/movimiento_pasillo_habitaciones.yaml b/packages/movimiento_pasillo_habitaciones.yaml new file mode 100644 index 0000000..b140912 --- /dev/null +++ b/packages/movimiento_pasillo_habitaciones.yaml @@ -0,0 +1,10 @@ +binary_sensor: + - platform: mqtt + name: "Movimiento Pasillo Habitaciones" + payload_on: "5D559C" + payload_off: "5D559Coff" + device_class: motion + state_topic: "sonoffbridge/tele/RESULT" + value_template: "{{value_json.RfReceived.Data}}" + off_delay: 8 + diff --git a/packages/recorder.yaml b/packages/recorder.yaml new file mode 100644 index 0000000..6401b9b --- /dev/null +++ b/packages/recorder.yaml @@ -0,0 +1,3 @@ +recorder: + purge_keep_days: 90 + db_url: !secret db_url diff --git a/packages/regleta_mia.yaml b/packages/regleta_mia.yaml new file mode 100644 index 0000000..b9e4223 --- /dev/null +++ b/packages/regleta_mia.yaml @@ -0,0 +1,5 @@ +switch: + - platform: xiaomi_miio + name: Releta Mia + host: 10.10.1.146 + token: 3e1fea7691567cf1d5241f02ebb989ee diff --git a/packages/regleta_noha.yaml b/packages/regleta_noha.yaml new file mode 100644 index 0000000..824b289 --- /dev/null +++ b/packages/regleta_noha.yaml @@ -0,0 +1,5 @@ +switch: + - platform: xiaomi_miio + name: Regleta Noha + host: 10.10.1.145 + token: fe3b88c2fdf9d129e30c8cd945ed4461 diff --git a/packages/sun.yaml b/packages/sun.yaml new file mode 100644 index 0000000..dd24182 --- /dev/null +++ b/packages/sun.yaml @@ -0,0 +1 @@ +sun: diff --git a/packages/system_health.yaml b/packages/system_health.yaml new file mode 100644 index 0000000..1d22e42 --- /dev/null +++ b/packages/system_health.yaml @@ -0,0 +1 @@ +system_health: diff --git a/packages/tts.yaml b/packages/tts.yaml new file mode 100644 index 0000000..39af066 --- /dev/null +++ b/packages/tts.yaml @@ -0,0 +1,2 @@ +tts: + - platform: google diff --git a/packages/updater.yaml b/packages/updater.yaml new file mode 100644 index 0000000..bd31f09 --- /dev/null +++ b/packages/updater.yaml @@ -0,0 +1,9 @@ +# Checks for available updates +# Note: This component will send some information about your system to +# the developers to assist with development of Home Assistant. +# For more information, please see: +# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/ +updater: + # Optional, allows Home Assistant developers to focus on popular components. + # include_used_components: true + diff --git a/packages/weather.yaml b/packages/weather.yaml new file mode 100644 index 0000000..def7ccf --- /dev/null +++ b/packages/weather.yaml @@ -0,0 +1 @@ +weather: