2018-01-02 00:00:45 +00:00
|
|
|
#-------------------------------------------
|
|
|
|
# Motion Sensor in the office.
|
|
|
|
# Find more recipes @ https://github.com/CCOSTAN/Home-AssistantConfig
|
|
|
|
#-------------------------------------------
|
2020-07-02 18:50:39 +00:00
|
|
|
#------LightSensor Node---https://amzn.to/2oUgj5i
|
2018-01-02 00:00:45 +00:00
|
|
|
homeassistant:
|
|
|
|
customize:
|
|
|
|
binary_sensor.office_motion:
|
|
|
|
friendly_name: Office Motion Sensor
|
2018-01-14 23:30:56 +00:00
|
|
|
|
2020-07-16 17:08:35 +00:00
|
|
|
|
2018-01-02 00:00:45 +00:00
|
|
|
#---Sensor for Light-----------------------------
|
2023-01-16 23:57:38 +00:00
|
|
|
mqtt:
|
|
|
|
binary_sensor:
|
|
|
|
- state_topic: "NodeMCU4/Motion/Motion"
|
|
|
|
name: "Office_Motion"
|
|
|
|
payload_on: 1
|
|
|
|
payload_off: 0
|
|
|
|
device_class: motion
|
2018-01-02 00:00:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
automation:
|
|
|
|
- alias: 'Motion in the Office - Turn on Light'
|
2020-07-19 19:59:59 +00:00
|
|
|
id: 5a8e9dc3-a851-4cce-a054-d96f599cb1f5
|
2020-07-31 14:30:17 +00:00
|
|
|
mode: restart
|
2018-01-02 00:00:45 +00:00
|
|
|
trigger:
|
|
|
|
- platform: state
|
|
|
|
entity_id:
|
|
|
|
- binary_sensor.office_motion
|
|
|
|
to: 'on'
|
|
|
|
from: 'off'
|
|
|
|
|
|
|
|
condition:
|
|
|
|
- condition: state
|
2020-07-16 17:08:35 +00:00
|
|
|
entity_id: light.office_lights
|
2018-01-02 00:00:45 +00:00
|
|
|
state: 'off'
|
2018-08-23 22:16:15 +00:00
|
|
|
- condition: or
|
|
|
|
conditions:
|
|
|
|
- condition: state
|
|
|
|
entity_id: binary_sensor.sleepnumber_carlo_stacey_is_in_bed
|
|
|
|
state: 'off'
|
|
|
|
- condition: state
|
|
|
|
entity_id: binary_sensor.sleepnumber_carlo_carlo_is_in_bed
|
|
|
|
state: 'off'
|
2018-01-02 00:00:45 +00:00
|
|
|
|
|
|
|
action:
|
|
|
|
- service: light.turn_on
|
2020-07-16 17:08:35 +00:00
|
|
|
entity_id: light.office_lights
|
2018-01-02 00:00:45 +00:00
|
|
|
|
|
|
|
- alias: 'Motion in the Office - Turn off Light'
|
2020-07-19 19:59:59 +00:00
|
|
|
id: 346d8210-2160-4911-8be0-1ad696cc69d1
|
2020-07-31 14:30:17 +00:00
|
|
|
mode: restart
|
2018-01-02 00:00:45 +00:00
|
|
|
trigger:
|
|
|
|
- platform: state
|
|
|
|
entity_id:
|
|
|
|
- binary_sensor.office_motion
|
|
|
|
to: 'off'
|
|
|
|
from: 'on'
|
|
|
|
for:
|
2018-01-14 23:30:56 +00:00
|
|
|
minutes: 2
|
2018-01-02 00:00:45 +00:00
|
|
|
|
|
|
|
condition:
|
|
|
|
- condition: state
|
2020-07-16 17:08:35 +00:00
|
|
|
entity_id: light.office_lights
|
2018-01-02 00:00:45 +00:00
|
|
|
state: 'on'
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: light.turn_off
|
2020-07-16 17:08:35 +00:00
|
|
|
entity_id: light.office_lights
|