2018-01-01 19:00:45 -05:00
|
|
|
#-------------------------------------------
|
|
|
|
# @CCOSTAN
|
|
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
2020-07-02 18:55:48 -04:00
|
|
|
# Try to leverage iPhone Mobile App Data for Activity Tweets!
|
|
|
|
# You can read more about this on https://www.vCloudInfo.com
|
2018-01-01 19:00:45 -05:00
|
|
|
#-------------------------------------------
|
2018-03-13 10:24:49 -04:00
|
|
|
|
2018-01-01 19:00:45 -05:00
|
|
|
##############################################################################
|
2020-07-02 18:55:48 -04:00
|
|
|
### Automations
|
2018-01-01 19:00:45 -05:00
|
|
|
##############################################################################
|
|
|
|
automation:
|
2020-07-02 18:55:48 -04:00
|
|
|
- alias: 'Step Tracker' # https://github.com/CCOSTAN/Home-AssistantConfig/issues/786
|
2020-07-20 19:33:03 +01:00
|
|
|
id: 9d6bd104-d51f-4d1c-9812-35073bb02c0c
|
2018-01-01 19:00:45 -05:00
|
|
|
trigger:
|
2020-07-02 18:55:48 -04:00
|
|
|
- platform: numeric_state
|
2018-01-29 14:12:27 -05:00
|
|
|
entity_id:
|
2020-07-02 18:55:48 -04:00
|
|
|
- sensor.carlo_xsmax_steps
|
|
|
|
- sensor.paige_6s_steps
|
2020-08-19 20:26:45 -04:00
|
|
|
- sensor.stacey_6s_steps
|
2020-07-02 18:55:48 -04:00
|
|
|
above: 5000
|
|
|
|
|
2018-01-01 19:00:45 -05:00
|
|
|
action:
|
2018-03-17 21:14:50 -04:00
|
|
|
- service: script.tweet_engine_image
|
2020-09-26 10:52:45 -04:00
|
|
|
data:
|
2018-01-01 19:00:45 -05:00
|
|
|
tweet: >
|
|
|
|
{{ [
|
2020-08-19 20:26:45 -04:00
|
|
|
"Somebody just hit {{ trigger.entity_id }} steps on the #Fitbit!",
|
|
|
|
"Keep on moving. Somebody just hit {{ trigger.entity_id }} #Fitbit steps.",
|
|
|
|
"#Fitness Tracking at home BY the home. Somebody just hit {{ trigger.entity_id }}} #Fitbit steps"
|
2020-07-02 18:55:48 -04:00
|
|
|
] | random + " #Self #Data"}}
|
2018-03-17 15:18:30 -04:00
|
|
|
image: >-
|
|
|
|
{{ [
|
|
|
|
"/config/www/custom_ui/floorplan/images/branding/fitness.png",
|
2018-03-17 20:11:11 -04:00
|
|
|
"/config/www/custom_ui/floorplan/images/branding/fitness2.png",
|
|
|
|
"/config/www/custom_ui/floorplan/images/branding/fitness3.png"
|
2018-03-17 15:18:30 -04:00
|
|
|
] | random }}
|