Skip to content

Commit a45165b

Browse files
authored
Improved brew time temp output.
Based on long time testing.
1 parent 65f623e commit a45165b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/functional/just_do_coffee.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ extern unsigned long steamTime;
77
inline static float TEMP_DELTA(float d, const SensorState &currentState) {
88
return (
99
d * (currentState.pumpFlow < 1.f
10-
? currentState.pumpFlow / 9.f
11-
: currentState.pumpFlow / 10.f
10+
? currentState.pumpFlow / 7.f
11+
: currentState.pumpFlow / 5.f
1212
)
1313
);
1414
}

0 commit comments

Comments
 (0)