1 Projekt (Schöngeld)

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
schoeni_91
Date:
Mon Nov 16 18:21:36 2015 +0000
Commit message:
1 Projekt

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 2286d29aa801 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Nov 16 18:21:36 2015 +0000
@@ -0,0 +1,28 @@
+#include "mbed.h"
+
+DigitalOut _D20(P1_13);
+DigitalOut _D19(P1_12);
+
+
+int main() 
+{
+  
+    
+    while(1)
+    {
+    _D20=1;
+    _D19=0;
+    
+    
+    wait_ms(150);
+    
+    _D20=0;
+    _D19=1;
+    
+    wait_ms(150);
+    
+    }
+    
+}
+
+
diff -r 000000000000 -r 2286d29aa801 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Nov 16 18:21:36 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11
\ No newline at end of file