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

28 lines
434 B
C
Raw Permalink Normal View History

#ifndef _SENSOR_H_
#define _SENSOR_H_
#include "../hal/board.h"
#include "ballsensor.h"
2007-02-14 17:47:03 +00:00
#include "position.h"
#include "abstand.h"
#include "../global.h"
extern Board board;
class Sensor
{
private:
Ballsensor ballsensor;
2007-02-14 17:47:03 +00:00
Position position;
Abstand abstand;
public:
Sensor();
~Sensor();
void Aktualisieren();
2007-02-14 17:47:03 +00:00
int GetAusrichtung(); // Gibt die aktuelle Ausrichtung des Roboters zur<75>ck
};
#endif