Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- erick_naranjo
- Date:
- 2021-09-01
- Revision:
- 1:e7e627e1507b
- Parent:
- 0:6c7726a080ec
File content as of revision 1:e7e627e1507b:
#include <mbed.h> //-------------------------------- //Erick Santiago Naranjo Rojas //Tarea 2 DMIC //-------------------------------- DigitalOut led1(LED1); int main(void){ while(1){ led1 = 1; //Habilita pin del led(enciende led) wait_us(500); //espera 500 milisegundos led1 = 0; //Dehabilita el pin del led(apaga led) wait_us(500); //espera 500 milisegundos } } //En