Simple 6-LED bar library. Provides some useful functions.

Simple 6 leds bar library. It allows you to control individual leds, and provides masks.

6LedBar.h

Committer:
kryksyh
Date:
2017-05-21
Revision:
0:52b8975f1dd9
Child:
1:248129e96f43

File content as of revision 0:52b8975f1dd9:

#ifndef LED_BAR_H
#define LED_BAR_H

#include "mbed.h"

class LedBar {

public:
    LedBar(PinName p0,
           PinName p1,
           PinName p2,
           PinName p3,
           PinName p4,
           PinName p5);

};


#endif //LED_BAR_H