Katsuya Matsuura / Mbed OS MbedIOTest1015
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 DigitalOut led1(LED1);
00004 
00005 void led1_thread(void const *argument)
00006 {
00007         while(true){
00008             led1=!led1;
00009             Thread::wait(1000);
00010         }
00011     }
00012     
00013     int main(){
00014             Thread thread(led1_thread);
00015             while(true){
00016                 printf("main thread \r\n");
00017                 Thread::wait(2000);
00018             }
00019         }
00020