Updated to 0.62 release
This commit is contained in:
parent
4a0d6d201f
commit
14e30de531
|
@ -1 +1 @@
|
|||
0.61.1
|
||||
0.62.0
|
|
@ -89,7 +89,7 @@ Lots of my gear comes from [BetaBound](https://goo.gl/0vxT8A) for Beta Testing a
|
|||
* (IFTTT) Blink Office lights 15 minutes before ANY meeting on my calendar (using IFTTT)
|
||||
* (IFTTT) Stop watering grass via [Rachio Sprinkler system](http://amzn.to/2eoPKBW) if winds are greater than 20 MPH.
|
||||
* (IFTTT) Add a 1 day rain delay to [Rachio Sprinkler system](http://amzn.to/2eoPKBW) if it is going to rain tomorrow.
|
||||
* (IFTTT) Blink ALL lights if Winds get to 70MPH - Hurricance warning.
|
||||
* (IFTTT) Blink ALL lights if Winds get to 70MPH - Hurricane warning.
|
||||
* (IFTTT) Trigger Good Night routine when I step on the [Withings](http://amzn.to/2kr78nW) scale after 10pm.
|
||||
* Sets up the front lights in the house with preset colors depending on the ~~month~~ day!.
|
||||
* On motion from [SkyBell HD Doorbell](http://amzn.to/2dcexIB) (IFTTT) Turn front lights to Bright White lights for 10 minutes and then back to original colors. Fake Dog barking when there is motion by the house.
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
#-------------------------------------------
|
||||
# @CCOSTAN
|
||||
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
||||
###################################
|
||||
## [Chevy Bolt](http://amzn.to/2dcexIB)
|
||||
###################################
|
||||
|
||||
# homeassistant:
|
||||
# customize_glob:
|
||||
# "sensor.skybell_*":
|
||||
# icon: mdi:camera-front
|
||||
#
|
||||
# hidden: False
|
||||
# homebridge_hidden: True
|
||||
|
||||
# group:
|
||||
# skybell:
|
||||
# name: Skybell HD Front Door
|
||||
# control: hidden
|
||||
# entities:
|
||||
# - binary_sensor.skybell_stone_door_button
|
||||
# - binary_sensor.skybell_stone_door_motion
|
||||
# - camera.stone_door
|
||||
# - sensor.skybell_stone_door_chime_level
|
||||
# - sensor.skybell_stone_door_motion_sensor
|
||||
# - switch.skybell_stone_door_do_not_disturb
|
||||
# - switch.skybell_stone_door_motion_sensor
|
||||
|
||||
mychevy:
|
||||
username: !secret mychevy_email
|
||||
password: !secret mychevy_password
|
||||
|
||||
|
||||
###################################
|
||||
## Automations
|
||||
###################################
|
||||
## Doorbell Press
|
||||
# automation:
|
||||
# - alias: 'Log SkyBell Pressed Activity'
|
||||
# hide_entity: True
|
||||
# trigger:
|
||||
# - platform: state
|
||||
# entity_id:
|
||||
# - binary_sensor.skybell_stone_door_button
|
||||
# to: 'on'
|
||||
# # - platform: event
|
||||
# # event_type: skybell_pressed
|
||||
#
|
||||
# condition:
|
||||
# - condition: template
|
||||
# value_template: >
|
||||
# {%- if states.binary_sensor.skybell_stone_door_button.attributes.last_triggered -%}
|
||||
# {{ (as_timestamp(now()) - as_timestamp(states.binary_sensor.skybell_stone_door_button.attributes.last_triggered)) > 200 }}
|
||||
# {%- else -%}
|
||||
# true
|
||||
# {%- endif -%}
|
||||
#
|
||||
# action:
|
||||
# - service: script.skybell_pressed
|
||||
# - service: script.tweet_engine
|
||||
# data_template:
|
||||
# tweet: >
|
||||
# {{ [
|
||||
# "Oh, that tickled. Someone just pressed the @MySkyBell.",
|
||||
# "Ouch! That hurt. Who touched the SkyBell Doorbell?",
|
||||
# "Someone just poked me in the @MySkybell!",
|
||||
# "I see you! You are at the @MySkyBell and you just pressed it.",
|
||||
# "Someone answer my door. Someone just pressed the doorbell."
|
||||
# ] | random + [
|
||||
# " #Security",
|
||||
# " (http://amzn.to/2dcexIB)",
|
||||
# " (http://www.vmwareinfo.com/2017/07/my-smart-home-look-at-parts-that-make.html)",
|
||||
# " #HomeAutomation"
|
||||
# ] | random }}
|
|
@ -163,7 +163,7 @@ automation:
|
|||
"{{states.sensor.doorbell_presses.state}} people came to the door today and pressed the bell.",
|
||||
"The #Docker Host has been running for {{states.sensor.since_last_boot_templated.state}}",
|
||||
"The #Docker Host for Home Assistant is using {{states.sensor.disk_used_.state}}% of the hard drive currently. ",
|
||||
"My Home Assistant Database is currently using {{states.sensor.database_sensor.state}} MBs. Thanks! @robmarkcole for this #Stat - (https://github.com/robmarkcole/HASS-filesize-sensor)",
|
||||
"My Home Assistant Database is currently using {{states.sensor.database_sensor.state}} MBs. To get this #Stat visit (https://github.com/robmarkcole/HASS-filesize-sensor)",
|
||||
"The {{states.media_player.living_room_ultra.attributes.friendly_name}} #Roku is playing #{{states.media_player.living_room_ultra.attributes.app_name}}.",
|
||||
"The {{states.media_player.upstairs_living_room.attributes.friendly_name}} #Roku is playing #{{states.media_player.upstairs_living_room.attributes.app_name}}. (http://amzn.to/2lYZEup)",
|
||||
"I am running Home Assistant version {{states.sensor.ha_installed_version.state}} (https://github.com/CCOSTAN/Home-AssistantConfig)",
|
||||
|
|
Loading…
Reference in New Issue