Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aneisch committed Oct 11, 2023
1 parent efce7a8 commit 74365b5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ Also using Grafana/Influx for graphing, both running in Docker containers on NUC
Description | value
-- | --
Lines of ESPHome YAML | 2467
Lines of Home Assistant YAML | 8119
Lines of Home Assistant YAML | 8117
[Integrations](https://www.home-assistant.io/integrations/) in use | 52
Zigbee devices in [`zha`](https://www.home-assistant.io/integrations/zha/) | 26
Z-Wave devices in [`zwave_js`](https://www.home-assistant.io/integrations/zwave_js/) | 37

Description | value
-- | --
Entities in the [`alarm_control_panel`](https://www.home-assistant.io/components/alarm_control_panel) domain | 1
Entities in the [`automation`](https://www.home-assistant.io/components/automation) domain | 109
Entities in the [`automation`](https://www.home-assistant.io/components/automation) domain | 111
Entities in the [`binary_sensor`](https://www.home-assistant.io/components/binary_sensor) domain | 133
Entities in the [`button`](https://www.home-assistant.io/components/button) domain | 12
Entities in the [`calendar`](https://www.home-assistant.io/components/calendar) domain | 1
Expand All @@ -75,7 +75,7 @@ Entities in the [`cover`](https://www.home-assistant.io/components/cover) domain
Entities in the [`device_tracker`](https://www.home-assistant.io/components/device_tracker) domain | 4
Entities in the [`fan`](https://www.home-assistant.io/components/fan) domain | 3
Entities in the [`group`](https://www.home-assistant.io/components/group) domain | 14
Entities in the [`input_boolean`](https://www.home-assistant.io/components/input_boolean) domain | 26
Entities in the [`input_boolean`](https://www.home-assistant.io/components/input_boolean) domain | 27
Entities in the [`input_datetime`](https://www.home-assistant.io/components/input_datetime) domain | 34
Entities in the [`input_number`](https://www.home-assistant.io/components/input_number) domain | 4
Entities in the [`input_select`](https://www.home-assistant.io/components/input_select) domain | 19
Expand All @@ -90,7 +90,7 @@ Entities in the [`remote`](https://www.home-assistant.io/components/remote) doma
Entities in the [`scene`](https://www.home-assistant.io/components/scene) domain | 2
Entities in the [`script`](https://www.home-assistant.io/components/script) domain | 40
Entities in the [`select`](https://www.home-assistant.io/components/select) domain | 2
Entities in the [`sensor`](https://www.home-assistant.io/components/sensor) domain | 384
Entities in the [`sensor`](https://www.home-assistant.io/components/sensor) domain | 383
Entities in the [`siren`](https://www.home-assistant.io/components/siren) domain | 1
Entities in the [`sun`](https://www.home-assistant.io/components/sun) domain | 1
Entities in the [`switch`](https://www.home-assistant.io/components/switch) domain | 157
Expand All @@ -100,7 +100,7 @@ Entities in the [`update`](https://www.home-assistant.io/components/update) doma
Entities in the [`vacuum`](https://www.home-assistant.io/components/vacuum) domain | 1
Entities in the [`weather`](https://www.home-assistant.io/components/weather) domain | 2
Entities in the [`zone`](https://www.home-assistant.io/components/zone) domain | 6
**Total state objects** | **1059**
**Total state objects** | **1061**
## The HACS integrations/plugins that I use:
**Appdaemon**:<br>
[aneisch/follow_me_appdaemon](https://github.com/aneisch/follow_me_appdaemon)<br>
Expand Down
4 changes: 2 additions & 2 deletions automations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
event: start
action:
- delay: "00:05:00"
- service: readme.generat
- service: readme.generate

- alias: "Set dark theme for night"
id: "dark_theme"
Expand Down Expand Up @@ -1073,7 +1073,7 @@

- alias: "Rain Notifications"
id: rain_notifications
mode: "single"
mode: "restart"
trigger:
- platform: state
entity_id: sensor.neighbor_5in1_rain_last_1_hour
Expand Down
2 changes: 1 addition & 1 deletion extras/Node-RED/flows.json

Large diffs are not rendered by default.

Binary file modified images/nodered_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/nodered_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 5 additions & 7 deletions packages/leak_detection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,15 @@ automation:
to: "on"
for: "02:00:00"
action:
# irrigation off AND trackers away AND guest mode off AND not 12:00-12:05 (scheduled dumb water timer)
# irrigation off AND not during a scheduled timer AND not_home
- if: "{{ trigger.id == 'minutes'
and states('sensor.flume_sensor_home_current') | float > 0
and is_state('switch.irrigation_master_valve', 'off')
and is_state('switch.garden_zone', 'off')
and is_state('switch.bougainvillea_zone', 'off')
and is_state('switch.maples_zone', 'off')
and is_state('group.trackers', 'not_home' )
and is_state('input_boolean.guest_mode', 'off')
and not (now().hour == 12 and now().minute in [0,1,2,3,4,5,6])
and not (now().hour == 10 and now().minute in [16,17,18,19,20,21]) }}"
and not (now().hour == 9 and now().minute in [16,17,18,19,20,21])
and not (now().hour == 8 and now().minute in [31,32,33,34,35,36,37,38])
and is_state('group.trackers', 'not_home' )
and is_state('input_boolean.guest_mode', 'off') }}"
then:
- service: script.notify_wrapper
data:
Expand Down

0 comments on commit 74365b5

Please sign in to comment.