Created
September 30, 2016 03:05
-
-
Save maddox/377cfebd11b80d98685ad48e087d52cc to your computer and use it in GitHub Desktop.
MQTT Switches for Harmony Activities for Home Assistant
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- switch | |
- platform: mqtt | |
name: "TV" | |
state_topic: "harmony-api/hubs/family-room/state" | |
command_topic: "harmony-api/hubs/family-room/activities/watch-apple-tv/command" | |
qos: 0 | |
optimistic: true | |
payload_on: "on" | |
payload_off: "off" | |
- platform: mqtt | |
name: "Tivo" | |
state_topic: "harmony-api/hubs/family-room/activities/watch-tv/state" | |
command_topic: "harmony-api/hubs/family-room/activities/watch-tv/command" | |
qos: 0 | |
optimistic: true | |
payload_on: "on" | |
payload_off: "off" | |
- platform: mqtt | |
name: "Apple TV" | |
state_topic: "harmony-api/hubs/family-room/activities/watch-apple-tv/state" | |
command_topic: "harmony-api/hubs/family-room/activities/watch-apple-tv/command" | |
qos: 0 | |
optimistic: true | |
payload_on: "on" | |
payload_off: "off" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment