TAREA2_DMIC

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
alejandrodmic
Date:
Wed Sep 01 03:36:14 2021 +0000
Commit message:
Tarea_2

Changed in this revision

mbed.bld Show annotated file Show diff for this revision Revisions of this file
tarea_2.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Sep 01 03:36:14 2021 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tarea_2.cpp	Wed Sep 01 03:36:14 2021 +0000
@@ -0,0 +1,18 @@
+//Cristian Alejandro Hernandez Gomez
+//DMIC
+
+#include <mbed.h>
+
+DigitalOut led_blink(LED1);
+ 
+int main (void){
+   while(1){
+        led_blink=1; 
+        wait_ms(1000);
+        
+        led_blink=0;
+        wait_ms(1000);
+              
+    }
+
+}