2018-10-18 09:49:14 +00:00
|
|
|
#include <Arduino.h>
|
|
|
|
|
2018-10-20 07:11:23 +00:00
|
|
|
class CProtocol;
|
2018-10-18 09:49:14 +00:00
|
|
|
|
|
|
|
void Bluetooth_Init();
|
2018-10-20 11:28:32 +00:00
|
|
|
void Bluetooth_SendFrame(const char* pHdr, const CProtocol& Frame, bool lineterm=true);
|
2018-10-18 09:49:14 +00:00
|
|
|
void Bluetooth_Check();
|
2018-10-27 06:35:17 +00:00
|
|
|
void Bluetooth_SendACK();
|
2018-10-18 09:49:14 +00:00
|
|
|
|
2018-10-20 11:28:32 +00:00
|
|
|
extern void Command_Interpret(const char* pLine); // decodes received command lines, implemented in main .ino file!
|
|
|
|
|