mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-08-17 10:57:03 +00:00
lots of GROOOOOOVY Updates.. too many to really list. Maintenance Update
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -9,6 +9,8 @@ OZW_Log.txt
|
||||
home-assistant.log
|
||||
home-assistant_v2.db
|
||||
*.db-journal
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
lib
|
||||
deps
|
||||
tts
|
||||
@@ -20,4 +22,3 @@ pyozw.sqlite
|
||||
nest.conf
|
||||
.uuid
|
||||
ipchange.yaml
|
||||
|
||||
|
@@ -19,7 +19,7 @@
|
||||
action:
|
||||
- service: input_boolean.turn_on
|
||||
entity_id:
|
||||
- input_boolean.responsibilities
|
||||
- input_boolean.chore_check
|
||||
- input_boolean.inside_temp
|
||||
- input_boolean.outside_weather
|
||||
- input_boolean.lights_status
|
||||
|
@@ -11,4 +11,7 @@
|
||||
from: 'off'
|
||||
|
||||
action:
|
||||
- service: input_boolean.turn_on
|
||||
entity_id:
|
||||
- input_boolean.chore_check
|
||||
- service: script.Voice_notify
|
||||
|
@@ -15,5 +15,11 @@
|
||||
data:
|
||||
effect: colorloop
|
||||
|
||||
- service: light.turn_on
|
||||
entity_id:
|
||||
- light.justin_go
|
||||
data:
|
||||
effect: colorloop
|
||||
|
||||
- service: input_boolean.turn_off
|
||||
entity_id: input_boolean.color_tornado
|
||||
|
@@ -20,6 +20,7 @@ http:
|
||||
login_attempts_threshold: 3
|
||||
|
||||
frontend:
|
||||
ios:
|
||||
|
||||
group: !include_dir_merge_named group
|
||||
device_tracker: !include_dir_merge_list device_tracker
|
||||
|
@@ -1,8 +0,0 @@
|
||||
Deliveries:
|
||||
name: Deliveries
|
||||
entities:
|
||||
- sensor.usps
|
||||
- sensor.ups
|
||||
# - sensor.fedex
|
||||
- sensor.deliveries_today
|
||||
- sensor.packages_in_transit
|
@@ -6,6 +6,10 @@ responsibilities:
|
||||
name: responsibilities
|
||||
initial: off
|
||||
|
||||
chore_check:
|
||||
name: responsibilities
|
||||
initial: off
|
||||
|
||||
medicine:
|
||||
name: medicine
|
||||
initial: off
|
||||
|
@@ -36,7 +36,7 @@ dog_bark:
|
||||
{% if now().strftime("%H")|int < 12 and now().strftime("%H")|int > 6%}
|
||||
0.45
|
||||
{% elif now().strftime("%H")|int > 12 and now().strftime("%H")|int < 17%}
|
||||
0.9
|
||||
0.7
|
||||
{% else %}
|
||||
0.40
|
||||
{% endif %}
|
||||
|
@@ -155,7 +155,7 @@ voice_notify:
|
||||
{% if is_state('input_boolean.lights_status', 'on') %}
|
||||
{{lights_status()}}
|
||||
{%endif%}
|
||||
{% if is_state('input_boolean.responsibilities', 'on') %}
|
||||
{% if is_state('input_boolean.chore_check', 'on') %}
|
||||
{{responsibilities()}}
|
||||
{%endif%}
|
||||
{% if now().strftime("%H")|int > 22 %}
|
||||
@@ -170,6 +170,7 @@ voice_notify:
|
||||
- input_boolean.alert_mode
|
||||
- input_boolean.home_stats
|
||||
- input_boolean.responsibilities
|
||||
- input_boolean.chore_check
|
||||
- input_boolean.inside_temp
|
||||
- input_boolean.outside_weather
|
||||
- input_boolean.lights_status
|
||||
|
@@ -5,13 +5,13 @@
|
||||
- platform: command_line
|
||||
name: HA Installed Version
|
||||
command: >-
|
||||
cat $HASS_CONFIG/.HA_VERSION
|
||||
cat /home/hass/.homeassistant/.HA_VERSION
|
||||
scan_interval: 86400
|
||||
|
||||
- platform: command_line
|
||||
name: "HA Uptime"
|
||||
command: echo "$(($(date +%s) - $(date -d "$(head -n1 /home/hass/.homeassistant/home-assistant.log | cut -d' ' -f-2)" +%s)))"
|
||||
scan_interval: 360
|
||||
scan_interval: 720
|
||||
value_template: >-
|
||||
{% set uptime = value | int %}
|
||||
{% set seconds = uptime % 60 %}
|
||||
|
Reference in New Issue
Block a user