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
SerialInterface.hpp
#ifndef _SERIALINTERFACE_HPP_ #define _SERIALINTERFACE_HPP_ #include <stdint.h> #ifdef HOST #include <cstddef> #endif class SerialInterface { public: virtual ~SerialInterface() {} virtual void begin(unsigned long baud_rate) = 0; virtual size_t write(const char* string_to_write) = 0; }; #endif //_SERIALINTERFACE_HPP_
Report a bug