Browse Source

Init Kp, Ki, Kd to 0

pull/1/head
Scott Lahteine 9 years ago
committed by Richard Wackerbarth
parent
commit
dbd4c17096
  1. 2
      Marlin/temperature.cpp

2
Marlin/temperature.cpp

@ -209,7 +209,7 @@ void PID_autotune(float temp, int extruder, int ncycles) {
long bias, d;
float Ku, Tu;
float Kp, Ki, Kd;
float Kp = 0, Ki = 0, Kd = 0;
float max = 0, min = 10000;
#if HAS_AUTO_FAN

Loading…
Cancel
Save