Marco Oehler / Mbed 2 deprecated ROME2

Dependencies:   mbed

IRSensor.h

Committer:
oehlemar
Date:
2020-02-24
Revision:
0:7ee4c6416e08

File content as of revision 0:7ee4c6416e08:

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

#ifndef IR_SENSOR_H_
#define IR_SENSOR_H_

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

/**
 * This class implements a driver to read the distance sensors
 * of the ROME2 mobile robot.
 */
class IRSensor {

    public:
        
                IRSensor(AnalogIn& distance, DigitalOut& bit0, DigitalOut& bit1, DigitalOut& bit2, int number);
        virtual ~IRSensor();
        float   read();
        
    private:
        
        AnalogIn&   distance;
        DigitalOut& bit0;
        DigitalOut& bit1;
        DigitalOut& bit2;
        int         number;
};

#endif /* IR_SENSOR_H_ */