vers 2

Dependencies:   Affichagesp2 C12832 LM75B WifiEsp8266 Acquisitionentreesp2

Files at this revision

API Documentation at this revision

Comitter:
schnf30
Date:
Sun Jun 06 18:08:33 2021 +0000
Parent:
1:c7890e7c361e
Commit message:
3

Changed in this revision

AffichageLcd.lib Show diff for this revision Revisions of this file
Affichagesp2.lib Show annotated file Show diff for this revision Revisions of this file
WifiEsp8266.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r c7890e7c361e -r 6dc5c193940c AffichageLcd.lib
--- a/AffichageLcd.lib	Sun Jun 06 12:18:28 2021 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://os.mbed.com/users/schnf30/code/AffichageLcdsp2/#0a8c2d630387
diff -r c7890e7c361e -r 6dc5c193940c Affichagesp2.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Affichagesp2.lib	Sun Jun 06 18:08:33 2021 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/schnf30/code/Affichagesp2/#1c7d356662fa
diff -r c7890e7c361e -r 6dc5c193940c WifiEsp8266.lib
--- a/WifiEsp8266.lib	Sun Jun 06 12:18:28 2021 +0000
+++ b/WifiEsp8266.lib	Sun Jun 06 18:08:33 2021 +0000
@@ -1,1 +1,1 @@
-https://os.mbed.com/users/schnf30/code/WifiEsp8266sp2/#933bf1dbce6d
+https://os.mbed.com/users/schnf30/code/WifiEsp8266/#507030c06a97
diff -r c7890e7c361e -r 6dc5c193940c main.cpp
--- a/main.cpp	Sun Jun 06 12:18:28 2021 +0000
+++ b/main.cpp	Sun Jun 06 18:08:33 2021 +0000
@@ -3,7 +3,7 @@
 #include "platform/mbed_thread.h"
 #include "LM75B.h"
 #include "acquisition.h"
-#include "affichage.h"
+#include "affichagesp2.h"
 #include "wifiesp8266.h"
 
 float VitFluxAir = 0;
@@ -14,7 +14,7 @@
 float Aic = 0;
 
 RawSerial PC(USBTX, USBRX);
-WifiEsp8266 Wifi(PA_11,PA_12); // WifiEsp8266(PinName Txd, PinName Rxd, PinName En);
+WifiEsp8266 Wifi(PA_11,PA_12); // WifiEsp8266(PinName Txd, PinName Rxd,float _timeout);
 DigitalOut En(PC_11);
 LM75B sensor(D14,D15);
 
@@ -32,7 +32,7 @@
     bool ecranchange=false;
     AnalogIn Pot1(A0);
     AnalogIn Pot2(A1);
-    AffichageEcran();
+    AffichageEcransp2();
     PC.baud(921600);
     PC.printf("Hello je suis SP2\r\n");
     test1.attach(&event1,1);
@@ -78,7 +78,7 @@
             ecranchange=true;
         }
         if (ecranchange) {
-            AffichageEcran();
+            AffichageEcransp2();
             ecranchange=false;
         }
     }