Isabelle Murollo
/
Projeto_CCM_Maquinas_MotorPasso
Centro de Controle de Motores
main.cpp
- Committer:
- isabellemm
- Date:
- 2022-03-09
- Revision:
- 3:2b261e3c05db
- Parent:
- 2:46bbc8fadd10
File content as of revision 3:2b261e3c05db:
#include "mbed.h" DigitalOut led(D13); int main(void) { while(1) { led = 1; //LED on wait(0.5); led = 0; //LED off wait(0.5); } }