diff --git a/pid-example/pid-example.ino b/pid-example/pid-example.ino index b2547cd..8ef8d47 100644 --- a/pid-example/pid-example.ino +++ b/pid-example/pid-example.ino @@ -4,9 +4,9 @@ QTRSensors qtr; const uint8_t SensorCount = 8; uint16_t sensorValues[SensorCount]; -float Kp = 0.07; //set up the constants value +float Kp = 0.06; //set up the constants value float Ki = 0.0008; -float Kd = 0.6; +float Kd = 0.7; int P; int I; int D;