mbed-classic on Bluepill

Dependencies:   mbed-STM32F103C8T6 mbed

Fork of Testato-mbed-dev-Bluepill by Testato Testato

Committer:
hudakz
Date:
Sat Jul 02 07:23:49 2016 +0000
Revision:
1:1dd12d8c840d
Parent:
0:ab218237069e
Child:
3:c6a589f444b9
Initial revision

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hudakz 1:1dd12d8c840d 1 #include "PinNames.h" // Pin name definitions for the STM32F103C8T6 board
hudakz 0:ab218237069e 2 #include "mbed.h"
hudakz 0:ab218237069e 3
hudakz 0:ab218237069e 4 DigitalOut myled(LED1);
hudakz 0:ab218237069e 5
hudakz 0:ab218237069e 6 int main() {
hudakz 0:ab218237069e 7 while(1) {
hudakz 0:ab218237069e 8 myled = 1; // LED is ON
hudakz 0:ab218237069e 9 wait(0.2); // 200 ms
hudakz 0:ab218237069e 10 myled = 0; // LED is OFF
hudakz 0:ab218237069e 11 wait(1.0); // 1 sec
hudakz 0:ab218237069e 12 }
hudakz 0:ab218237069e 13 }