mirror of
https://github.com/Laxilef/OTGateway.git
synced 2025-12-11 02:34:29 +05:00
fix: added min DHW flow rate of 0.1 l/min
This commit is contained in:
@@ -963,11 +963,13 @@ protected:
|
||||
return false;
|
||||
}
|
||||
|
||||
vars.sensors.dhwFlowRate = convertVolume(
|
||||
value = convertVolume(
|
||||
value / settings.opentherm.dhwFlowRateMultiplier,
|
||||
settings.opentherm.unitSystem,
|
||||
settings.system.unitSystem
|
||||
);
|
||||
|
||||
vars.sensors.dhwFlowRate = value > 0.09f ? value : 0.0f;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user