Teste KL25z
main.cpp
- Committer:
- fabiosouzaembarcados
- Date:
- 2021-01-10
- Revision:
- 1:ae72c49f04bb
- Parent:
- 0:9b04af2081c3
File content as of revision 1:ae72c49f04bb:
#include "mbed.h"
DigitalOut myled(LED2);
int main() {
while(1) {
myled = 1;
wait(0.2);
myled =0;
wait(0.2);
}
}
Fábio Souza