Advertisement
Guest User

error

a guest
Feb 6th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 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: *****
  6. longitude: ********
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 0
  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/Rome
  13. # Customization file
  14. customize: !include customize.yaml
  15.  
  16.  
  17. # Show links to resources in log and frontend
  18. introduction:
  19.  
  20. # Enables the frontend
  21. frontend:
  22. themes: !include_dir_merge_named themes/
  23.  
  24. # Enables configuration UI
  25. config:
  26.  
  27. # light
  28. lights: !include lights.yaml
  29.  
  30. sensor:
  31. - platform: time_date
  32. display_options:
  33. - 'time'
  34. - 'date'
  35. - 'date_time'
  36. - 'time_date'
  37. - 'time_utc'
  38. - 'beat'
  39.  
  40.  
  41.  
  42.  
  43. # Broadlink mini
  44. switch:
  45. - platform: broadlink
  46. host: 192.168.1.235
  47. mac: '78:0F:77:5A:DE:63'
  48. friendly_name: Broadlink mini
  49. type: rm
  50. switches:
  51. learner:
  52. friendly_name: "Learner"
  53. command_on: 'JgBgAAABLZMTEhMSFBETExMRFBITEhMSEjgUNhM3EjkTERQ3EzcRORM3EzcTEhQREhMTExEUEhMTEhMSEjkTNhI4FTYRORE4FQAFQgABLEoRAAxWAAErSxIADFQAASxKEgANBQAAAAAAAAAA'
  54. command_off: 'JgBwAAABKJYRFREVERUSFBIUFBISFBI4EjgSOBM2EjgSOBE4EjgSFBIVETgSFBI4EjgRFRIUEhQSOBIUEjgRFRIUEjgROBI4EgAFFwABKEsSAAxgAAEoSxIADGEAAShLEgAMYQABJ0wRAAxhAAEoSxEADQUAAAAAAAAAAA=='
  55.  
  56.  
  57.  
  58.  
  59. weather:
  60. - platform: darksky
  61. api_key: 8a08d64a4bb5544fcf9d6a9b4d573121
  62. mode: daily
  63.  
  64.  
  65. # Netatmo
  66. netatmo:
  67. api_key: ***
  68. secret_key: ***
  69. username: ***
  70. password: ***
  71.  
  72. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  73. # http:
  74. # base_url: example.duckdns.org:8123
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement