Initial commit

This commit is contained in:
ChK
2026-02-01 13:25:03 +01:00
commit b20d92535b
39 changed files with 6260 additions and 0 deletions

19
robot/RobotMotorPosition.js Executable file
View File

@@ -0,0 +1,19 @@
module.exports = class RobotMotorPosition{
constructor(x, y, z, a, b, c, e = 0.0){
this.x = x; // X-Motor
this.y = y; // Y-Motor
this.z = z;
this.a = a; // A-Motor: Ellbow-LowerArm turner
this.b = b; // B-Motor: Hand up-down
this.c = c; // C-Motor: Hand twist
this.e = e; // Finger open
this.time = Date.now();
}
}