Advertisement
Guest User

Untitled

a guest
Feb 15th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Home
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: !secret home_latitude
  6. longitude: !secret home_longitude
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 23
  9. # metric for Metric, imperial for Imperial
  10. unit_system: imperial
  11. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12. time_zone: America/Chicago
  13.  
  14. # Show links to resources in log and frontend
  15. introduction:
  16.  
  17. # Enables the frontend
  18. frontend:
  19.  
  20. http:
  21. # Uncomment this to add a password (recommended!)
  22. # api_password: PASSWORD
  23. # Uncomment this if you are using SSL or running in Docker etc
  24. # base_url: example.duckdns.org:8123
  25.  
  26. # Checks for available updates
  27. updater:
  28.  
  29. # Discover some devices automatically
  30. discovery:
  31.  
  32. # Allows you to issue voice commands from the frontend in enabled browsers
  33. conversation:
  34.  
  35. # Enables support for tracking state changes over time.
  36. history:
  37.  
  38. # View all events in a logbook
  39. logbook:
  40.  
  41. # Track the sun
  42. sun:
  43.  
  44. # Weather Prediction
  45. sensor:
  46. platform: yr
  47.  
  48. # Text to speech
  49. tts:
  50. platform: google
  51.  
  52. # Smartthings Switches
  53. switch:
  54. - platform: mqtt
  55. name: "Black Lights"
  56. state_topic: "smartthings/Black/switch"
  57. command_topic: "smartthings/Black/switch"
  58. payload_on: "on"
  59. payload_off: "off"
  60. brightness_state_topic: "smartthings/Black/level"
  61. brightness_command_topic: "smartthings/Black/level"
  62. brightness_scale: 99
  63. brightness_value_template: '{{ value }}'
  64. retain: true
  65. optimistic: false
  66. qos: 0
  67.  
  68. mqtt:
  69. broker: !secret mqtt_broker
  70. port: !secret mqtt_port
  71. client_id: home-assistant-1
  72. username: !secret mqtt_username
  73. password: !secret mqtt_password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement