-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add timers for each area (#649)
- Loading branch information
Showing
20 changed files
with
1,401 additions
and
416 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"occupancy_component": minor | ||
--- | ||
|
||
feat: Implement area with timer logic |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,6 +146,7 @@ | |
}, | ||
"[email protected]": { | ||
"last_modified": "2024-01-27T14:55:31Z", | ||
"plugin_version": "0.0.2", | ||
"resolved": "github:NixOS/nixpkgs/160b762eda6d139ac10ae081f8f78d640dd523eb#python311Packages.pip", | ||
"source": "devbox-search", | ||
"version": "23.3.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
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
- id: "1707938841757" | ||
alias: Control front door contact | ||
description: "" | ||
trigger: | ||
- platform: state | ||
entity_id: | ||
- input_boolean.front_door_contact_simulate | ||
condition: [] | ||
action: | ||
- service: mqtt.publish | ||
metadata: {} | ||
data: | ||
qos: "2" | ||
retain: true | ||
topic: home-assistant/front_door/contact | ||
payload: "{{ trigger.to_state.state }}" | ||
mode: single | ||
- id: "1707939189264" | ||
alias: Control front door motion occupancy | ||
description: "" | ||
trigger: | ||
- platform: state | ||
entity_id: | ||
- input_button.front_door_motion_occupancy_simulate | ||
condition: [] | ||
action: | ||
- service: mqtt.publish | ||
metadata: {} | ||
data: | ||
qos: "2" | ||
retain: true | ||
topic: home-assistant/front_door/motion_occupancy | ||
payload: "on" | ||
- delay: | ||
hours: 0 | ||
minutes: 0 | ||
seconds: 5 | ||
milliseconds: 0 | ||
- service: mqtt.publish | ||
metadata: {} | ||
data: | ||
qos: "2" | ||
retain: true | ||
topic: home-assistant/front_door/motion_occupancy | ||
payload: "off" | ||
mode: single | ||
- id: "1707942333572" | ||
alias: Control hallway occupancy | ||
description: "" | ||
trigger: | ||
- platform: state | ||
entity_id: | ||
- input_boolean.hallway_occupancy_simulate | ||
condition: [] | ||
action: | ||
- service: mqtt.publish | ||
metadata: {} | ||
data: | ||
qos: "2" | ||
retain: true | ||
topic: home-assistant/hallway/occupancy | ||
payload: "{{ trigger.to_state.state }}" |
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 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
Oops, something went wrong.