3

Committer:
schnf30
Date:
Sun Jun 06 18:07:34 2021 +0000
Revision:
0:1c7d356662fa
3

Who changed what in which revision?

UserRevisionLine numberNew contents of line
schnf30 0:1c7d356662fa 1 #include "mbed.h"
schnf30 0:1c7d356662fa 2 #include "C12832.h"
schnf30 0:1c7d356662fa 3 #include "affichagesp2.h"
schnf30 0:1c7d356662fa 4
schnf30 0:1c7d356662fa 5 C12832 lcd(D11, D13, D12, D7, D10);
schnf30 0:1c7d356662fa 6
schnf30 0:1c7d356662fa 7 void AffichageEcransp2(void)
schnf30 0:1c7d356662fa 8 {
schnf30 0:1c7d356662fa 9 lcd.locate(0,0);
schnf30 0:1c7d356662fa 10 lcd.printf("Pression[0] %0.0fPa\n\r",pression[0]);
schnf30 0:1c7d356662fa 11 lcd.locate(0,11);
schnf30 0:1c7d356662fa 12 lcd.printf("Cons Angle Inc %0.0f\n\r",Aic);
schnf30 0:1c7d356662fa 13 lcd.locate(0,22);
schnf30 0:1c7d356662fa 14 lcd.printf("Vit flux air %0.0fkm/h\n\r",VitFluxAir);
schnf30 0:1c7d356662fa 15 }