V1 des afficheur 8x8 RGB

Flipper_Affichage.h

Committer:
bastien_07
Date:
2021-12-16
Revision:
0:035a2e99ccdc

File content as of revision 0:035a2e99ccdc:

#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