Hey there.
I have build a simple robot-arm. When i stop motion (with a 90 Degree angle between upper and lower part), the arm does not hold its position. here is what i tested on NXJ ( not remote):
boolean isRunning = true;
while (isRunning){
if (InputManager.isJustReleased(InputManager.ESCAPE)){
isRunning = false;
}
Motor.A.stop();
}
Then i tried lock(100) instead of stop() and both together without any result. In further tries i initially set Motor.A.setPower(100) and Motor.A.setBrakePower(100), without any changes. I tested friction by rotating manually robot-arm but it seemed never to be harder or less hard ( even if NXJ is powered off.) I've read through forum, but i did not find a solution.
Has anyone an idea what is wrong? Did i miss something?
