L_DelOff 2024-03-03 13:46:43 +03:00
parent 7b5205d8c3
commit 8e65a3f9c6
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ float calcPower(int temperature) {
if (temperature > T_MAX) {
value = 1.0f;
}
if INVERT_CONTROL_CURVE {
if (INVERT_CONTROL_CURVE) {
return (1.0f-value);
} else {
return value;