Advertisement
Guest User

Untitled

a guest
Feb 14th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 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: 26.1722
  6. longitude: -97.9812
  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.  
  54. name: "Living Room Switch"
  55. - platform: mqtt
  56. state_topic: "smartthings/Black/switch"
  57. retain: true
  58.  
  59.  
  60.  
  61. mqtt:
  62. broker: 192.168.1.28
  63. port: 1883
  64. client_id: home-assistant-1
  65. username: blkwolf
  66. password: done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement