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
#sensor: | |
- platform: xbox_live | |
api_key: xxxxxxxxxxxxxxxxxxxxxx | |
xuid: | |
- 25xxxxxxxxxx17 #DrZzs | |
- 25xxxxxxxxxx02 #Zerp | |
- 25xxxxxxxxxx58 #BearBait | |
#sensor: | |
- platform: history_stats |
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
binary_sensor: | |
- platform: mqtt | |
state_topic: "tele/RF_Bridge/RESULT" | |
name: 'Garage Motion' | |
value_template: '{{value_json.RfReceived.Data}}' | |
payload_on: 'D54C1E' | |
off_delay: 10 | |
device_class: motion | |
qos: 1 | |
retain: false |
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
#Something like this: | |
cover: | |
- platform: mqtt | |
name: "First Garage" | |
state_topic: "cmnd/2/POWER2" #type "SwitchTopic2 2" in the Tasmota Console | |
command_topic: "cmnd/FirstGarage/POWER" #your Sonoff name would be "FirstGarage" | |
payload_open: "ON" | |
payload_close: "ON" | |
payload_stop: "ON" | |
state_open: "ON" |
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
## Automations.yaml | |
- alias: Poorly | |
hide_entity: True | |
trigger: | |
- platform: state | |
entity_id: binary_sensor.office_wand | |
from: 'off' | |
to: 'on' | |
action: | |
- service: media_player.select_source |
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
###### 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 |
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
##### Automations required for the WandBox and the Dragon | |
- alias: Start Quest | |
trigger: | |
- platform: state | |
entity_id: switch.start_quest | |
to: 'on' | |
action: | |
- service: media_player.select_source | |
data: |
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
#Broadlink.yaml | |
#Examples for your Configuration.yaml | |
#switch: | |
- platform: broadlink | |
host: 192.168.1.66 | |
mac: '78:0f:77:18:20:43' | |
type: rm2_pro_plus | |
switches: | |
tv: | |
friendly_name: "Projector" |
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
#ThermoZztat | |
# These are example segments meant to be copied into the 3 main files. | |
############### Examples for Configuration.yaml ############### | |
switch: | |
- platform: mqtt | |
name: "Upstairs Fan" | |
command_topic: "cmnd/ThermoZztat/POWER1" | |
state_topic: "stat/ThermoZztat/POWER1" | |
qos: 1 |
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
- alias: holiday_lights | |
initial_state: True | |
trigger: | |
platform: time | |
at: "20:40:00" | |
# platform: sun | |
# event: sunset | |
action: | |
service: input_select.select_option | |
entity_id: input_select.holiday |
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
############## Configuration.yaml ################### | |
konnected: | |
access_token: !secret konnected_token | |
api_host: http://192.168.1.71:8123 | |
devices: | |
- id: dc4ggggb4c4 | |
binary_sensors: | |
- zone: 1 | |
type: door | |
name: Front Door |
OlderNewer