summaryrefslogtreecommitdiffstats
path: root/source/AVR_Studio/Soccer/navigation.h
blob: 863687d72f1019a8643d44fb8870890b746f0ee6 (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
28
29
30
31
#ifndef _NAVIGATION_H_
#define _NAVIGATION_H_

#include <math.h>
#include "hal/board.h"
#include "sensor/sensor.h"

extern Board board;
extern Sensor sensor;

class Navigation 
{
private:
	int richtung;
	int ausrichtung;
	int geschwindigkeit;
public:
	Navigation();
	~Navigation();
	
	void SetzeRichtung(int nRichtung);
	void SetzeAusrichtung(int nAusrichtung);
	void SetzeGeschwindigkeit(int nGeschwindigkeit);

	void Aktualisieren(int nRichtung,int nAusrichtung,int nGeschwindigkeit);
	void Aktualisieren();
};

#endif