8 lines
274 B
C++
8 lines
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);
|
||
|
}
|