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
ArduinoSerialInterface.hpp
#ifndef _ARDUINOSERIALINTERFACE_HPP_ #define _ARDUINOSERIALINTERFACE_HPP_ #include <Arduino.h> #include "SerialInterface.hpp" class ArduinoSerialInterface : public SerialInterface { public: ArduinoSerialInterface(); ~ArduinoSerialInterface() override = default; void begin(unsigned long baud_rate) override; size_t write(const char* string_to_write) override; }; #endif //_ARDUINOSERIALINTERFACE_HPP_
Report a bug