rome2_p6 imported

Dependencies:   mbed

IRSensor.h

Committer:
Appalco
Date:
2018-05-18
Revision:
5:957580f33e52
Parent:
0:351a2fb21235

File content as of revision 5:957580f33e52:

/*
 * IRSensor.h
 * Copyright (c) 2018, ZHAW
 * All rights reserved.
 */

#ifndef IR_SENSOR_H_
#define IR_SENSOR_H_

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

/**
 * This is a device driver class to read the distance measured with a Sharp IR sensor.
 */
class IRSensor {
    
    public:
        
                    IRSensor(AnalogIn& distance, DigitalOut& bit0, DigitalOut& bit1, DigitalOut& bit2, int number);
        virtual     ~IRSensor();
        float       read();
                    operator float();
        
    private:
        
        AnalogIn&       distance;
        DigitalOut&     bit0;
        DigitalOut&     bit1;
        DigitalOut&     bit2;
        
        int             number;
};

#endif /* IR_SENSOR_H_ */