2019-02-21 17:49:55 +00:00
###############################################################################
# @author : Jeffrey Stone
# @date : 02/19/2019
# @package : Space
# @description : Tracking space. Inspiration and code taking from https://github.com/CCOSTAN/Home-AssistantConfig#logo
# @original : https://github.com/CCOSTAN/Home-AssistantConfig/blob/master/config/packages/space.yaml
###############################################################################
homeassistant :
customize :
binary_sensor.iss :
icon : mdi:satellite-variant
friendly_name : ISS Visibility
hidden : False
homebridge_hidden : true
sensor.launch_window :
hidden : False
icon : mdi:rocket
friendly_name : Rocket Launch Window
binary_sensor :
- platform : iss
2019-07-22 13:52:24 +00:00
show_on_map : false
2019-02-21 17:49:55 +00:00
sensor :
- platform : moon
- platform : launch_library
2021-08-04 19:57:44 +00:00
2019-02-21 17:49:55 +00:00
automation :
- id : iss_tweet
2019-07-11 11:44:08 +00:00
initial_state : true
2019-02-21 17:49:55 +00:00
alias : 'ISS Tweet'
trigger :
- platform : state
entity_id :
- binary_sensor.iss
to : 'on'
from : 'off'
action :
2019-11-14 01:53:43 +00:00
- service : script.twitter_notify_image
2019-02-21 17:49:55 +00:00
data_template :
2019-11-14 01:53:43 +00:00
tweet : >-
2019-02-21 17:49:55 +00:00
{{ [
2019-07-11 11:44:08 +00:00
"The #ISS is passing over. Wave. #Space #theycanseeourhouse " ,
"The #ISS just flew by with there are {{states.binary_sensor.iss.attributes.number_of_people_in_space}} people doing cool stuff. #Space #theycanseeourhouse" ,
"The #ISS just flew by with {{states.binary_sensor.iss.attributes.number_of_people_in_space}} people in it. #Space #theycanseeourhouse"
] | random }}
2019-11-14 01:53:43 +00:00
image : >-
{{ [ "/config/www/tweet_images/iss.jpg" ,
"/config/www/tweet_images/iss2.jpg" ] | random }}
2019-07-11 11:44:08 +00:00
2019-02-21 17:49:55 +00:00
- id : full_moon_tweet
2019-07-11 11:44:08 +00:00
initial_state : true
2019-02-21 17:49:55 +00:00
alias : 'Full Moon -Tweet'
trigger :
2020-12-03 03:55:11 +00:00
- platform : sun
event : sunset
offset : -00 : 15 : 00
condition :
- condition : state
2019-02-21 17:49:55 +00:00
entity_id : sensor.moon
2020-12-03 03:55:11 +00:00
state : 'full_moon'
2019-02-21 17:49:55 +00:00
action :
2020-12-04 17:55:04 +00:00
- service : script.speech_engine
2020-12-03 04:09:19 +00:00
data_template :
who : '{{ states.sensor.room_audio.state }}'
message : >
<p>
{{ [
'There is a Full Moon out tonight. and this time it is the <emphasis>actual</emphasis> moon. And <emphasis>not</emphasis> the neighbor. ' ,
'Hey look, There is the full moon. ' ,
'The moon is <emphasis>huge<e/mphasis>! And full. ' ,
'If you went outside right now you might see the full moon. <break time="2s"/> Of course if you wait long enough there will be one inside the house too. ' ,
'If you want to see the full moon, <emphasis>tonight is the night</emphasis>.' ]
| random }}
</p>
2019-11-14 01:53:43 +00:00
- service : script.twitter_notify_image
2019-02-21 17:49:55 +00:00
data_template :
2019-11-14 01:53:43 +00:00
tweet : >-
2019-02-21 17:49:55 +00:00
{{ [
2019-07-11 11:44:08 +00:00
"There is a Full Moon out tonight, and this time it's the actual moon and not the neighbor. " ,
"Hey look kids, There's the full moon. " ,
2019-11-12 19:36:27 +00:00
"The moon is huge! And full. " ] | random + "#Space #fullmoon"}}
2019-11-14 01:53:43 +00:00
image : >-
"/config/www/tweet_images/full_moon.jpg"