robot code for summer school
Dependencies: PM2_Libary Eigen
Fork of PM2_Example_Summer_School by
IRSensor.h
- Committer:
- eversonrosed
- Date:
- 2022-06-01
- Revision:
- 78:d53f1d68ca65
- Parent:
- 49:7da71f479dac
File content as of revision 78:d53f1d68ca65:
/* * IRSensor.h * Copyright (c) 2022, 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(); //operator float(); private: AnalogIn& distance; DigitalOut& bit0; DigitalOut& bit1; DigitalOut& bit2; int number; }; #endif /* IR_SENSOR_H_ */