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