Advertisement
Guest User

Untitled

a guest
May 3rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Projeto
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: 39.7381098
  6. longitude: -8.8107532
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 39
  9. # metric for Metric, imperial for Imperial
  10. unit_system: metric
  11. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12. time_zone: Europe/Lisbon
  13.  
  14. # Show links to resources in log and frontend
  15. #introduction:
  16.  
  17. #customize: !include customized.yaml
  18.  
  19. # Enables the frontend
  20. frontend:
  21.  
  22. # Enables configuration UI
  23. config:
  24.  
  25. http:
  26. # Uncomment this to add a password (recommended!)
  27. api_password: projeto123!
  28. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  29. # base_url: example.duckdns.org:8123
  30.  
  31. # Checks for available updates
  32. # Note: This component will send some information about your system to
  33. # the developers to assist with development of Home Assistant.
  34. # For more information, please see:
  35. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  36. updater:
  37. # Optional, allows Home Assistant developers to focus on popular components.
  38. # include_used_components: true
  39.  
  40. # Discover some devices automatically
  41. discovery:
  42.  
  43. # Allows you to issue voice commands from the frontend in enabled browsers
  44. conversation:
  45.  
  46. # Enables support for tracking state changes over time
  47. history:
  48.  
  49. # View all events in a logbook
  50. logbook:
  51.  
  52. # Track the sun
  53. sun:
  54.  
  55. # Weather prediction
  56.  
  57.  
  58. # Text to speech
  59. tts:
  60. - platform: google
  61.  
  62. #group: !include groups.yaml
  63. #automation: !include automations.yaml
  64. #script: !include scripts.yaml
  65.  
  66.  
  67. mqtt:
  68. broker: localhost
  69. port: 1883
  70. client_id: homeassistant
  71. username: username
  72. password: password
  73.  
  74. sensor:
  75. - platform: mqtt
  76. name: "Temperature"
  77. state_topic: "bedroom/temp/set"
  78. qos: 0
  79. unit_of_measurement: "ΒΊC"
  80.  
  81. - platform: mqtt
  82. name: "Humidity"
  83. state_topic: "bedroom/humidity/set"
  84. qos: 0
  85. unit_of_measurement: "%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement