Bob Merrison-Hort / Mbed 2 deprecated elec350

Dependencies:   mbed

Fork of elec350 by Bob Merrison-Hort

led.h

Committer:
rmerrisonhort
Date:
2015-10-13
Revision:
0:753cf4c2738f
Child:
7:aa63d1e53be6

File content as of revision 0:753cf4c2738f:

#ifndef _LED_H_
#define _LED_H_

#include "mbed.h"
#include <string>

class Led {
    private:
        PinName pinName;
        DigitalOut* pin;
    public:
        Led(string name);
        void SwitchOn();
        void SwitchOff();
};

#endif