LUIS

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "fct.h"
00003 #define LAVABRE 5
00004 
00005 int main() {
00006 
00007     init();
00008     wait(LAVABRE);
00009     start_scan();
00010     wait(2);
00011     get_scan();
00012     while(1)
00013     {
00014         wait(1);
00015     }
00016 }
00017 
00018 
00019 
00020