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-11 19:03:00 +00:00

23 lines
349 B
C++
Executable file

#ifndef _SENSOR_H_
#define _SENSOR_H_
#include "../hal/board.h"
#include "ballsensor.h"
#include "../global.h"
extern Board board;
class Sensor
{
private:
Ballsensor ballsensor;
public:
Sensor();
~Sensor();
void Aktualisieren();
int getAusrichtung(); // Gibt die aktuelle Ausrichtung des Roboters zurück
};
#endif