Advertisement
Guest User

Untitled

a guest
Aug 15th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 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: 38.3633
  6. longitude: -81.8089
  7. # Impacts weather/sunrise data
  8. elevation: 237
  9. # C for Celsius, F for Fahrenheit
  10. temperature_unit: F
  11. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12. time_zone: America/New_York
  13.  
  14. # Enables the frontend
  15. frontend:
  16.  
  17. http:
  18. # Uncomment this to add a password (recommended!)
  19. # api_password: PASSWORD
  20.  
  21. # Checks for available updates
  22. updater:
  23.  
  24. # Discover some devices automatically
  25. discovery:
  26.  
  27. # Allows you to issue voice commands from the frontend in enabled browsers
  28. conversation:
  29.  
  30. # Enables support for tracking state changes over time.
  31. history:
  32.  
  33. # View all events in a logbook
  34. logbook:
  35.  
  36. # Track the sun
  37. sun:
  38.  
  39. # Weather Prediction
  40. sensor:
  41. platform: yr
  42.  
  43. mqtt:
  44. broker: 127.0.0.1
  45. port: 1883
  46. client_id: home-assistant-1
  47. username: pi
  48. password: raspberry
  49.  
  50. ifttt:
  51. key: dHixB8tnedTfhjd3_XTBbE
  52.  
  53. light:
  54. platform: hue
  55. host: 192.168.0.100
  56. allow_unreachable: true
  57.  
  58. switch:
  59. platform: rpi_rf
  60. gpio: 17
  61. switches:
  62. bedroom_light:
  63. code_on: 1316147
  64. code_off: 1316156
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement