A program for showing our robot to kids.
This project let them write a simple code to drive the robot around and surpass obstacles that stand in its way.
The kids learn to code basic Java programs by calling the prewritten functions like moveForwardInSeconds
, turnLeftInAngle
, and others.
All the user has to do is to write in Program.java
the commands that they want the robot to do, and thats it!
moveForwardInSeconds(double seconds)
moveBackwardInSeconds(double seconds)
turnLeftInDegrees(double degrees)
turnRightInDegrees(double degrees)
RobotMap.java
.subsystems/Drivetrain.java
.