mirror of
https://github.com/thejeffreystone/home-assistant-configuration.git
synced 2025-08-16 11:14:44 +00:00
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:
16
config/binary_sensors/calendar.yaml
Executable file
16
config/binary_sensors/calendar.yaml
Executable 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'
|
42
config/binary_sensors/doors.yaml
Executable file
42
config/binary_sensors/doors.yaml
Executable 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
|
13
config/binary_sensors/motion.yaml
Executable file
13
config/binary_sensors/motion.yaml
Executable 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
|
Reference in New Issue
Block a user