fix: opentherm polling interval reduced

This commit is contained in:
Yurii
2024-01-14 15:56:04 +03:00
parent 7463687f1b
commit 60c860bc26

View File

@@ -143,7 +143,7 @@ void setup() {
tMqtt = new MqttTask(false, 500);
Scheduler.start(tMqtt);
tOt = new OpenThermTask(false, 1000);
tOt = new OpenThermTask(false, 750);
Scheduler.start(tOt);
tSensors = new SensorsTask(true, EXT_SENSORS_INTERVAL);