Hello,
i have a weird problem.
Here are my logbook entries:
7:44 AM Sun has risen
7:32 AM Turn Furnance ON has been triggered
7:31 AM 2nd Floor Heating turned on
6:59 AM Light Side turned off
6:59 AM Turn Side Light OFF has been triggered
→ 6:58 AM Furnance turned on
6:31 AM Weather changed to Rain
3:31 AM Wind Direction changed to North
→ 2:42 AM Furnance turned off
→ 2:41 AM Furnance turned on
→ 2:41 AM Turn Furnance ON has been triggered
→ 2:40 AM 1st Floor Heating turned on
2:31 AM Weather changed to Light Rain
At 2:41 AM the Furnance is turned ON with “Turn Furnance ON” automation then without any reason at 2:42 AM the Furnance is turned OFF.
At 6:58 AM i turned ON the Furnance manually.
Here are my two scripts which controls the Furnance:
- id: turn_furnance_on
alias: "Turn Furnance ON"
trigger:
platform: state
entity_id: binary_sensor.1st_floor_heating_4, binary_sensor.2nd_floor_heating_3
from: 'off'
to: 'on'
for:
minutes: 1
condition:
condition: or
conditions:
- condition: state
entity_id: binary_sensor.1st_floor_heating_4
state: 'on'
- condition: state
entity_id: binary_sensor.2nd_floor_heating_3
state: 'on'
action:
- service: switch.turn_on
entity_id: switch.furnance_5
- id: turn_furnance_off
alias: "Turn Furnance OFF"
trigger:
platform: state
entity_id: binary_sensor.1st_floor_heating_4, binary_sensor.2nd_floor_heating_3
from: 'on'
to: 'off'
for:
minutes: 1
condition:
condition: and
conditions:
- condition: state
entity_id: binary_sensor.1st_floor_heating_4
state: 'off'
- condition: state
entity_id: binary_sensor.2nd_floor_heating_3
state: 'off'
action:
- service: switch.turn_off
entity_id: switch.furnance_5
Thank you for taking the time to help me, i really do appreciate it.