arranged by katano

Dependencies:   MPU9150_DMP Neon_F303K8 QuaternionMath iSDIO mbed-rtos mbed

Fork of Neon_F303K8 by Yasuhiro ISHII

Revision:
1:73543a1fbe62
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/led.h	Mon May 16 15:21:20 2016 +0000
@@ -0,0 +1,15 @@
+#ifndef __LED_H__
+#define __LED_H__
+
+#include "configure.h"
+
+typedef struct {
+    uint8_t r;
+    uint8_t g;
+    uint8_t b;
+} Led __attribute__((__packed__));
+
+extern Led LedStripe[NUMBER_OF_LEDS];
+
+
+#endif /* __LED_H__ */