noch nicht fertig

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
tobiaswolfmajer
Date:
Thu May 07 11:10:03 2015 +0000
Commit message:
TobiasWolfmajer3aheli

Changed in this revision

Bertl.cpp Show annotated file Show diff for this revision Revisions of this file
Bertl.h Show annotated file Show diff for this revision Revisions of this file
LedBertl.cpp Show annotated file Show diff for this revision Revisions of this file
LedBertl.h Show annotated file Show diff for this revision Revisions of this file
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
urBertl.cpp Show annotated file Show diff for this revision Revisions of this file
urBertl.h Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r b89981b11f49 Bertl.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Bertl.cpp	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+#include "urBertl.h"
+#include "Bertl.h"
+class Bertl : public ur_Bertl
+{
+    public:
+            int Move;
+            bool FrontIsClear() {return 0;}
+            bool PickBeeper(int anz) {return 0;}
+            
+    protected:
+            int anzahl;
+                       
+}
\ No newline at end of file
diff -r 000000000000 -r b89981b11f49 Bertl.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Bertl.h	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+#include "urBertl.h"
+class Bertl : public ur_Bertl
+{
+    public:
+            int Move;
+            bool FrontIsClear(); 
+            bool PickBeeper(int anz);
+            
+    protected:
+            int anzahl;
+                       
+}
\ No newline at end of file
diff -r 000000000000 -r b89981b11f49 LedBertl.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LedBertl.cpp	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+#include "Bertl.h"
+#include "LedBertl.h"
+lass LedBertl : public Bertl
+{
+    public:
+            string Anzeige(){return 0;}
+            
+    protected:
+            uint8_t zeit; 
\ No newline at end of file
diff -r 000000000000 -r b89981b11f49 LedBertl.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LedBertl.h	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+#include "Bertl.h"
+lass LedBertl : public Bertl
+{
+    public:
+            string Anzeige();
+            
+    protected:
+            uint8_t zeit; 
+}
\ No newline at end of file
diff -r 000000000000 -r b89981b11f49 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,3 @@
+#include "mbed.h"
+#include "urBertl.h"
+#include "Bertl.h"
diff -r 000000000000 -r b89981b11f49 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/8ab26030e058
\ No newline at end of file
diff -r 000000000000 -r b89981b11f49 urBertl.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/urBertl.cpp	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+#include "urBertl.h"
+class ur_Bertl()
+{
+    public:
+            void ur_Bertl() {return 0;}
+            void Move() {return 0;}
+            void Move(int anz){return 0;}
+            void TurnLeft(){return 0;}
+            void TurnOff(){return 0;}
+    
+    protected: 
+            bool error(int code){return 0;}
+            
+}
\ No newline at end of file
diff -r 000000000000 -r b89981b11f49 urBertl.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/urBertl.h	Thu May 07 11:10:03 2015 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+
+public class ur_Bertl()
+{
+    public:
+            void ur_Bertl(); 
+            void Move(); 
+            void Move(int anz);
+            void TurnLeft();
+            void TurnOff();
+    
+    protected: 
+            bool error(int code);
+            
+}
\ No newline at end of file