NOT FINISHED YET!!! My first try to get a self built fully working Quadrocopter based on an mbed, a self built frame and some other more or less cheap parts.

Dependencies:   mbed MODI2C

Servo_PWM/Servo_PWM.cpp

Committer:
maetugr
Date:
2012-11-17
Revision:
21:c2a2e7cbabdd
Parent:
15:753c5d6a63b3
Child:
22:d301b455a1ad

File content as of revision 21:c2a2e7cbabdd:

#include "Servo_PWM.h"
#include "mbed.h"

Servo_PWM::Servo_PWM(PinName Pin) : ServoPin(Pin) {
    ServoPin.period(0.020);
    ServoPin = 0;
    initialize();
}

void Servo_PWM::initialize() {
    // initialize ESC
    SetPosition(0);  // zero throttle
}

void Servo_PWM::SetPosition(int position) {
    ServoPin.pulsewidth((position+1000)/1000000.0);
}

void Servo_PWM::operator=(int position) {
    SetPosition(position);
}