StateHandler: stateAuto: fan speed control by changing pressure value. Without PID regulation.

This commit is contained in:
Evgenii Meshcheriakov
2022-10-18 17:43:13 +03:00
parent 4a414ea70f
commit 2de40ba7c0
3 changed files with 22 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ int PressureWrapper::getPressure() {
int16_t pressure = 0;
if(!getRawPressure ()) {
unsigned int i = 0;
while(i<7200000) i++;
while(i<7200) i++;
getRawPressure ();
i = 0;
}