Lauflicht über 4 LED

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Enenkel
Date:
Wed Jan 06 10:45:58 2016 +0000
Parent:
2:630f27bdf9e1
Commit message:
Lauflicht ?ber 4 LED

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Dec 23 13:04:09 2015 +0000
+++ b/main.cpp	Wed Jan 06 10:45:58 2016 +0000
@@ -10,11 +10,12 @@
 // Ausgange definieren:
 DigitalOut LedD1 (P1_8);
 DigitalOut LedD2 (P1_9);
-//DigitalOut LedD3  ???      (Alda schaust Schaltplan sonst nix geht.
+//DigitalOut LedD3  ???      (guckst du in den Schaltplan sonst nix geht.
 //DigitalOut LedD4  ???      (guckst du nochmals in Schaltplan!
 
 // HAUPTPROGRAMM ***********************************************
-int main() {
+int main()
+{
     while(1)               // Hauptschleife
         {
             LedD1=1;       //LED D1 EIN
@@ -27,7 +28,7 @@
             // schreibe hier deine Software!
             
             wait (0.4);
-         }
+        }
 }
 // ENDE *****************************************************