myCobot icon indicating copy to clipboard operation
myCobot copied to clipboard

getCoords and getAngles does not return any real information

Open skywo1f opened this issue 2 years ago • 0 comments

Angles angles = myCobot.getAngles(); delay(100); #if (!defined MyCobot_Uno) Serial.print("angles = "); for (int i = 0; i < 6; i++) { Serial.print(angles[i]); Serial.print(" "); } Serial.println(); #endif myCobot.writeAngles({0, 0, 0, 0, 0, 0}, 30); delay(5000);

Gives:

angles = -1000.00 -1000.00 -1000.00 -1000.00 -1000.00 -1000.00

same for getCoords

skywo1f avatar Feb 06 '23 17:02 skywo1f