Development

This commit is contained in:
Astatin3
2023-01-23 19:53:30 -07:00
parent 50914581ca
commit e0eb4e3ea9
2 changed files with 24 additions and 0 deletions
@@ -0,0 +1,7 @@
public class Arm {
// Moves arm to distence [dist] then returns new ang
public int funtion moveArm(int dist) {
// Move arm code
return newDist;
}
}
@@ -0,0 +1,17 @@
public class claw {
// Opens claw
public void funtion openClaw() {
// Open claw
}
// Closes claw
public void function closeClaw() {
//Close claw
}
// Rotate wrist
public int function rotClaw(int rot) {
//Rotate wrist to ROT
return newRot;
}
}