lots of GROOOOOOVY Updates.. too many to really list. Maintenance Update

This commit is contained in:
CCOSTAN
2017-04-15 20:00:11 +00:00
parent 250a57cf67
commit 88bd0edc09
10 changed files with 23 additions and 15 deletions

3
.gitignore vendored
View File

@@ -9,6 +9,8 @@ OZW_Log.txt
home-assistant.log home-assistant.log
home-assistant_v2.db home-assistant_v2.db
*.db-journal *.db-journal
*.db-shm
*.db-wal
lib lib
deps deps
tts tts
@@ -20,4 +22,3 @@ pyozw.sqlite
nest.conf nest.conf
.uuid .uuid
ipchange.yaml ipchange.yaml

View File

@@ -19,7 +19,7 @@
action: action:
- service: input_boolean.turn_on - service: input_boolean.turn_on
entity_id: entity_id:
- input_boolean.responsibilities - input_boolean.chore_check
- input_boolean.inside_temp - input_boolean.inside_temp
- input_boolean.outside_weather - input_boolean.outside_weather
- input_boolean.lights_status - input_boolean.lights_status

View File

@@ -11,4 +11,7 @@
from: 'off' from: 'off'
action: action:
- service: input_boolean.turn_on
entity_id:
- input_boolean.chore_check
- service: script.Voice_notify - service: script.Voice_notify

View File

@@ -15,5 +15,11 @@
data: data:
effect: colorloop effect: colorloop
- service: light.turn_on
entity_id:
- light.justin_go
data:
effect: colorloop
- service: input_boolean.turn_off - service: input_boolean.turn_off
entity_id: input_boolean.color_tornado entity_id: input_boolean.color_tornado

View File

@@ -20,7 +20,8 @@ http:
login_attempts_threshold: 3 login_attempts_threshold: 3
frontend: frontend:
ios:
group: !include_dir_merge_named group group: !include_dir_merge_named group
device_tracker: !include_dir_merge_list device_tracker device_tracker: !include_dir_merge_list device_tracker
#discovery: #discovery:

View File

@@ -1,8 +0,0 @@
Deliveries:
name: Deliveries
entities:
- sensor.usps
- sensor.ups
# - sensor.fedex
- sensor.deliveries_today
- sensor.packages_in_transit

View File

@@ -6,6 +6,10 @@ responsibilities:
name: responsibilities name: responsibilities
initial: off initial: off
chore_check:
name: responsibilities
initial: off
medicine: medicine:
name: medicine name: medicine
initial: off initial: off

View File

@@ -36,7 +36,7 @@ dog_bark:
{% if now().strftime("%H")|int < 12 and now().strftime("%H")|int > 6%} {% if now().strftime("%H")|int < 12 and now().strftime("%H")|int > 6%}
0.45 0.45
{% elif now().strftime("%H")|int > 12 and now().strftime("%H")|int < 17%} {% elif now().strftime("%H")|int > 12 and now().strftime("%H")|int < 17%}
0.9 0.7
{% else %} {% else %}
0.40 0.40
{% endif %} {% endif %}

View File

@@ -155,7 +155,7 @@ voice_notify:
{% if is_state('input_boolean.lights_status', 'on') %} {% if is_state('input_boolean.lights_status', 'on') %}
{{lights_status()}} {{lights_status()}}
{%endif%} {%endif%}
{% if is_state('input_boolean.responsibilities', 'on') %} {% if is_state('input_boolean.chore_check', 'on') %}
{{responsibilities()}} {{responsibilities()}}
{%endif%} {%endif%}
{% if now().strftime("%H")|int > 22 %} {% if now().strftime("%H")|int > 22 %}
@@ -170,6 +170,7 @@ voice_notify:
- input_boolean.alert_mode - input_boolean.alert_mode
- input_boolean.home_stats - input_boolean.home_stats
- input_boolean.responsibilities - input_boolean.responsibilities
- input_boolean.chore_check
- input_boolean.inside_temp - input_boolean.inside_temp
- input_boolean.outside_weather - input_boolean.outside_weather
- input_boolean.lights_status - input_boolean.lights_status

View File

@@ -5,13 +5,13 @@
- platform: command_line - platform: command_line
name: HA Installed Version name: HA Installed Version
command: >- command: >-
cat $HASS_CONFIG/.HA_VERSION cat /home/hass/.homeassistant/.HA_VERSION
scan_interval: 86400 scan_interval: 86400
- platform: command_line - platform: command_line
name: "HA Uptime" name: "HA Uptime"
command: echo "$(($(date +%s) - $(date -d "$(head -n1 /home/hass/.homeassistant/home-assistant.log | cut -d' ' -f-2)" +%s)))" 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: >- value_template: >-
{% set uptime = value | int %} {% set uptime = value | int %}
{% set seconds = uptime % 60 %} {% set seconds = uptime % 60 %}