18 lines
260 B
C++
Executable file
18 lines
260 B
C++
Executable file
#ifndef _BALLSENSOR_H_
|
|
#define _BALLSENSOR_H_
|
|
|
|
#include "../hal/board.h"
|
|
|
|
extern Board board;
|
|
|
|
class Ballsensor
|
|
{
|
|
private:
|
|
public:
|
|
Ballsensor();
|
|
~Ballsensor();
|
|
|
|
int getBallwinkel(); // Gibt den aktuellen Winkel vom Ball zurück
|
|
};
|
|
|
|
#endif
|