Guest User

Untitled

a guest
Aug 4th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. homeassistant:
  2.   # Name of the location where Home Assistant is running
  3.   name: Fernandez
  4.   # Location required to calculate the time the sun rises and sets
  5.   latitude: -34.4143
  6.   longitude: -58.6517
  7.   # Impacts weather/sunrise data
  8.   elevation: 3
  9.   # C for Celsius, F for Fahrenheit
  10.   temperature_unit: C
  11.   # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12.   time_zone: America/Argentina/Buenos_Aires
  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.  
  24. # Checks for available updates
  25. updater:
  26.  
  27. # Discover some devices automatically
  28. discovery:
  29.  
  30. # Allows you to issue voice commands from the frontend in enabled browsers
  31. conversation:
  32.  
  33. # Enables support for tracking state changes over time.
  34. history:
  35.  
  36. # View all events in a logbook
  37. logbook:
  38.  
  39. # Track the sun
  40. sun:
  41.  
  42. # Weather Prediction
  43. sensor:
  44.   platform: yweather
  45.   woeid: 2344681
  46.   forecast: 3
  47.   monitored_conditions:
  48.    - weather
  49.    - temp_min
  50.    - temp_max
  51. mqtt:
  52.   broker: 127.0.0.1
  53.   port: 1883
  54.   client_id: home-assistant-1
  55.   username: pi
  56.   password: raspberry
  57.  
  58. # Router DD-WRT
  59. device_tracker:
  60.   platform: ddwrt
  61.   host: 192.168.1.1
  62.   username: admin
  63.   password: motorola
  64.   interval: 10
  65.  
  66. # Luz ESP8266 Nro. 1.
  67. light:
  68.   platform: mqtt
  69.   name: "Office light"
  70.   state_topic: "office/light1/status"
  71.   command_topic: "office/light1/switch"
  72.   optimistic: false
Add Comment
Please, Sign In to add comment