|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#2
|
|||
|
|||
|
Re: Victor 888 by Arduino Uno R3
Try something like this just to test if your electrical setup works.
Code:
#include <Servo.h>
Servo victor1;
void setup(){
victor1.attach(2);
}
void loop(){
victor1.write(180);//0 being full backwards 90 being no motion and 180 being full forwards
}
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|