Advertisement
Guest User

Untitled

a guest
Dec 28th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.71 KB | None | 0 0
  1. homeassistant:
  2.   name: Home
  3.   latitude: !secret home_lat
  4.   longitude: !secret home_lon
  5.   elevation: 30
  6.   unit_system: imperial
  7.   # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  8.   time_zone: America/New_York
  9.   # Customization file
  10.   customize: !include customize.yaml
  11. zone 1:
  12.   - name: Home
  13.     latitude: !secret home_lat
  14.     longitude: !secret home_lon
  15.     elevation: 30
  16. zone 2:
  17.   - name: Work
  18.     latitude: !secret work_lat
  19.     longitude: !secret work_lon
  20.     radius: 200
  21.     icon: mdi:briefcase
  22. frontend:
  23.   themes: !include_dir_named themes/
  24. config:
  25. http:
  26.    api_password: !secret http_password
  27.    base_url: !secret base_url
  28. updater:
  29. discovery:
  30. conversation:
  31. recorder: !include recorder.yaml
  32. history: !include history.yaml
  33. logbook:
  34. map:
  35. sun:
  36. weather:
  37.   - platform: darksky
  38.     api_key: !secret darksky_api
  39.  
  40. #tts:
  41. #  - platform: google
  42. #panel_iframe:
  43.  
  44. mqtt:
  45.   broker: core-mosquitto
  46.   username: DEV
  47.   password: DEVpw
  48.  
  49. # Z-Wave
  50. zwave:
  51. #  usb_path: /dev/ttyACM0    # Aeotec Z-wave USB
  52.   usb_path: /dev/ttyUSB0   # Nortek HUSBZB-1
  53.   network_key: !secret zwave_network_key
  54.  
  55. # Zigbee
  56. zha:
  57.   usb_path: /dev/ttyUSB1
  58.   database_path: /config/zigbee.db
  59. #hdmi_cec:
  60. media_player:
  61.    # Austa-PC
  62.   - platform: gpmdp
  63.     host: 10.0.1.40
  64.  
  65. #remote:
  66. #  - platform: harmony
  67. #    name: Harmony Hub
  68. #    host: HarmonyHub
  69.  
  70. light: !include lights.yaml
  71. sensor: !include sensors.yaml
  72. device_tracker: !include devicetrackers.yaml
  73. group: !include groups.yaml
  74. automation: !include automations.yaml
  75. script: !include scripts.yaml
  76. switch: !include switches.yaml
  77. cloud: !include cloud.yaml
  78. input_boolean: !include input_booleans.yaml
  79. camera: !include cameras.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement