Skip to content

Commit

Permalink
Updated Location Tracking Groups
Browse files Browse the repository at this point in the history
Updated Location Tracking groups and added a washing machine running status sensor.
  • Loading branch information
mcaminiti committed Sep 29, 2018
1 parent 6568239 commit fc983e1
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 7 deletions.
2 changes: 1 addition & 1 deletion automation/inside-lights.yaml
Expand Up @@ -102,4 +102,4 @@

action:
service: homeassistant.turn_off
entity_id: light.basement
entity_id: light.basement
13 changes: 13 additions & 0 deletions customize.yaml
Expand Up @@ -45,6 +45,17 @@
icon: mdi:cellphone-iphone
friendly_name: USER4's iPhone (Unifi)

group.USER1:
icon: mdi:human-male
group.USER2:
icon: mdi:human-female
group.USER3:
icon: mdi:human-female
group.USER4:
icon: mdi:human-female
group.guests:
icon: mdi:human-male-female

##########################################################
## Device Trackers - Guests
##########################################################
Expand Down Expand Up @@ -127,6 +138,8 @@
icon: mdi:battery
switch.washing_machine:
icon: mdi:washing-machine
sensor.washing_machine_status:
icon: mdi:washing-machine
sensor.washing_machine_current_power:
friendly_name: Washing Machine Current Power
unit_of_measurement: 'w'
Expand Down
35 changes: 29 additions & 6 deletions groups.yaml
Expand Up @@ -14,8 +14,8 @@ sensors:
view: yes
icon: mdi:lock
entities:
- alarm_control_panel.home_alarm
- group.family
- group.alarm
- group.household
- group.front_doorbell
- group.doors
- group.indoor_motion
Expand Down Expand Up @@ -95,19 +95,36 @@ troubleshooting:
- group.all_automations
- group.all_scripts

Family:
- device_tracker.USER1siphone
- device_tracker.REDACTED
- device_tracker.USER1_iphone_ios
USER1:
- device_tracker.USER1siphone
- device_tracker.REDACTED

USER2:
- device_tracker.USER2siphone
- device_tracker.REDACTED

USER3:
- device_tracker.USER3siphone
- device_tracker.REDACTED

USER4:
- device_tracker.USER4siphone

Family:
- group.USER1
- group.USER2
- group.USER3
- group.USER4

Guests:
- device_tracker.REDACTEDsiphone

Household:
- group.USER1
- group.USER2
- group.USER3
- group.guests

Pantry:
- binary_sensor.pantry_door_opened
- light.pantry_lights
Expand All @@ -127,6 +144,10 @@ Outside lights:
- light.walkout

Alarm:
- alarm_control_panel.home_alarm
- sensor.home_alarm_keypad

Alarm Sensors:
- binary_sensor.garage_entry_door
- binary_sensor.garage_back_door
- binary_sensor.front_door
Expand Down Expand Up @@ -159,6 +180,7 @@ Doors:

Laundry:
- switch.washing_machine
- sensor.washing_machine_status
- sensor.washing_machine_current_power

Media Player:
Expand Down Expand Up @@ -294,6 +316,7 @@ Eth:

Automation Disable:
- input_boolean.disable_water_sensors
- input_boolean.disable_laundry_notification

Automation Enable:
- input_boolean.vacation_mode
4 changes: 4 additions & 0 deletions input_boolean.yaml
Expand Up @@ -29,3 +29,7 @@
disable_water_sensors:
name: Disable Water Sensors
icon: mdi:water-off

disable_laundry_notification:
name: Disable Laundry Notifications
icon: mdi:washing-machine
2 changes: 2 additions & 0 deletions logbook.yaml
Expand Up @@ -10,6 +10,8 @@
- device_tracker
- binary_sensor
- vacuum
entities:
- alarm_control_panel.home_alarm
exclude:
entities:
- sensor.date__time
Expand Down
2 changes: 2 additions & 0 deletions recorder.yaml
Expand Up @@ -16,6 +16,8 @@
- device_tracker
- binary_sensor
- vacuum
entities:
- alarm_control_panel.home_alarm
exclude:
entities:
- sensor.date__time
Expand Down
10 changes: 10 additions & 0 deletions sensors.yaml
Expand Up @@ -146,6 +146,16 @@
not full
{% endif %}
friendly_name: 'Roomba Bin'
- platform: template
sensors:
washing_machine_status:
value_template: >-
{%- if states('sensor.washing_machine_current_power') | int >= 3 %}
running
{% else %}
not running
{% endif %}
friendly_name: 'Washing Machine Status'
- platform: template
sensors:
roomba_battery:
Expand Down

0 comments on commit fc983e1

Please sign in to comment.