mirror of
https://github.com/Team4388/2023WayOfTheRobot.git
synced 2026-06-09 00:37:59 -06:00
17 lines
312 B
Java
17 lines
312 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|