-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update bluetooth ui, remove ble custom attributes - nest protect reset wan automations - add remaining charge time sensor - bugfix in smoke_primary() in alarm.jinja - charlie pebblebee bluetooth test - bugfix media presets missing from mobile - update weather templates - update weather ui - update camera object detction - update indoor camera control - bugfix commute before work (lights) - add precipitation_intensity_color custom template - dew point type comparison test - add missing mobile media buttons - update unavailable entities
- Loading branch information
Showing
50 changed files
with
474 additions
and
494 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 |
---|---|---|
@@ -1 +1 @@ | ||
2025.1.0 | ||
2025.1.2 |
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,44 @@ | ||
############################################################################### | ||
## Alarm - Nest Protect Update | ||
## This automation updates entities from the Next Protect integration every | ||
## 5 minutes as a heartbeat and update the last_reported attribute so we can | ||
## determine if the integration is connected or not | ||
############################################################################### | ||
- id: alarm_nest_protect_update | ||
alias: "[Alarm] Nest Protect Update" | ||
description: "Update next protect entities." | ||
triggers: | ||
- trigger: time_pattern | ||
minutes: "/1" | ||
conditions: | ||
- condition: state | ||
entity_id: | ||
- binary_sensor.nest_protect_integration_connected | ||
- binary_sensor.wan | ||
state: "on" | ||
actions: | ||
- action: homeassistant.update_entity | ||
data: | ||
entity_id: binary_sensor.nest_protect_upstairs_smoke_status | ||
|
||
############################################################################### | ||
## Alarm - Nest Protect WAN Reset | ||
## This automation reloads the Nest Protect integration when the WAN | ||
## goes offline to clear sensor values and then again when the WAN goes | ||
## online to refresh the sensor values. | ||
############################################################################### | ||
- id: alarm_nest_protect_wan_reset | ||
alias: "[Alarm] Nest Protect WAN Reset" | ||
description: "Reset next protect when WAN status changes." | ||
mode: restart | ||
triggers: | ||
- trigger: state | ||
entity_id: binary_sensor.wan | ||
to: "off" | ||
not_from: | ||
- unknown | ||
- unavailable | ||
actions: | ||
- action: homeassistant.reload_config_entry | ||
target: | ||
entity_id: binary_sensor.nest_protect_upstairs_smoke_status |
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
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 was deleted.
Oops, something went wrong.
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.