can't push chnages :(

Dependencies:   PinDetect TextLCD mbed

Fork of FBRDash by Michael Allan

inc/LEDS.h

Committer:
tomontoast
Date:
2012-06-25
Revision:
3:cb334e1d31c6
Parent:
2:825f572902c6

File content as of revision 3:cb334e1d31c6:

#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