Files

copied
Last update 1 year 4 months by Kristóf Kovács
FilesArduino_Pedalboxinclude
..
ArduinoSerialInterface.hpp
ArduinoTimeInterface.hpp
ArduinoWrapper.hpp
LoadCell.hpp
Log.hpp
Pedal.hpp
Pedalbox.hpp
Potmeter.hpp
README
SensorConfig.h
SensorInterface.hpp
SerialInterface.hpp
TimeInterface.hpp
board_pinout.h
stopwatch.hpp
SensorInterface.hpp
#ifndef _SENSORINTERFACE_HPP_ #define _SENSORINTERFACE_HPP_ #include <stdint.h> class SensorInterface { public: virtual int32_t getReadingValue() = 0; virtual void setOffset(int32_t new_offset) = 0; virtual ~SensorInterface() {} }; #endif //_SENSORINTERFACE_HPP_
Report a bug