Elgato Stream Deck - Home Assistant integration
With the Home Assistant plugin

Control your Home Assistant entities also direct with your Elgator Stream Deck! This is possible with the Stream Deck Home Assistant plugin.
Lights control
Power switch control
Current temperature
AC control via IR
Stream Deck -> Home Assistant -> Zigbee2MQTT -> Zigbee IR transmitter -> Airco
# Sourcecode by vdbrink.github.io
# Dashboard button card code
switch:
- platform: template
switches:
ac_ir:
friendly_name: "AC"
icon_template: mdi:air-conditioner
turn_on:
action: mqtt.publish
data:
topic: zigbee2mqtt/irremote/set
payload: '{"ir_code_to_send":"<ON_CODE_HERE>"}'
turn_off:
action: mqtt.publish
data:
topic: zigbee2mqtt/irremote/set
payload: '{"ir_code_to_send":"<OFF_CODE_HERE>"}'
value_template: "{{ is_state('input_boolean.ac_state', 'on') }}"
assumed_state: true
^^ Top | Homepage | Best Buy Tips | Automation Ideas | Blog posts