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

 找回密码
 立即注册
查看: 813|回复: 2

[进阶教程] 通过巴法给小爱的风扇,调速不好使怎么办?自动化解决!

[复制链接]

16

主题

269

帖子

2819

积分

论坛DIY达人

积分
2819
金钱
2535
HASS币
60
发表于 2024-6-4 15:34:23 | 显示全部楼层 |阅读模式
楼主目前是那个并不怎么好使的巴法云对接的小爱和天猫。。。

一直没怎么用小爱,昨天手机喊小爱准备把前几天改的用永速风扇调小点,结果直接把速度跳到了2。。。。。然后发现通过巴法过来的是四个挡位。1,2,3,4。。。然后ha就直接对应了速度值1,2,3,4.。。这样就很离谱。

然后我想了下,用了一条自动化来映射挡位和风速的关系。

but本来以为也能有四档。。。但我发现ha反馈过去的风速值会让小爱那边以为已经是4档了,
这样就不会重新发指令过来,最终就只有三档风速
自动化配置如下,其实就是检测风速,变1了调到30,2调到60,3调到100.
按喜好改对应值就好了
alias: 巴法云小爱控制风速对应
description: ""
trigger:
  - platform: state
    entity_id:
      - fan.ys_fan
condition: []
action:
  - if:
      - condition: numeric_state
        entity_id: fan.ys_fan
        attribute: percentage
        above: 0
        below: 2
    then:
      - service: fan.set_percentage
        target:
          entity_id: fan.ys_fan
        data:
          percentage: 30
    enabled: true
  - if:
      - condition: numeric_state
        entity_id: fan.ys_fan
        attribute: percentage
        above: 1
        below: 3
    then:
      - service: fan.set_percentage
        target:
          entity_id: fan.ys_fan
        data:
          percentage: 60
    enabled: true
  - if:
      - condition: numeric_state
        entity_id: fan.ys_fan
        attribute: percentage
        above: 2
        below: 4
    then:
      - service: fan.set_percentage
        target:
          entity_id: fan.ys_fan
        data:
          percentage: 100
    enabled: true
  - if:
      - condition: numeric_state
        entity_id: fan.ys_fan
        attribute: percentage
        above: 3
        below: 5
    then:
      - service: fan.set_percentage
        target:
          entity_id: fan.ys_fan
        data:
          percentage: 100
    enabled: false
mode: single
微信截图_20240604153404.png

评分

参与人数 1金钱 +12 收起 理由
隔壁的王叔叔 + 12 感谢楼主分享!

查看全部评分

回复

使用道具 举报

23

主题

271

帖子

1685

积分

金牌会员

Rank: 6Rank: 6

积分
1685
金钱
1414
HASS币
0
发表于 2024-6-4 20:51:37 | 显示全部楼层
巴法不是很稳定,现在还能用?
回复

使用道具 举报

16

主题

269

帖子

2819

积分

论坛DIY达人

积分
2819
金钱
2535
HASS币
60
 楼主| 发表于 2024-6-4 22:20:44 | 显示全部楼层
zhuguoqing 发表于 2024-6-4 20:51
巴法不是很稳定,现在还能用?

还行吧,偶尔离线。我这种小卡拉米也没得别的方式对接小爱啊啥的
回复

使用道具 举报

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

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-11-24 22:46 , Processed in 0.053786 second(s), 29 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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