I'm new in robotics. I bought a mini robot ( Link ), which i rebuilt a little. Now it has legs and arms. This little robot has 4 little servos (Link). There are two wheels attached to two of these servos. I'd like to spin them, so the robot will "roll", but unfortinatly it is trickier than i tought. The servos can rotate in 360 degrees(i can manually turn them), no problem with that. The problem is, that no matter how i try, the servo will turn only 180 degrees. So obviously i am making something wrong. If i write myServo.write(0) the servo rotates 180 degrees, and if i write myServo.write(180), the servo rotates 180 degrees but in the other direction. How can i make it spin in only one direcvtion(360 degrees, more than 360 degrees)?
Thanks in advance!
myServo.write()would not specify an angle but a rotation speed, making it turn forever, untilmyServo.write(90). The fact you can force it turn more than 360° does not mean it can do it programmatically. – jfpoilpret Dec 25 '14 at 22:12