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

8 lines
No EOL
274 B
C++

#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);
}