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 07:11:23 +00:00
|
|
|
void Bluetooth_SendFrame(const char* pHdr, const CProtocol& Frame);
|
2018-10-18 09:49:14 +00:00
|
|
|
void Bluetooth_Check();
|
|
|
|
|
2018-10-20 07:11:23 +00:00
|
|
|
extern void Command_Interpret(String line); // decodes received command lines, implemented in main .ino file!
|
2018-10-18 09:49:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|