Last active
October 3, 2018 23:11
-
-
Save Snipercaine/735fe8167347556d73d60c94f46a2e08 to your computer and use it in GitHub Desktop.
IoT Adventures WandBox partial HA Configuration
This file contains hidden or 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
###### This is not a complete Configuration.yaml file; Add what's here to your config. | |
switch: | |
- platform: mqtt | |
name: WandBox Lock #Switch 1 & Relay 1 | |
state_topic: "stat/Wandbox/POWER1" | |
command_topic: "cmnd/Wandbox/power1" | |
payload_lock: "ON" | |
payload_unlock: "OFF" | |
optimistic: false | |
qos: 1 | |
retain: false | |
- platform: mqtt | |
name: Start Quest | |
state_topic: "stat/Wandbox/POWER2" | |
command_topic: "cmnd/Wandbox/power2" | |
payload_on: "ON" | |
payload_off: "OFF" | |
optimistic: false | |
qos: 1 | |
retain: false | |
- platform: mqtt | |
name: Ice Spell #Switch 2 | |
state_topic: "stat/Dragon/POWER2" | |
command_topic: "cmnd/Dragon/power2" | |
payload_on: "ON" | |
payload_off: "OFF" | |
optimistic: false | |
qos: 1 | |
retain: false | |
- platform: mqtt | |
name: Fire Spell #Switch 3 | |
state_topic: "stat/Dragon/POWER3" | |
command_topic: "cmnd/Dragon/power3" | |
payload_on: "ON" | |
payload_off: "OFF" | |
optimistic: false | |
qos: 1 | |
retain: false | |
light: | |
- platform: mqtt | |
name: "WandBox Magic" #WS2812 | |
command_topic: "cmnd/Wandbox/power3" | |
state_topic: "stat/Wandbox/POWER3" | |
rgb_state_topic: "stat/Wandbox/color" | |
rgb_command_topic: "cmnd/Wandbox/color" | |
brightness_state_topic: "stat/Wandbox/dimmer" | |
brightness_command_topic: "cmnd/Wandbox/dimmer" | |
retain: false | |
- platform: mqtt | |
name: "Dragon Eyes" #WS2812 | |
command_topic: "cmnd/Dragon/power4" | |
state_topic: "stat/Dragon/POWER4" | |
rgb_state_topic: "stat/Dragon/color" | |
rgb_command_topic: "cmnd/Dragon/color" | |
brightness_state_topic: "stat/Dragon/dimmer" | |
brightness_command_topic: "cmnd/Dragon/dimmer" | |
retain: false | |
input_boolean: | |
wand_obtained: | |
name: Wand Obtained | |
icon: mdi:brush | |
sneak_warning: | |
name: Sneak Warning | |
icon: mdi:walk | |
sneak_caught: | |
name: Sneak Caught | |
icon: mdi:emoticon-devil | |
dragon_down: | |
name: Dragon Down | |
icon: mdi:creation | |
fire_spell: | |
name: Fire Spell | |
icon: mdi:fire | |
ice_spell: | |
name: Ice Spell | |
icon: mdi:snowflake | |
binary_sensor: | |
- platform: mqtt | |
state_topic: "stat/Dragon/POWER1" | |
name: "Sleeping Dragon" #Switch 3 PIR | |
sensor: | |
- platform: mqtt | |
state_topic: 'tele/Wandbox/SENSOR' | |
name: 'Crystal Temp' #AM2301 | |
unit_of_measurement: '°F' | |
value_template: '{{ value_json.AM2301.Temperature }}' | |
- platform: mqtt | |
state_topic: 'tele/Wandbox/SENSOR' | |
name: 'Swampyness' | |
unit_of_measurement: '%' | |
value_template: '{{ value_json.AM2301.Humidity }}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment