My modifications/additions to the code

Dependencies:   ADXL345 ADXL345_I2C IMUfilter ITG3200 Servo fishgait mbed-rtos mbed pixy_cam

Fork of robotic_fish_ver_4_8 by jetfishteam

PwmReader.h

Committer:
sandwich
Date:
2014-07-11
Revision:
25:4f2f441eceec
Parent:
8:0574a5db1fc4

File content as of revision 25:4f2f441eceec:

#pragma once
#include "mbed.h"

class PwmReader
{
    public:
    PwmReader();
    PwmReader(PinName pwmInPort, float min = 0.0, float max = 1.0);
    ~PwmReader();
    
    float getDuty();         //0 to 1
    
    protected:
    void pwmRise();    
    void pwmFall();    
    void pwmRise2();    
    void pwmFall2(); 
    
    private:
    InterruptIn* di;
    int lastRise;
    int period;
    float duty;
    Timer t;
    float pwmMin;
    float pwmMax; 
    
};