Updated to V5 Version - Hassio Style

Lots of updates here.

Updated my Readme - Added Affiliate Links, added some more information, better organized devices
Updated gitignore with paths realtive to my hassio config
Combined my switches and lights into single yaml files instead of the directory structure previously
Added zigbee2mqtt.yaml to packages - contains automations and such for zigbee2mqtt

Archived my previous version in the V4-config branch.
This commit is contained in:
Jeffrey Stone
2019-11-08 12:54:11 -05:00
parent f00f5bdccb
commit e02d084c92
74 changed files with 1409 additions and 1051 deletions

View File

@@ -0,0 +1,16 @@
- platform: workday
country: US
province: GA
workdays: [mon, tue, wed, thu, fri]
- platform: tod
name: Night
after: sunset
before: sunrise
- platform: tod
name: Day
after: sunrise
before: sunset
- platform: tod
name: Quiet time
after: '22:00'
before: '07:00'

View File

@@ -0,0 +1,42 @@
- platform: mqtt
name: "Back Door"
state_topic: "zwave2mqtt/nodeID_28/48/1/0"
payload_on: "open"
payload_off: "closed"
device_class: door
- platform: mqtt
name: "Garage Door"
state_topic: "zwave2mqtt/nodeID_16/48/1/0"
payload_on: "true"
payload_off: "false"
device_class: garage_door
- platform: mqtt
name: "Front Door"
state_topic: "zwave2mqtt/nodeID_27/48/1/0"
payload_on: "open"
payload_off: "closed"
device_class: door
- platform: mqtt
name: "Laundry Room Door"
state_topic: "zwave2mqtt/nodeID_26/48/1/0"
payload_on: "true"
payload_off: "false"
device_class: door
- platform: mqtt
name: "Attic Door" # Dome Door Sensor
state_topic: "zwave2mqtt/nodeID_18/48/1/0"
payload_on: "true"
payload_off: "false"
device_class: door
- platform: mqtt
name: "Side Door" # Dome Door Sensor
state_topic: "zwave2mqtt/side_door/48/1/0"
payload_on: "true"
payload_off: "false"
device_class: door
- platform: mqtt
name: "Washer Door"
state_topic: "zwave2mqtt/washer_door/48/1/0"
payload_on: "true"
payload_off: "false"
device_class: door

View File

@@ -0,0 +1,13 @@
- platform: mqtt
name: "Garage Motion" # Dome Motion Sensor
state_topic: "zwave2mqtt/garage_motion/48/1/0"
payload_on: "true"
payload_off: "false"
device_class: motion
# - platform: command_line
# name: vlc player
# command: 'pidof vlc | wc -l'
# payload_on: 1
# payload_off: 0
# scan_interval: 10