Description
I'm using the PID Library for a balancing robot and it seems to be exhibiting strange behavior.
You can view the complete code here:
https://github.com/owhite/balancing_bot/blob/master/src/balancing.ino
but I believe the relevant section is here:
void loop() {
.
.
.
tmp2 = micros();
MPUupdate();
tmp1 = micros();
pid.Compute();
tmp3 = tmp1 - tmp2;
Serial.print(position);
Serial.print(" ");
Serial.print(output);
Serial.print(" ");
Serial.println(tmp3);
// send output/PWM to the motors
.
.
.
}
The issue is this. MPUupdate() sets position by performing an I2C call to a MPU9250 module, and it returns position - the tilt of the MPU09250. Then the code calls pid.Compute(). The problem is that some calls to MPUupdate() take a lot longer than others and when it does the return values from pid.Compute() jump to some extreme value.
This is an example of print output:
179.87 3.82 72
179.87 3.82 72
179.87 3.82 71
179.87 3.82 74
179.87 3.82 70
179.87 41.32 757 (see below)
179.87 41.32 71
179.87 41.32 71
179.87 41.32 71
179.87 41.32 72
179.87 3.93 71
179.87 3.93 71
179.87 3.93 71
179.87 3.93 71
179.87 3.93 71
179.87 3.93 70
179.87 3.93 71
179.87 3.93 71
179.87 3.93 74
179.87 3.93 71
179.87 3.93 71
179.87 16.02 760
179.87 16.02 71
179.87 16.02 70
179.87 16.02 71
179.87 16.02 72
179.87 3.97 71
179.87 3.97 71
179.87 3.97 71
179.87 3.97 75
179.87 3.97 71
179.87 -10.11 757
179.87 -10.11 71
179.87 -10.11 75
179.87 -10.11 70
179.87 3.93 71
179.87 3.93 72
179.87 3.93 70
The fifth line down from that out is an example.
179.87 41.32 757
Where I have an unusually long delay time and it gives me a much larger PID value even though the position is the same. So basically when there is a long call to the MPU it screws up my pid values, and then my balancing robot jitters. Any suggestions?