fix min pressure, data typ was to small

This commit is contained in:
2023-08-02 00:01:26 +02:00
parent be64fe8fc7
commit d6ea4b970f
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class Pump {
private:
static const uint8_t delayCheckSensor = 100;
static const uint8_t delayReadPressure = 33;
static const uint8_t minPressure = 400;
static const uint16_t minPressure = 400;
static const uint16_t restartPressure = 250;
static const uint16_t blinkTime = 1000;
static const uint16_t delayReadFlow = 1000;