can't push chnages :(

Fork of FBRDash by Michael Allan

inc/LEDS.h

Committer:
intrinseca
Date:
2012-06-25
Revision:
2:825f572902c6
Parent:
1:b3907b8d9f65
Child:
5:177520d43c87

File content as of revision 2:825f572902c6:

#ifndef FBRDASH_LEDS_H
#define FBRDASH_LEDS_H

#include "mbed.h"

class LEDS
{
    public:
        LEDS(PwmOut _pins[]);
        void refresh(float rpm);
        
        static const int NUM_LEDS = 6;
    
    private:
        PwmOut* pins;
    
    //revs represented by last red LED
    static const int LIMIT = 18000.0;
    
    //number of revs per LED
    static const int RESOLUTION = LIMIT / NUM_LEDS;
        
};

#endif