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/ballsensor.h

19 lines
260 B
C
Raw Normal View History

#ifndef _BALLSENSOR_H_
#define _BALLSENSOR_H_
#include "../hal/board.h"
extern Board board;
class Ballsensor
{
private:
public:
Ballsensor();
~Ballsensor();
int getBallwinkel(); // Gibt den aktuellen Winkel vom Ball zur<75>ck
};
#endif