wu

Dependencies:   mbed-rtos mbed

Fork of Boboobooov4 by kao yi

servo_api.h

Committer:
backman
Date:
2014-07-02
Revision:
20:30799cbda86b
Parent:
9:33b99cb45e99

File content as of revision 20:30799cbda86b:




#include "mbed.h"



class BX_servo{
    
    
    public:
        float set_angle(float a);
    
        BX_servo(void);
    
    
    
    
    
    
    
    private:
    
        //-90~0~90
        float angle ;
    
        PwmOut* servo_in;
         //0~36  // 18 mid  
      
    
    };