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@13:a837e142743f, 2019-04-10 (annotated)
- Committer:
- ascheriit
- Date:
- Wed Apr 10 20:07:13 2019 +0000
- Revision:
- 13:a837e142743f
- Parent:
- 12:c73ef3123eb8
- Child:
- 14:006b29435bdb
L'affichage marche.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ascheriit | 8:ae92c165d2da | 1 | #include "mbed.h" |
| ascheriit | 8:ae92c165d2da | 2 | #include "LCD_DISCO_F429ZI.h" |
| ascheriit | 8:ae92c165d2da | 3 | |
| ascheriit | 13:a837e142743f | 4 | #define TailleMatrice 16 /*va peut être changer*/ |
| ascheriit | 8:ae92c165d2da | 5 | |
| ascheriit | 12:c73ef3123eb8 | 6 | struct matrice { |
| ascheriit | 13:a837e142743f | 7 | int tailleX; |
| ascheriit | 13:a837e142743f | 8 | int tailleY; |
| ascheriit | 12:c73ef3123eb8 | 9 | char tableau[TailleMatrice][TailleMatrice]; |
| ascheriit | 12:c73ef3123eb8 | 10 | } ; |
| ascheriit | 8:ae92c165d2da | 11 | |
| ascheriit | 8:ae92c165d2da | 12 | 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. |
| ascheriit | 8:ae92c165d2da | 13 | |
| ascheriit | 8:ae92c165d2da | 14 | void DM_Test(); |
| ascheriit | 8:ae92c165d2da | 15 | |
| ascheriit | 8:ae92c165d2da | 16 | |
| ascheriit | 8:ae92c165d2da | 17 | //Elements de la banque de symboles |
| ascheriit | 8:ae92c165d2da | 18 | |
| ascheriit | 13:a837e142743f | 19 | matrice *BS_smile(); //un petit dessin pour des tests |
| ascheriit | 13:a837e142743f | 20 | |
| ascheriit | 13:a837e142743f | 21 | //liste de chiffres arabes |
| ascheriit | 13:a837e142743f | 22 | matrice *BS_0(); |
| ascheriit | 13:a837e142743f | 23 | matrice *BS_1(); |
| ascheriit | 13:a837e142743f | 24 | matrice *BS_2(); |
| ascheriit | 13:a837e142743f | 25 | matrice *BS_3(); |
| ascheriit | 13:a837e142743f | 26 | matrice *BS_4(); |
| ascheriit | 13:a837e142743f | 27 | matrice *BS_5(); |
| ascheriit | 13:a837e142743f | 28 | matrice *BS_6(); |
| ascheriit | 13:a837e142743f | 29 | matrice *BS_7(); |
| ascheriit | 13:a837e142743f | 30 | matrice *BS_8(); |
| ascheriit | 13:a837e142743f | 31 | matrice *BS_9(); |
