Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LCD_DISCO_F429ZI mbed BSP_DISCO_F429ZI
TraceMatrix/Trace.h
- Committer:
- ascheriit
- Date:
- 2019-04-10
- Revision:
- 13:a837e142743f
- Parent:
- 12:c73ef3123eb8
- Child:
- 14:006b29435bdb
File content as of revision 13:a837e142743f:
#include "mbed.h"
#include "LCD_DISCO_F429ZI.h"
#define TailleMatrice 16 /*va peut être changer*/
struct matrice {
int tailleX;
int tailleY;
char tableau[TailleMatrice][TailleMatrice];
} ;
void DisplayMatrix(int,int,matrice*,int,long long int); //Cett foction prend en argument une position initialle, une matrce (représentée par un nombre binaire de coté² bits) ,une taille de pixel et une couleur et trace ce qui est repésenté par la matrice.
void DM_Test();
//Elements de la banque de symboles
matrice *BS_smile(); //un petit dessin pour des tests
//liste de chiffres arabes
matrice *BS_0();
matrice *BS_1();
matrice *BS_2();
matrice *BS_3();
matrice *BS_4();
matrice *BS_5();
matrice *BS_6();
matrice *BS_7();
matrice *BS_8();
matrice *BS_9();
