Ian Krase / Mbed 2 deprecated NeoQuadrapod

Dependencies:   ArthropodIK MMA8451Q MODSERIAL TSI TextLCD mbed-rtos mbed

Fork of Quadrapod by Ian Krase

PolyServo/PolyServo.h

Committer:
ikrase
Date:
2015-06-26
Revision:
7:68e488d28f67
Parent:
6:ad53aa8b7b30

File content as of revision 7:68e488d28f67:

#ifndef POLYSERVO_H
#define POLYSERVO_H

#include "mbed.h"
#include <vector>


#define SERVO_DISABLED -1       // This is going to take raw servo microsecond entries. 
#define SERVO_PPM_PERIOD 20000  // In microseconds

class Polyservo {
public:
    
    std::vector<DigitalOut *> servos;
    //DigitalOut * servos; 
    
    bool global_enable; 
    int position[]; 
    int numservos; 
    
    Polyservo(DigitalOut servo_pins[], int num_pins);
    void set_position(int pos);
    
    
    
    
    
private: 
    
    Ticker period_tick; 
    std::vector<Timeout *> servo_times;
    //Timeout * servo_times; 
    
    
    
    
    
    


};



#endif