HomeAssistant添加一个集成插件hacs

1. Hacs是啥?

HACS is a integration that gives the user a powerful UI to handle downloads of custom integrations and plugins.解释起来说就是一个HA里面的应用市场,支持的插件数量比原生自带的要多得多,原生自带的都在components文件下面,这个是整个GitHub,多了很多用户自定义出来的插件。

2. 集成hacs到homeAssistant步骤

  1. 下载源码到custom_components下,参考地址:https://github.com/hacs/integration ,将下载下来的custom_components/hacs文件夹复制到homeAssistant的config下的custom_components中,重启HA

  2. 获取github的accessToken,由于hacs中的插件大部分都来源于github,需要通过cli访问github下载源码之类的,所以需要获取一个github的accessToken

    1. 登陆GitHub --> 点击头像settings --> developer settings --> personal access tokens --> generate new token --> generate token --> 我的accessToken为 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
    2. 获取token参照:hacs获取token文档
    3. 添加hacs集成参照:添加hacs集成
  3. 在HA的config文件夹下configuration.yaml增加如下配置(这个是我测试的token,请用自己的)

    hacs:
      token: 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
    
  4. 添加集成 --> 搜索HACS --> 点击添加 --> 全部勾选 --> 提交 --> 打开指定网站输入验证码 --> github绑定hacs完成(需要清理一下网页缓存,不然可能一直识别不出来)

3. 通过hacs下载一些集成插件(存储库)

  1. 集成一个前端样式存储库

    1. 右下角浏览并添加存储库 --> lovelace勾选去掉 --> 选择排名第一的iOS Dark Mode Theme -->点击集成

    2. 完成一下yaml参数的添加即可,然后重启。或者下载下来以后看详情里面有完整添加参数教程

      Add the following code to your configuration.yaml file (reboot required).
      frontend:
        ... # your configuration.
        themes: !include_dir_merge_named themes
        ... # your configuration.
      Add the following line to your lovelace-ui.yaml or use the RAW editor:
      
      background: var(--background-image)
      (Optional) change the background to a different one, see backgrounds/README.md.
      

效果图:

HomeAssistant添加一个集成插件hacs

4. 通过hacs下载Xiaomi Miet Auto

  1. 先通过hacs集成后端 --> 浏览并添加存储库 --> 选择Xiaomi Miet Auto -->集成
  2. 添加完了存储库以后就可以集成Xiaomi Miet Auto了,配置 --> 添加集成 --> Xiaomi Miet Auto --> 选择云端模式 --> 输入米家账号密码, 完成同步米家的设备到HA
  3. 具体的用法以及过程可以看github上相关的插件的文档

5. 米家设备如何直接接入HA?

由于现在没有token就无法直接接入小米设备,而开发者模式(可以获取到token)在新版本的米家中已经被屏蔽了,所以只能通过曲折的方式接入。先集成Xiaomi Miet Auto,通过云端接入小米设备,在通过 Xiaomi Miet Auto提供的getToken服务获取到小米设备的token,然后接可以通过不采用云端的方式接入小米的设备了

参考:

1.https://github.com/hacs/integration

2.https://post.smzdm.com/p/a27zw9k7/

3.https://hacs.xyz/

上一篇:外网登录homeassistant


下一篇:HomeAssistant-服务调用原理