2024年11月24日星期日 下午1:05:24

Fan automation based on temperature

1 年 前
#20910 引用
Fan automation based on temperature

This is my existing automation. Thanks

https://community.home-assistant.io/t/fan-automation-based-on-temperature/92033/13?u=msly

关于根据温湿度传感器数据自动调节空调温度

https://bbs.hassbian.com/thread-12966-1-1.html
0
1 年 前
#20911 引用
The idea is whenever someone comes home after everyone being away, or at 6:30 am, or whenever the temperature changes, as long as it is between 6:00 am and 8:00 pm, and someone is home, and the temperature is above 26, then the fan will be turned on, and the speed will depend on the current temperature. Obviously change the thresholds and the speed values if I didn’t get that part right.







- id: lounge_fan_on
    alias: Lounge Fan On
    trigger:
      - platform: numeric_state
        entity_id: sensor.wirelesstag_lounge_temperature
        above: 26
      - platform: state
        entity_id: group.family_presence
        to: 'on'
      - platform: time
        at: '06:30:00'
    condition:
      condition: and
      conditions:
        - condition: time
          after: '06:00:00'
          before: '20:00:00'
        - condition: numeric_state
          entity_id: sensor.wirelesstag_lounge_temperature
          above: 26
        - condition: state
          entity_id: fan.lounge_fan
          state: 'off'
        - condition: state
          entity_id: group.family_presence
          state: 'on'
    action:
      service: fan.set_speed
      entity_id: fan.lounge_fan
      data:
        speed: low


0
1 年 前
#20912 引用
绿米的温湿度传感器 就是不及时更新 .
都不及时吧为了省电.
以前我还嫌除湿机的温湿度不准。后来一看温湿度传感器,数据还是20分钟前的。。
他是三秒监测一次有变化上传没变化不上传
0
1 年 前
#20913 引用
我设置高于26度就设置24度空调 蓝牙协议通信 延迟有30秒多
0