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

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

Revision:
0:52b8975f1dd9
Child:
1:248129e96f43
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/6LedBar.h	Sun May 21 13:10:19 2017 +0000
@@ -0,0 +1,19 @@
+#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
\ No newline at end of file