From 6fac9e5253579dc8915c342691d95d21c71bdca1 Mon Sep 17 00:00:00 2001 From: Christopher Viel Date: Sat, 24 Aug 2024 13:49:55 -0400 Subject: [PATCH] fixup! fixup! Update terrarium devices and cards --- blueprints/automation/terrarium_scheduling.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/blueprints/automation/terrarium_scheduling.yaml b/blueprints/automation/terrarium_scheduling.yaml index 44d3e937..8ee030cf 100644 --- a/blueprints/automation/terrarium_scheduling.yaml +++ b/blueprints/automation/terrarium_scheduling.yaml @@ -62,8 +62,6 @@ trigger: event: start variables: - day_time_entity: !input day_time_entity - night_time_entity: !input night_time_entity heat_bulb_switch: !input heat_bulb_switch heater_switch: !input heater_switch uv_light_switch: !input uv_light_switch @@ -75,7 +73,7 @@ condition: action: - action: switch.turn_on - enabled: "{{ heater_switch != 'event.dummy' }}" + enabled: "{{ heater_switch != 'switch.dummy' }}" target: entity_id: !input heater_switch @@ -85,19 +83,19 @@ action: before: !input night_time_entity then: - action: switch.turn_on - enabled: "{{ heat_bulb_switch != 'event.dummy' }}" + enabled: "{{ heat_bulb_switch != 'switch.dummy' }}" target: entity_id: !input heat_bulb_switch - action: switch.turn_on - enabled: "{{ uv_light_switch != 'event.dummy' }}" + enabled: "{{ uv_light_switch != 'switch.dummy' }}" target: entity_id: !input uv_light_switch else: - action: switch.turn_off - enabled: "{{ heat_bulb_switch != 'event.dummy' }}" + enabled: "{{ heat_bulb_switch != 'switch.dummy' }}" target: entity_id: !input heat_bulb_switch - action: switch.turn_off - enabled: "{{ uv_light_switch != 'event.dummy' }}" + enabled: "{{ uv_light_switch != 'switch.dummy' }}" target: entity_id: !input uv_light_switch