summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/sensor/sensor.h
blob: f3f36ade04019a9fa7b6c84dd8430a8db018f25e (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
25
26
27
#ifndef _SENSOR_H_
#define _SENSOR_H_

#include "../hal/board.h"
#include "ballsensor.h"
#include "position.h"
#include "abstand.h"
#include "../global.h"

extern Board board;

class Sensor
{
private:
	Ballsensor ballsensor;
	Position position;
	Abstand abstand;
public:
	Sensor();
	~Sensor();
	
	void Aktualisieren();

	int GetAusrichtung(); // Gibt die aktuelle Ausrichtung des Roboters zurück
};

#endif