Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spikes-2212-programming-guild/project-athena
A code we use to let kids experience the basics of coding, in a fun way!
https://github.com/spikes-2212-programming-guild/project-athena
experience learning robotics
Last synced: about 2 months ago
JSON representation
A code we use to let kids experience the basics of coding, in a fun way!
- Host: GitHub
- URL: https://github.com/spikes-2212-programming-guild/project-athena
- Owner: Spikes-2212-Programming-Guild
- License: mit
- Created: 2022-02-07T11:08:36.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-12T07:18:42.000Z (2 months ago)
- Last Synced: 2024-12-12T07:25:41.558Z (2 months ago)
- Topics: experience, learning, robotics
- Language: Java
- Homepage:
- Size: 185 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project-Athena
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!The Commands that the user can call are:
moveForwardInSeconds(double seconds)
moveBackwardInSeconds(double seconds)
turnLeftInDegrees(double degrees)
turnRightInDegrees(double degrees)
If you want to use it, you can!
All you have to do is:
RobotMap.java
.subsystems/Drivetrain.java
.