This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/AVR_Studio/Soccer/sensor/sensor.h
2007-02-14 17:47:03 +00:00

27 lines
434 B
C++
Executable file

#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