7.0 configuration.yaml基本配置信息

本系列教程主要實現通過Raspberry Pi3 + Hass.io + Macbook配合其它智能硬體實現對智能家居的控制,旨在分享搭建智能家居過程中的經驗和樂趣。

上一篇我們介紹了設置Home Assistant登入密碼,裡面也涉及到了configuration.yaml的配置問題,這篇我們將介紹一些其他的基本配置信息。


1. 首先使用ssh服務進入Home Assistant。

$ ssh root@hassio.local n

2. 進入config目錄並打開configuration.yaml。

$ cd /confign$ vim configuration.yaml n

3. 內容如下。

homeassistant:n # Name of the location where Home Assistant is runningn name: Homen # Location required to calculate the time the sun rises and setsn latitude: 29.8782n longitude: 121.5495n # Impacts weather/sunrise data (altitude above sea level in meters)n elevation: 0n # metric for Metric, imperial for Imperialn unit_system: metricn # Pick yours from here: List of tz database time zonesn time_zone: Asia/Shanghain # Customization filen customize: !include customize.yamlnn# Show links to resources in log and frontendnintroduction:nn# Enables the frontendnfrontend:nn# Enables configuration UInconfig:nnhttp:n # Secrets are defined in the file secrets.yamln # api_password: !secret http_passwordn # Uncomment this if you are using SSL/TLS, running in Docker container, etc.n # base_url: example.duckdns.org:8123nn# Checks for available updatesn# Note: This component will send some information about your system ton# the developers to assist with development of Home Assistant.n# For more information, please see:n# Explaining the Updaternupdater:n # Optional, allows Home Assistant developers to focus on popular components.n # include_used_components: truenn# Discover some devices automaticallyndiscovery:nn# Allows you to issue voice commands from the frontend in enabled browsersnconversation:nn# Enables support for tracking state changes over timenhistory:n# View all events in a logbooknlogbook:nn# Enables a map showing the location of tracked devicesnmap:nn# Track the sunnsun:nn# Text to speechntts:n - platform: googlenngroup: !include groups.yamlnautomation: !include automations.yamlnscript: !include scripts.yamln

4. 配置變數解釋。

  • latitude(可選):緯度。
  • longitude(可選):經度。
  • elevation(可選):海拔高度,以米為單位。 影響天氣/日出數據。
  • unit_system(可選):公制單位metric或者英制單位imperial
  • time_zone(可選):你的時區,可以在這個網站查看:en.wikipedia.org/wiki/L
  • name(可選):名稱。
  • customize(可選):自定義模塊。
  • customize_domain(可選):自定義域中的所有實體。
  • customize_glob(可選):自定義匹配模式的實體。
  • whitelist_external_dirs(可選):可用作發送文件源的文件夾列表。

基本配置信息就介紹到這裡,下一篇講介紹添加第一個智能家居設備Broadlink RM PRO。

推薦閱讀:

樹莓派需要散熱片嗎?
樹莓派上能安裝 caffe 嗎?
是樹莓派好玩,還是單片機好玩?或者說那個更有趣?我想吸引我弟弟,培養他的學習能力和動手能力
樹莓派 gpio 各個引腳 作用?
沒有顯示器可以使用樹莓派么,初次安裝過程中呢?

TAG:智能家居 | 树莓派RaspberryPi | SSH |