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
Pedal.hpp
#ifndef _PEDAL_HPP_ #define _PEDAL_HPP_ #include <stdint.h> #include "SensorInterface.hpp" class Pedal { public: Pedal(SensorInterface* sensor); Pedal(); ~Pedal(); int32_t readValue(); void setOffset(int32_t new_offset); void set_sensor(SensorInterface* sensor); SensorInterface* get_sensor(); private: SensorInterface* sensor_; }; #endif //_PEDAL_HPP_
Report a bug