Hello everyone!
I’m quite new to HA, and I’m trying to automate two AC units based on external temperature and humidity sensors.
My automations work until evening, when I get the following error:
My Daikin Onecta polling settings are like this:
- high frequency - 60
- low frequency - 60
- number of seconds that a data refresh is ignored after a command - 100
My environment:
- Core 2024.6.2
- Supervisor 2024.06.0
- Operating System 12.3
- Frontend 20240610.0
- HACS v1.34.0
- Daikin Onecta v4.1.6
- Two SONOFF SNZB-02D
- AC1: BRP069B4x Firmware: 3.1.123
- AC2: BRP069C4x Firmware: 1.31.0
My automations look like something like this - I have simplified them, but the gist of it is the same:
description: LR AC ON
mode: single
trigger:
- platform: time_pattern
minutes: /5
condition:
- type: is_temperature
condition: device
device_id: 1f71efed91c957079ed4d71d0d87887c
entity_id: bf18827556747d8a2110ca74f80ebed0
domain: sensor
above: 27
action:
- service: climate.set_fan_mode
metadata: {}
data:
fan_mode: auto
target:
device_id: e192c82c1b21472839afc94081fc74f4
- delay:
hours: 0
minutes: 1
seconds: 0
milliseconds: 0
- service: climate.set_temperature
metadata: {}
data:
hvac_mode: cool
temperature: 25.5
target:
device_id: e192c82c1b21472839afc94081fc74f4
- delay:
hours: 1
minutes: 0
seconds: 0
milliseconds: 0
description: LR AC OFF
mode: single
trigger:
- platform: time_pattern
minutes: /5
condition:
- type: is_temperature
condition: device
device_id: 1f71efed91c957079ed4d71d0d87887c
entity_id: bf18827556747d8a2110ca74f80ebed0
domain: sensor
below: 26
action:
- service: climate.set_hvac_mode
data:
hvac_mode: "off"
target:
device_id: e192c82c1b21472839afc94081fc74f4
- delay:
hours: 1
minutes: 0
seconds: 0
milliseconds: 0
What can I configure in order to not reach this daily rate limit?
I have also observed that in my Devices
section, both AC units have a bunch of sensors and diagnostic information. Maybe that’s where my polling slots are going.