Ejemplo n.º 1
0
float rightDegree(float angleDegree, float a, float speed) {
    return rotationDegree(-angleDegree, a, speed);
}
Ejemplo n.º 2
0
float rotationMilliDegree(float angleMilliDegree, float a, float speed) {
    rotationDegree(angleMilliDegree * 0.001f, a, speed);

    return angleMilliDegree;
}
Ejemplo n.º 3
0
float leftDegree(float angleDegree, float a, float speed) {
    return rotationDegree(angleDegree, a, speed);
}
Ejemplo n.º 4
0
void rightDegree(PidMotion* pidMotion, float angleDegree, float a, float speed, OutputStream* notificationOutputStream) {
    rotationDegree(pidMotion, -angleDegree, a, speed, notificationOutputStream);
}