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

25 lines
381 B
C
Raw Normal View History

#ifndef _SENSOR_H_
#define _SENSOR_H_
#include "../hal/board.h"
#include "ballsensor.h"
2007-02-13 19:10:02 +00:00
#include "../hal/maussensor.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<75>ck
};
#endif