AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/Leds.h

Committer:
sillevl
Date:
2014-12-13
Revision:
4:2c91c9eccf3a
Child:
5:be598835bab0

File content as of revision 4:2c91c9eccf3a:

#ifndef LEDS_H
#define LEDS_H

#include "mbed.h"

struct LedPins{
    PinName left;
    PinName richt;
};

class Leds{
    
    public:
    Leds(PinName leftPin, PinName rightPin);
};
#endif