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.
Diff: main.cpp
- Revision:
- 0:50d2b9c62765
- Child:
- 1:5160ea45399b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Feb 12 15:10:53 2013 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+PwmOut led(LED1);
+
+int main() {
+ while(1) {
+ for(float p = 0.0f; p < 1.0f; p += 0.1f) {
+ led = p;
+ wait(0.1);
+ }
+ }
+}
\ No newline at end of file