AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/Leds.h

Committer:
sillevl
Date:
2014-12-13
Revision:
5:be598835bab0
Parent:
4:2c91c9eccf3a
Child:
11:50572814f73e

File content as of revision 5:be598835bab0:

#ifndef LEDS_H
#define LEDS_H

#include "mbed.h"

struct LedPins{
    PinName left;
    PinName right;
};

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