1
0
Fork 0

Changed the value of Kp making the robot more centered

Dieser Commit ist enthalten in:
Γιώργος Αντρέου 2022-06-05 16:29:48 +03:00
Ursprung 0539ebdcb8
Commit ca072ae8bb
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -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;