using a modded(continuous) servo
hey everyone! modded couple servos while back, , i'm trying use them in arduino. understand can't use standard servo library, instead send analog signal it(pwm). correct? anyways not working. here's schematic:
![](https://www.circuitlab.com/circuit/3zva5s/screenshot/1024x768/)
and code
and code
code: [select]
int servoone = 9;
int servotwo = 10;
void setup()
{
pinmode(servoone, output);
pinmode(servotwo, output);
}
void loop()
{
analogwrite(servoone, 255);
analogwrite(servotwo, 255);
}
what kind of servos? how modded? if regular rc servos still use servo library. pulse width 1.5ms stop, 1.0 ms fast reverse , 2.0 ms forward fastest.
Arduino Forum > Using Arduino > General Electronics > using a modded(continuous) servo
arduino
Comments
Post a Comment