Advertisement
noam76

configuration.yaml

Feb 10th, 2019
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.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: 32.0678
  6.   longitude: 34.7647
  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: Asia/Jerusalem
  13.   # Customization file
  14.   customize: !include customize.yaml
  15.  
  16. # Show links to resources in log and frontend
  17. introduction:
  18. # Enables the frontend
  19. frontend:
  20. # Enables configuration UI
  21. config:
  22. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  23. # http:
  24. #   base_url: example.duckdns.org:8123
  25.  
  26. # Checks for available updates
  27. # Note: This component will send some information about your system to
  28. # the developers to assist with development of Home Assistant.
  29. # For more information, please see:
  30. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  31. updater:
  32.  # Optional, allows Home Assistant developers to focus on popular components.
  33.   # include_used_components: true
  34.  
  35. # Discover some devices automatically
  36. discovery:
  37. # Allows you to issue voice commands from the frontend in enabled browsers
  38. conversation:
  39. # Enables support for tracking state changes over time
  40. history:
  41. # View all events in a logbook
  42. logbook:
  43. # Enables a map showing the location of tracked devices
  44. map:
  45. # Track the sun
  46. sun:
  47. #sensor:
  48.  # Weather prediction
  49. #  - platform: yr
  50. #    name: Weather
  51. #    monitored_conditions:
  52. #     - temperature
  53. #     - symbol
  54. #     - humidity
  55.  # shabbat time
  56. #  - platform: shabbat
  57. #    havdalah_calc: 42
  58. #    time_before_check: 10
  59. #    time_after_check: 10
  60. #    resources:
  61. #     - in
  62. #     - out
  63. #     - parasha
  64. #     - hebrew_date
  65. #     - is_shabbat  # state get True if is shabbat and False is shabbat end.
  66.  #Display only Time & Date
  67. #  - platform: time_date
  68. #    display_options:
  69. #     - 'time'
  70. #     - 'date'
  71. #     - 'time_date'
  72. #     - 'time_utc'
  73. # Include sensor
  74. sensor: !include sensor.yaml
  75.  
  76. # Text to speech
  77. tts:
  78.   - platform: google
  79.  
  80. # Cloud
  81. cloud:
  82. # Telegram
  83. telegram_bot:
  84.  - platform: polling
  85.    api_key:
  86.    allowed_chat_ids:
  87.   - 000000000
  88. notify:
  89.  - name: TeleHome
  90.    platform: telegram
  91.    chat_id: 000000000
  92.  
  93. # Z-wave Aeotec Gen5
  94. zwave:
  95.  usb_path: /dev/ttyACM0
  96.  network_key: ""
  97.  
  98. # component date time
  99. input_datetime:
  100.  both_date_and_time:
  101.   name: Input with both date and time
  102.   has_date: true
  103.   has_time: true
  104.  
  105. # activate the lovelace
  106. lovelace:
  107.  mode: yaml
  108.  
  109. group: !include groups.yaml
  110. automation: !include automations.yaml
  111. script: !include scripts.yaml
  112. input_boolean: !include input_boolean.yaml
  113. input_number: !include input_number.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement