VingVingRobot (วิ่งๆ โรบอท) A path follower and robot management designed to revolutionize autonomous systhem in robotics including path follower movement , Servo controling , Camera color detecting
Caution
Beta version open to develope in school team no docs yet (Until testing done)
repositories {
maven {
url = uri("https://maven.vingving.jnx03.xyz")
}
}
dependencies {
implementation("com.vingvingrobot:core:0.0.1")
implementation("com.vingvingrobot:ftc:0.0.1")
}VingPath path = new VingPath.Builder()
.addWaypoint(new Waypoint.Builder(10, 10)
.setSpeed(0.5) // 50% speed
.addAction(() -> servo.setPosition(0.8))
.rotateTo(Math.toRadians(45))
.stopAndWait(1.0)
.build())
.build();```