refactor xbee complet

Dependencies:   mbed-rtos mbed

Fork of Repo_Noeud_Mobile by Projet_S5

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ConsolePrint.h Source File

ConsolePrint.h

00001 #include "mbed.h"
00002 
00003 class ConsolePrint
00004 {
00005     public :
00006         ConsolePrint();
00007         ~ConsolePrint();
00008     
00009         void Afficher(char * message);
00010     private:
00011         Serial* pc;
00012 };