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
ArduinoWrapper.hpp
#ifndef _ARDUINOWRAPPER_HPP_ #define _ARDUINOWRAPPER_HPP_ #include <Arduino.h> #include "ArduinoSerialInterface.hpp" #include "ArduinoTimeInterface.hpp" class ArduinoWrapper { public: ArduinoSerialInterface Serial; ArduinoTimeInterface Time; ArduinoWrapper(); ~ArduinoWrapper(); }; #endif //_ARDUINOWRAPPER_HPP_
Report a bug