1
0

Initial commit

This commit is contained in:
2024-03-16 19:57:51 +01:00
commit 88b719ac2f
5 changed files with 2321 additions and 0 deletions

22
Sample.pde Normal file
View File

@@ -0,0 +1,22 @@
import java.util.Date;
static class Sample {
final int timestamp;
final boolean drawTimeTick;
float proportional, integral, derivative;
float speed, acceleration;
float consigne;
float error;
int servo;
int state;
float kp, ki, kd;
int speedMin, speedMax;
int minSatellites, satellites;
boolean switchFlag, speedDiffFlag, minSpeedFlag, maxSpeedFlag, brakeFlag;
boolean relay;
Sample(int timestamp, boolean drawTimeTick) {
this.timestamp = timestamp;
this.drawTimeTick = drawTimeTick;
}
}