Skip to content

Commit

Permalink
Improved brew time temp output.
Browse files Browse the repository at this point in the history
Based on long time testing.
  • Loading branch information
Zer0-bit committed Nov 14, 2023
1 parent 65f623e commit a45165b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/functional/just_do_coffee.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ extern unsigned long steamTime;
inline static float TEMP_DELTA(float d, const SensorState &currentState) {
return (
d * (currentState.pumpFlow < 1.f
? currentState.pumpFlow / 9.f
: currentState.pumpFlow / 10.f
? currentState.pumpFlow / 7.f
: currentState.pumpFlow / 5.f
)
);
}
Expand Down

0 comments on commit a45165b

Please sign in to comment.