main.cpp: Sensoren einlesen und Motoren ansteuern

Dependencies:   mbed

Path.h

Committer:
Helvis
Date:
2018-04-16
Revision:
5:47262622a9bf
Parent:
0:9a3e7847a4be

File content as of revision 5:47262622a9bf:

#ifndef PATH_H_
#define PATH_H_

#include <cstdlib>
#include <mbed.h>

class Path {
    
    public:

        Path();
        virtual ~Path();
        void    reverse();
        
    private:
    
    
    
    
    
    
    };

#endif /* PATH_H_ */