first commit

Dependencies:   mbed

Revision:
0:8217b9bfb66a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MyClass.h	Tue Oct 06 15:38:04 2020 +0000
@@ -0,0 +1,8 @@
+class MyClass
+{
+    public:
+        MyClass(double init_messwert = 0): _messwert(init_messwert) {};
+        double get_wert() {return _messwert;};
+    private:
+        double _messwert;
+};
\ No newline at end of file