base-station/Firmware/lib/BluetoothCommunicator/BluetoothCommunicator.cpp

8 lines
274 B
C++
Raw Normal View History

2022-04-10 10:27:35 +02:00
#include <BluetoothCommunicator.h>
#include <BluetoothSerial.h>
BluetoothCommunicator::BluetoothCommunicator(BluetoothSerial &p_out, int timeout, __SIZE_TYPE__ bufferSize) : StreamCommunicator(p_out, bufferSize)
{
p_out.begin("Heliox");
p_out.setTimeout(timeout);
}