『瀚思彼岸』» 智能家居技术论坛

 找回密码
 立即注册
楼主: 阿文菌

[基础教程] HASS入坑记录,折腾了好几天了!分享一下hass接入DC1的过程!

[复制链接]

10

主题

139

帖子

1289

积分

论坛积极会员

积分
1289
金钱
1150
HASS币
5
发表于 2020-3-20 13:12:07 | 显示全部楼层
请教楼主,我也装了墨澜底图,但是左侧系统自带的地图组件怎么删除?
回复

使用道具 举报

0

主题

164

帖子

901

积分

高级会员

Rank: 4

积分
901
金钱
737
HASS币
0
发表于 2020-3-20 14:09:44 | 显示全部楼层
ghostist 发表于 2020-3-20 09:52
借楼秀一下我的DC1界面

非常漂亮 能否分享出来
回复

使用道具 举报

0

主题

6

帖子

47

积分

新手上路

Rank: 1

积分
47
金钱
41
HASS币
0
发表于 2020-3-20 14:37:53 | 显示全部楼层
真给力                    
回复

使用道具 举报

40

主题

2176

帖子

8290

积分

元老级技术达人

积分
8290
金钱
6099
HASS币
110
发表于 2020-3-20 15:38:44 | 显示全部楼层
芯蓝科技 发表于 2020-3-20 14:09
非常漂亮 能否分享出来
############左边插排##############
      - type: horizontal-stack                  #水平
        cards:
          - type: 'custom:button-card'
            entity: 'switch.zdc1_plug0_84f3eb9d9f1f'
            icon: 'mdi:power'
            name: 客厅左插排
            show_name: false
            lock: 
              enabled: true
              unlock: hold
            tap_action: 
              action: toggle
              confirmation:
                text: '[[[ return `确定开关 ${entity.attributes.friendly_name}?` ]]]'
                exemptions: []
            state:
              - value: 'off'
                styles:
                  card:
                    - filter: opacity(80%)
                  icon:
                    - filter: grayscale(100%)
            styles:
              card:
                - color: white
                - font-size: 16px
                - text-transform: capitalize
                - height: 185px
              grid:
                - grid-template-areas: '"i i" "current current" "voltage voltage" "power power"'
                - grid-template-columns: 1fr 1fr
                - grid-template-rows: min-conten 1fr 1fr 1fr 1fr
              img_cell:
                - justify-content: start
                - align-items: start
                - margin: none
              icon:
                - color: >
                    [[[
                      if (entity.state == "on") return 'red';
                      else return 'white';
                    ]]]
                - width: 40%
                - margin-top: 10%
                - margin-left: 30%
              custom_fields:
                current:
                  - padding-bottom: 15px
                  - padding-left: 10px
                  - align-self: middle
                  - justify-self: start
                  - --text-color-sensor: '[[[ if (states["sensor.zdc1_current_84f3eb9d9f1f"].state > 0.1) return "white"; ]]]'
                voltage:
                  - padding-bottom: 15px
                  - padding-left: 10px
                  - align-self: middle
                  - justify-self: start
                  - --text-color-sensor: '[[[ if (states["sensor.zdc1_voltage_84f3eb9d9f1f"].state > 220) return "white"; ]]]'
                power:
                  - padding-bottom: 10px
                  - padding-left: 10px
                  - align-self: middle
                  - justify-self: start
                  - --text-color-sensor: '[[[ if (states["sensor.zdc1_power_84f3eb9d9f1f"].state > 0.1) return "white"; ]]]'
            custom_fields:
              current: >
                [[[
                  return `<ha-icon
                    icon="mdi:flash-auto"
                    style="width: 18px; height: 18px; color: white;">
                    </ha-icon><span>  <span style="color: var(--text-color-sensor);">${states['sensor.zdc1_current_84f3eb9d9f1f'].state}A</span></span>`
                ]]]
              voltage: >
                [[[
                  return `<ha-icon
                    icon="mdi:flash"
                    style="width: 18px; height: 18px; color: white;">
                    </ha-icon><span>  <span style="color: var(--text-color-sensor);">${states['sensor.zdc1_voltage_84f3eb9d9f1f'].state}V</span></span>`
                ]]]
              power: >
                [[[
                  return `<ha-icon
                    icon="mdi:gauge"
                    style="width: 18px; height: 18px; color: white;">
                    </ha-icon><span>  <span style="color: var(--text-color-sensor);">${states['sensor.zdc1_power_84f3eb9d9f1f'].state}W</span></span>`
                ]]]

          - type: 'custom:button-card'
            entity: switch.zdc1_plug1_84f3eb9d9f1f
            name: Switch
            icon: 'mdi:power'
            show_entity_picture: true
            entity_picture: /local/pic/1.png
            styles:
              entity_picture:
                - width: 100%
                - padding-bottom: 0%    
              card:
                - height: 185px
                - padding: 0px
            state:
              - value: 'off'
                styles:
                  card:
                    - filter: opacity(80%)
                  icon:
                    - filter: grayscale(100%)
            tap_action: 
              action: toggle
              confirmation:
                text: '[[[ return `确定开关 ${entity.attributes.friendly_name}?` ]]]'
                exemptions: []
          - type: 'custom:button-card'
            entity: switch.zdc1_plug2_84f3eb9d9f1f
            name: 天猫精灵
            icon: 'mdi:power'
            show_entity_picture: true
            entity_picture: /local/pic/6.png
            styles:
              entity_picture:
                - width: 100%
                - padding-bottom: 0%    
              card:
                - height: 185px
                - padding: 0px
            state:
              - value: 'off'
                styles:
                  card:
                    - filter: opacity(80%)
                  icon:
                    - filter: grayscale(100%) 
            tap_action: 
              action: toggle
              confirmation:
                text: '[[[ return `确定开关 ${entity.attributes.friendly_name}?` ]]]'
                exemptions: []   
          - type: 'custom:button-card'
            entity: switch.zdc1_plug3_84f3eb9d9f1f
            name: 空闲
            icon: 'mdi:power'
            show_entity_picture: true
            entity_picture: /local/pic/9.png
            styles:
              entity_picture:
                - width: 100%
                - padding-bottom: 0%    
              card:
                - height: 185px
                - padding: 0px
            state:
              - value: 'off'
                styles:
                  card:
                    - filter: opacity(80%)
                  icon:
                    - filter: grayscale(100%)
            tap_action: 
              action: toggle
              confirmation:
                text: '[[[ return `确定开关 ${entity.attributes.friendly_name}?` ]]]'
                exemptions: []


回复

使用道具 举报

7

主题

348

帖子

1084

积分

金牌会员

Rank: 6Rank: 6

积分
1084
金钱
736
HASS币
0
发表于 2020-3-21 13:45:25 | 显示全部楼层
学习学习,就是担心N1 容量不够啊……
回复

使用道具 举报

1

主题

5

帖子

29

积分

新手上路

Rank: 1

积分
29
金钱
24
HASS币
0
发表于 2020-3-22 10:31:37 | 显示全部楼层
按照你zdm的教程,跑完安装代码后重启,显示如图。。。也没由管理页面的网址也进不去管理页面。。。。求解怎么办?

感谢大佬的付出,提供优秀的教程
1.jpg
回复

使用道具 举报

11

主题

296

帖子

1183

积分

金牌会员

Rank: 6Rank: 6

积分
1183
金钱
887
HASS币
0
发表于 2020-3-26 00:09:54 | 显示全部楼层
大神啊   下面的编辑按钮是怎么弄出来的  还能排序? 我的lovelace 动不了啊
回复

使用道具 举报

8

主题

171

帖子

2465

积分

金牌会员

Rank: 6Rank: 6

积分
2465
金钱
2294
HASS币
0
发表于 2020-4-7 10:35:49 | 显示全部楼层
ghostist 发表于 2020-3-20 09:52
借楼秀一下我的DC1界面

这是怎么换的界面啊
回复

使用道具 举报

40

主题

2176

帖子

8290

积分

元老级技术达人

积分
8290
金钱
6099
HASS币
110
发表于 2020-4-7 10:53:53 | 显示全部楼层
wangling75 发表于 2020-4-7 10:35
这是怎么换的界面啊

用的lovelace button card  配置代码我放在上面了,自己参考改一下即可
回复

使用道具 举报

0

主题

26

帖子

130

积分

注册会员

Rank: 2

积分
130
金钱
104
HASS币
0
发表于 2021-2-19 21:50:37 | 显示全部楼层
大名鼎鼎的阿文菌来了,太谦了,我玩我家云和N1就知道你了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-11-26 22:30 , Processed in 0.109389 second(s), 32 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表