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-rescue/LineSensor.h

15 lines
229 B
C
Raw Normal View History

#ifndef _ROBOCUP_LINESENSOR_H_
#define _ROBOCUP_LINESENSOR_H_
class LineSensor {
private:
int id;
float value;
public:
LineSensor(int id);
float updateValue();
float getValue() {return value;}
};
#endif