summaryrefslogtreecommitdiffstats
path: root/LineSensor.h
blob: 6b094f8f22e01491ddd4c48e502db71b7d796bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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