25.04.17

Dependencies:   mbed

Fork of Sensortest by kings

Farbsensor.h

Committer:
EHess
Date:
2017-04-25
Revision:
1:82a1ebe6ce11

File content as of revision 1:82a1ebe6ce11:

#ifndef FARBSENSOR_H
#define FARBSENSOR_H

#include "mbed.h"

//E. Hess
//Farbsensor.h

class Farbsensor {
    public:
        Farbsensor();
        Farbsensor(AnalogIn* color);
        ~Farbsensor();
        void init(AnalogIn* color);
        float read();

    private:
        AnalogIn* color;
};

#endif