base-station/Firmware/lib/BluetoothCommunicator/BluetoothCommunicator.h
2022-04-10 10:27:35 +02:00

8 lines
221 B
C++

#include <StreamCommunicator.h>
#include "BluetoothSerial.h"
class BluetoothCommunicator : public StreamCommunicator
{
public:
BluetoothCommunicator(BluetoothSerial &p_out, int timeout, __SIZE_TYPE__ bufferSize);
};