mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-12-03 19:41:47 +00:00
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations. - Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages. - Added relevant links and issue references where applicable to enhance user guidance and support.
43 lines
1.3 KiB
YAML
Executable File
43 lines
1.3 KiB
YAML
Executable File
#-------------------------------------------
|
|
# @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# Space - ISS and space-related sensors.
|
|
#-------------------------------------------
|
|
######################################################################
|
|
## Track space events and ISS passes.
|
|
######################################################################
|
|
sensor:
|
|
|
|
- platform: rest
|
|
scan_interval: 1800
|
|
name: SpaceX Starman
|
|
json_attributes:
|
|
- earth_distance_mi
|
|
value_template: '{{ value_json["speed_mph"] }}'
|
|
unit_of_measurement: "mph"
|
|
resource: 'https://api.spacexdata.com/v2/info/roadster'
|
|
|
|
- platform: rest
|
|
scan_interval: 1800
|
|
name: SpaceX
|
|
json_attributes:
|
|
- mission_name
|
|
- launch_site
|
|
- rocket
|
|
value_template: '{{ value_json["launch_date_unix"] }}'
|
|
resource: 'https://api.spacexdata.com/v2/launches/next'
|
|
|
|
automation:
|
|
- alias: Launch Window Approaching
|
|
id: 1d42fc4f-a37d-4283-b64b-09242a145598
|
|
trigger:
|
|
- platform: template
|
|
value_template: '{{ (now().strftime("%s") | int + 600) == (states.sensor.spacex.state | int) }}'
|
|
|
|
action:
|
|
- service: script.notify_engine
|
|
data:
|
|
value1: 'Go Outside! There is a Rocket Launch very soon! {{states.sensor.next_launch.attributes.stream }}'
|
|
group: 'information'
|
|
|