ENDLÖSUNG:)

Dependencies:   mbed

Fork of MicroMouse_MASTER_FOUR by PES2_R2D2.0

KontrastSensor.h

Committer:
ruesipat
Date:
2018-05-22
Revision:
10:e8110fb94686
Parent:
1:d9e840c48b1e

File content as of revision 10:e8110fb94686:

#ifndef KONTRASTSENSOR_H_
#define KONTRASTSENSOR_H_

#include <cstdlib>
#include <mbed.h>

class KontrastSensor
{

public:

    KontrastSensor(AnalogIn& kontrast, int& blackLine);
    virtual ~KontrastSensor();
    void check();
private:
    AnalogIn& kontrast;
    int& blackLine;

};

#endif /* KONTRASTSENSOR_H_ */