Aff lcd sp1

Revision:
1:7c64db40ac62
Parent:
0:c2bccd69cfd3
--- a/affichage.cpp	Sun May 23 13:26:33 2021 +0000
+++ b/affichage.cpp	Sun Jun 06 12:19:46 2021 +0000
@@ -4,12 +4,13 @@
 
 C12832 lcd(D11, D13, D12, D7, D10);
 
-void AffichageEcran(float mesure,float consigne)
+void AffichageEcran(void)
 {
-        lcd.locate(0,3);
-        lcd.printf("Mesuree %03.1f\n\r",mesure);
-        lcd.locate(0,14);
-        lcd.printf("Cons Angle Inc %03.1f\n\r",consigne);
-    }
-    
-    
\ No newline at end of file
+    lcd.locate(0,0);
+    lcd.printf("Vit flux air %0.0fkm/h\n\r",VitFluxAir);
+    lcd.locate(0,11);
+    lcd.printf("Consigne flux Air %0.0fkm/h\n\r",ConsigneFluxAir);
+    lcd.locate(0,22);
+    lcd.printf("Temperature %0.0fC\n\r",Temperature);
+}
+