Cambio de pin de entrada digital a PA10

Dependencies:   BufferedSerial PinDetect mbed

Fork of DTK-MEGAPACA_NUCLEO by Felícito Manzano

main.cpp

Committer:
hudakz
Date:
2016-08-13
Revision:
2:01df16953268
Parent:
1:f05b1d8380cb
Child:
3:98990a014463

File content as of revision 2:01df16953268:

#include "MapleMini.h"
#include "mbed.h"
 
Serial      pc(PA_2, PA_3);
DigitalOut  myled(LED1);
 
int main() {
    while(1) {
        myled = 1;      // turn the LED on
        wait(0.2);      // 200 ms
        myled = 0;      // turn the LED off
        wait(1.0);      // 1 sec
        pc.printf("Blink\r\n");
    }
}