Nathan MONNIER
/
Projet_S3
Projet_S3
Diff: draw.h
- Revision:
- 13:ae981a954016
- Parent:
- 11:45d8d1f609a8
- Child:
- 14:5b7129157c7b
--- a/draw.h Sat Jan 08 19:06:28 2022 +0000 +++ b/draw.h Fri Feb 04 09:51:52 2022 +0000 @@ -6,35 +6,30 @@ acenter = 15 ; // exemple pour le plaisir mais non appelée } -int cpt_line; -int cpt_line_h; -int cpt_line2; -int cpt_line_h2; -int timer_line; -int timer_line2; + int delay; -char entrer=0; +static char entrer=0; int tempo=0; void draw() // ici vous exprimez vos dessins (jamais de delai dans cette boucle) { // DEBUT de vos dessins - /*if(serie.readable()){ - entrer=serie.getc(); - tempo=5000; + tempo=tempo--; + if(tempo<0){ + tempo=0; + entrer=0; } - entrer=serie.getc();*/ switch(entrer){ case 'a': - charr(15,15,'1'); + charr(15,15,1); break; case 'b': - charr(15,15,'2'); + charr(15,15,2); break; case 'c': - charr(15,15,'3'); + charr(15,15,3); break; case 'z': - charr(15,15,'0'); + charr(15,15,0); break; } pix(-ccx+15,-ccy+15,5,0,0);