Rounding out 2023 we saw Egoism on the 22nd December. The gig was a fundraiser for Cystic Fibrosis Community Care so there were a few bands. Sound seemed a bit iffy on the night though one of the supports, Jet City Sports Band, were really great and worth checking out.
alias: "Air con: Power-driven cool excess power"
description: ""
trigger:
- platform: time_pattern
minutes: "*"
condition:
- condition: state
entity_id: input_select.air_con_mode
state: Power-driven cool
- condition: numeric_state
entity_id: sensor.envoy_current_net_consumption
below: -1000
action:
- service: climate.set_temperature
data:
temperature: "{{ states('input_number.air_con_target_temp')|float - 5 }}"
target:
entity_id: climate.daikinap26021
mode: single
alias: "Air con: Power-driven cool no excess"
description: ""
trigger:
- platform: time_pattern
minutes: "*"
condition:
- condition: state
entity_id: input_select.air_con_mode
state: Power-driven cool
- condition: numeric_state
entity_id: sensor.envoy_current_net_consumption
above: -1000
action:
- service: climate.set_temperature
data:
temperature: "{{ states('input_number.air_con_target_temp')|float }}"
target:
entity_id: climate.daikinap26021
mode: single
alias: Shed aircon automatic on
description: ""
trigger:
- platform: time_pattern
minutes: "*"
condition:
- condition: or
conditions:
- condition: state
entity_id: input_select.shed_air_con_mode
state: "on"
- condition: and
conditions:
- condition: numeric_state
entity_id: sensor.envoy_current_net_consumption_5_minute_average_linear
below: -500
- condition: state
entity_id: binary_sensor.shed_door
state: "off"
- condition: numeric_state
entity_id: sensor.shed_weather_temperature
above: 25
- condition: state
entity_id: input_select.shed_air_con_mode
state: Excess power
action:
- service: switch.turn_on
data: {}
target:
entity_id: switch.shed_aircon
mode: single