Projet_S3

Dependencies:   mbed

Revision:
10:6f9340af7926
Parent:
8:cfcf73c16fab
Child:
13:ae981a954016
--- a/serie.h	Thu Sep 09 08:51:23 2021 +0000
+++ b/serie.h	Tue Sep 14 13:45:11 2021 +0000
@@ -5,10 +5,10 @@
  {  // ici on decode un exemple simple 
     // un 'a' met posx = 10  un  'b' met  posx = 20 
    arecv =  serie.getc();
-   if (arecv == 'a') // c'est  un 'a'
-      { posx = 10 ; 
+   if (arecv == 'a') // c'est  un 'a' qui arrive
+      { posx = 10 ;   // la position x changera 
       }
-   if (arecv == 'b')// c'est B
+   if (arecv == 'b')// c'est  un 'b' qui arrive
       { posx = 20 ; 
       }     
    return;