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.
Dependencies: mbed
Diff: main.cpp
- Revision:
- 0:5014bf742e9b
- Child:
- 1:dcd96a8ef857
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Feb 14 14:30:22 2013 +0000
@@ -0,0 +1,20 @@
+#include "mbed.h"
+
+Ticker flipper;
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+
+void flip() {
+ led2 = !led2;
+}
+
+int main() {
+ led2 = 1;
+ flipper.attach(&flip, 2.0); // the address of the function to be attached (flip) and the interval (2 seconds)
+
+ // spin in a main loop. flipper will interrupt it to call flip
+ while(1) {
+ led1 = !led1;
+ wait(0.2);
+ }
+}
\ No newline at end of file