Joel Manuel Fernandez Cuyubamba / Mbed 2 deprecated Partie3

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers exercice5.cpp Source File

exercice5.cpp

00001 /*#include "LCD.h" 
00002 void nom(char a[]);
00003 
00004 int main() 
00005     { 
00006   LCD_init(); 
00007   char a[]="FERNANDEZ JOEL" ;
00008   nom(a);
00009      }
00010   
00011 void nom(char a[])
00012     {
00013     int i;
00014     for(i=0;a[i]!=0;i++)
00015     {
00016         display_to_LCD(a[i]);
00017         wait(0.5);
00018     }
00019     }
00020  */