summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/sensor/ballsensor.h
blob: 46daf90a06971995e9c90c17cf8447bb013ea263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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