Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- homeassistant:
- # Name of the location where Home Assistant is running
- name: Home
- # Location required to calculate the time the sun rises and sets
- latitude: x
- longitude: y
- # Impacts weather/sunrise data (altitude above sea level in meters)
- elevation: z
- # metric for Metric, imperial for Imperial
- unit_system: imperial
- # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
- time_zone: America/Chicago
- # Show links to resources in log and frontend
- introduction:
- # Enables the frontend
- frontend:
- # Enables configuration UI
- config:
- http:
- # Uncomment this to add a password (recommended!)
- api_password: dont_steal_my_password
- # Uncomment this if you are using SSL or running in Docker etc
- # base_url: example.duckdns.org:8123
- # Checks for available updates
- updater:
- # Discover some devices automatically
- discovery:
- ignore:
- # Define our dropdown list
- input_select:
- test:
- name: test
- options:
- - test
- - None
- initial: None
- icon: mdi:weather-rainy
- automation:
- - alias: Play test noises
- trigger:
- platform: state
- entity_id: input_select.test
- to: "test"
- action:
- service: media_player.play_media
- data:
- entity_id: media_player.office_home
- media_content_id: http://17553.live.streamtheworld.com:3690/KIOSFM_SC
- media_content_type: audio/mp4
- # If you select "None, turn the Chromecast off
- - alias: Stop the music
- trigger:
- platform: state
- entity_id: input_select.test
- to: "None"
- action:
- service: media_player.turn_off
- data:
- entity_id: media_player.office_home
- # Allows you to issue voice commands from the frontend in enabled browsers
- conversation:
- # Enables support for tracking state changes over time.
- history:
- # View all events in a logbook
- logbook:
- # Track the sun
- sun:
- # Weather Prediction
- sensor:
- platform: yr
- # Text to speech
- tts:
- platform: google
- group: !include groups.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement