Test

Dependencies:   mbed

Fork of DeutscherRoboter by BERTL_CHEL18

Meine Projekte

Diese Projekte habe ich im SS 2015 in FSST programmiert:
Zurück zum Start:[https://developer.mbed.org/users/Alexander400/code/Bertl_Zurueckandenstart/[]]

Committer:
mpickl
Date:
Thu Mar 26 12:35:29 2015 +0000
Revision:
1:8dbdcd41a812
Parent:
0:a688e3381853
de_Bertl

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mpickl 0:a688e3381853 1 #include "mbed.h"
mpickl 0:a688e3381853 2 #include "ur_Bertl.h"
mpickl 1:8dbdcd41a812 3 #include "const.h"
mpickl 0:a688e3381853 4
mpickl 0:a688e3381853 5 #ifndef DE_BERTL_H
mpickl 1:8dbdcd41a812 6 #define DE_BERTL_H
mpickl 0:a688e3381853 7
mpickl 0:a688e3381853 8 class de_Bertl : public ur_Bertl
mpickl 0:a688e3381853 9 {
mpickl 0:a688e3381853 10 public:
mpickl 0:a688e3381853 11 void Bewege(); // nur Deklaration - Prototyping
mpickl 1:8dbdcd41a812 12 void DreheLinks();
mpickl 0:a688e3381853 13 void Turn2LedsOn();
mpickl 0:a688e3381853 14 };
mpickl 1:8dbdcd41a812 15 #endif
mpickl 1:8dbdcd41a812 16