summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/sensor/ballsensor.h
blob: 5190a870885b1c1b027eb303abca566a97c68cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _BALLSENSOR_H_
#define _BALLSENSOR_H_

#include "../hal/board.h"

// Anzahl der Ballsensoren
#define NUM_BALLSENSOR 8

extern Board board;

class Ballsensor
{
private:
	int winkel[NUM_BALLSENSOR];
	int ballwinkel;
public:
	Ballsensor();
	~Ballsensor();
	
	int GetBallwinkel(); // Gibt den aktuellen Winkel vom Ball zurück
	void Aktualisieren(); // Aktualisiert die Variable
};

#endif