V1 des afficheur 8x8 RGB

Revision:
0:035a2e99ccdc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Flipper_Affichage.h	Thu Dec 16 11:51:00 2021 +0000
@@ -0,0 +1,29 @@
+#ifndef FUNC_H
+#define FUNC_H
+#include "WS2812.h"
+#include "PixelArray.h"
+
+#define WS2812_BUF 128
+#define NUM_COLORS 128
+
+//Prototype
+void EgalTab(int[][4],int[][4]);
+void InitDisplay(char ,char,int,int,int);
+void NewDisplay();
+void Display();
+
+/*
+    0=  noir    0x000000
+    1=  rouge   0xff0000
+    2=  vert    0x00ff00
+    3=  bleu    0x0000ff
+    4=  jaune   0xffff00
+    5=  marron  0x582900
+    6=  blanc   0xffffff
+    7=  rose    0xFA25CB
+    8=  gris    0x606060
+    9=  violet  0x7f00ff
+    */
+
+
+#endif
\ No newline at end of file