This program uses the potentiometers to set the servo positions. Note that it will need additional power (6v) that can be supplied through the 1.3mm tip-positive DC conenctor

Dependencies:   Servo mbed

main.cpp

Committer:
chris
Date:
2012-10-15
Revision:
0:d1fc4eddceab

File content as of revision 0:d1fc4eddceab:

#include "mbed.h"
#include "Servo.h"

Servo s1(p21);
Servo s2(p22);

AnalogIn p1(p19);
AnalogIn p2(p20);

int main() {
    while(1) {
        s1=p1;
        s2=p2;        
        wait(0.1);
    }
}