TAREA2_DMIC

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tarea_2.cpp Source File

tarea_2.cpp

00001 //Cristian Alejandro Hernandez Gomez
00002 //DMIC
00003 
00004 #include <mbed.h>
00005 
00006 DigitalOut led_blink(LED1);
00007  
00008 int main (void){
00009    while(1){
00010         led_blink=1; 
00011         wait_ms(1000);
00012         
00013         led_blink=0;
00014         wait_ms(1000);
00015               
00016     }
00017 
00018 }