diff --git a/homeassistant/automations.yaml b/homeassistant/automations.yaml index bc6dce5..032378e 100644 --- a/homeassistant/automations.yaml +++ b/homeassistant/automations.yaml @@ -1,12 +1,3 @@ -- id: '1674163696390' - alias: New Automation - description: '' - use_blueprint: - path: homeassistant/notify_leaving_zone.yaml - input: - person_entity: person.rik - zone_entity: zone.home - notify_device: ba6eb93231932e435fa833a1aac3d126 - id: '1734938534038' alias: Tag Jan Keuken is scanned description: '' @@ -51,3 +42,55 @@ entity_id: e4a7e22a6eae2b28790819307a1bad66 type: open mode: single +- id: '1752348957498' + alias: Temperature Crossing + description: '' + use_blueprint: + path: rik/temperature_outdoor_vs_indoor.yaml + input: + outdoor_sensor: sensor.atc_temperature_6f_e6 + indoor_sensors: + - sensor.atc_temperature_6d_d9 + notify_target: notify.mobile_app_pixel_8a +- id: '1752349291209' + alias: Temperature Crossing (badkamer) + description: '' + use_blueprint: + path: rik/temperature_outdoor_vs_indoor.yaml + input: + outdoor_sensor: sensor.atc_temperature_6f_e6 + indoor_sensors: + - sensor.atc_temperature_d1_1b + notify_target: notify.mobile_app_pixel_8a +- id: '1752349382901' + alias: Temperature Crossing (zolder) + description: '' + use_blueprint: + path: rik/temperature_outdoor_vs_indoor.yaml + input: + outdoor_sensor: sensor.atc_temperature_6f_e6 + indoor_sensors: + - sensor.atc_temperature_cd_ea + notify_target: notify.mobile_app_pixel_8a +- id: '1752350475575' + alias: Temperature Crosses (test) + description: '' + use_blueprint: + path: rik/temperature_outdoor_vs_indoor.yaml + input: + outdoor_sensor: sensor.dummy_outdoor_temperature + indoor_sensors: + - sensor.dummy_indoor_temperature_1 + notify_target: notify.mobile_app_pixel_8a + use_daytime_only: false + cooldown_minutes: 0 +- id: '1752388974998' + alias: Temperature Crossing (woonkamer) + description: '' + use_blueprint: + path: rik/temperature_outdoor_vs_indoor.yaml + input: + outdoor_sensor: sensor.atc_temperature_6f_e6 + indoor_sensors: + - sensor.atc_temperature_8d_03 + notify_target: notify.mobile_app_pixel_8a diff --git a/homeassistant/configuration.yaml b/homeassistant/configuration.yaml index 9b72628..c9869e3 100644 --- a/homeassistant/configuration.yaml +++ b/homeassistant/configuration.yaml @@ -66,3 +66,42 @@ logger: default: info logs: custom_components.auth_header: debug + +input_number: + test_outdoor: + name: Test Outdoor Temperature + min: -20 + max: 40 + step: 0.1 + unit_of_measurement: "°C" + + test_indoor_1: + name: Test Indoor Temperature 1 + min: -20 + max: 40 + step: 0.1 + unit_of_measurement: "°C" + + test_indoor_2: + name: Test Indoor Temperature 2 + min: -20 + max: 40 + step: 0.1 + unit_of_measurement: "°C" + +template: + - sensor: + - name: Dummy Outdoor Temperature + unit_of_measurement: "°C" + device_class: temperature + state: "{{ states('input_number.test_outdoor') }}" + + - name: Dummy Indoor Temperature 1 + unit_of_measurement: "°C" + device_class: temperature + state: "{{ states('input_number.test_indoor_1') }}" + + - name: Dummy Indoor Temperature 2 + unit_of_measurement: "°C" + device_class: temperature + state: "{{ states('input_number.test_indoor_2') }}"