hi everyone. i was using a botduino board and now i got a ssc-32u and im having trouble uploading programs. do i need to get a driver for the board and do i need to change all the language from the old board to the new one?
here is a copy of the code i have been using to test the board:
[code]#include <Servo.h>
Servo base;
Servo shoulder;
Servo elbow;
Servo wrist;
Servo claw;
int pos = 0;
void setup()
{
base.attach(2);
shoulder.attach(4);
elbow.attach(9);
wrist.attach(;
claw.attach(7);
}
void loop()
{
claw.write(180);
delay (2000);
claw.write(20);
delay (2000);
}[/code]