3. nur Zugewiesen bzw I2C erzeugt

Dependencies:   mbed

Revision:
2:0bd68599b98e
Parent:
1:2a6f45577cf5
--- a/main.cpp	Tue Oct 06 15:59:21 2020 +0000
+++ b/main.cpp	Tue Oct 06 16:36:12 2020 +0000
@@ -1,35 +1,12 @@
-
-
 #include "mbed.h"
 
-
-// Hutter_6.10.2020_ Aufgabe_1
-
-class TestKlasse{
-    
-  
-    public:
-        TestKlasse(double wert) : _messwert(wert) {
-            
-            _messwert=0;          
-        }
-        
-    void gibAus(){
-        printf("Messwert ist %f\n ",_messwert);
-        }
-        
-    
-    private:
-        double _messwert;
-};
-
-TestKlasse ausgabe(15);
+DigitalOut myled(LED1);
 
 int main() {
-    
-    ausgabe.gibAus();
-    
+    while(1) {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
 }
-
-
-