3

Revision:
0:5eab751035d2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/affichagesp1.cpp	Sun Jun 06 18:09:43 2021 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+#include "C12832.h"
+#include "affichagesp1.h"
+
+C12832 lcd(D11, D13, D12, D7, D10);
+
+void AffichageEcransp1(void)
+{
+    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);
+}