2018-10-18 09:49:14 +00:00
|
|
|
#include "Bluetooth.h"
|
|
|
|
#include "pins.h"
|
2018-10-20 07:11:23 +00:00
|
|
|
#include "Protocol.h"
|
|
|
|
#include "debugport.h"
|
2018-10-18 09:49:14 +00:00
|
|
|
|
2018-10-28 03:03:44 +00:00
|
|
|
#ifdef TELNET
|
|
|
|
#define PRNT Debug
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef TELNET
|
|
|
|
#define PRNT Serial
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2018-10-20 07:11:23 +00:00
|
|
|
#ifdef ESP32
|
2018-10-18 09:49:14 +00:00
|
|
|
|
2018-10-27 06:35:17 +00:00
|
|
|
#define ESP32_USE_HC05
|
|
|
|
|
2018-10-20 07:11:23 +00:00
|
|
|
const int LED = 2;
|
2018-10-18 09:49:14 +00:00
|
|
|
|
|
|
|
// ESP32
|
|
|
|
|
2018-10-20 11:28:32 +00:00
|
|
|
sRxLine RxLine;
|
2018-10-18 09:49:14 +00:00
|
|
|
|
2018-10-27 06:35:17 +00:00
|
|
|
#ifdef ESP32_USE_HC05
|
|
|
|
|
|
|
|
//static HardwareSerial& Bluetooth(Serial2); // TODO: make proper ESP32 BT client
|
|
|
|
|
|
|
|
bool Bluetooth_ATCommand(const char* cmd);
|
|
|
|
|
|
|
|
|
2018-10-27 09:03:10 +00:00
|
|
|
// Search for a HC-05 BlueTooth adapter, trying the more common baud rates first.
|
|
|
|
// As we cannot power up with the key pin high we are at the mercy of the baud rate
|
|
|
|
// stored in the module.
|
|
|
|
// **IMPORTANT**
|
|
|
|
// We must use a HC-05 module that uses a 3 pin 3.3V regulator (NOT 5 pin).
|
|
|
|
// On those modules, the EN input drive pin 34 and can be used to switch to AT
|
|
|
|
// command mode from data mode by raising EN high.
|
|
|
|
// ** BEWARE**
|
|
|
|
// The other style modules (with a 5 pin regulator) will disable the HC-05's power
|
|
|
|
// when the EN pin is low!!!!
|
|
|
|
//
|
|
|
|
// Once in command mode we can start interrogating using a simple "AT" command and
|
|
|
|
// checking for a response.
|
|
|
|
// If no response, try another baud rate till we do find a response.
|
|
|
|
// We can then proceed and configure the device's name, and force 9600 data rate
|
2018-10-27 06:35:17 +00:00
|
|
|
|
|
|
|
void Bluetooth_Init()
|
|
|
|
{
|
2018-10-27 09:03:10 +00:00
|
|
|
const int BTRates[] = {
|
|
|
|
9600, 38400, 115200, 19200, 57600, 2400, 4800, 1200
|
|
|
|
};
|
|
|
|
|
2018-10-27 06:35:17 +00:00
|
|
|
RxLine.clear();
|
2018-10-27 09:03:10 +00:00
|
|
|
|
|
|
|
// attach to the SENSE line from the HC-05 module
|
|
|
|
// this line goes high when a BT client is connected :-)
|
|
|
|
pinMode(HC05_Sense, INPUT);
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-27 09:03:10 +00:00
|
|
|
digitalWrite(KeyPin, HIGH); // request HC-05 module to enter command mode
|
|
|
|
// Open Serial2, explicitly specify pins for pin multiplexer!);
|
|
|
|
Serial2.begin(9600, SERIAL_8N1, Rx2Pin, Tx2Pin);
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("\r\n\r\nAttempting to detect HC-05 Bluetooth module...");
|
2018-10-27 06:35:17 +00:00
|
|
|
|
|
|
|
int BTidx = 0;
|
|
|
|
int maxTries = sizeof(BTRates)/sizeof(int);
|
|
|
|
for(BTidx = 0; BTidx < maxTries; BTidx++) {
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.print(" @ ");
|
|
|
|
PRNT.print(BTRates[BTidx]);
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf(" baud... ");
|
2018-10-27 09:03:10 +00:00
|
|
|
Serial2.begin(BTRates[BTidx], SERIAL_8N1, Rx2Pin, Tx2Pin); // open serial port at a std.baud rate
|
|
|
|
delay(10);
|
|
|
|
Serial2.print("\r\n"); // clear the throat!
|
2018-10-27 06:35:17 +00:00
|
|
|
delay(100);
|
|
|
|
Serial2.setTimeout(100);
|
|
|
|
|
2018-10-27 09:03:10 +00:00
|
|
|
if(Bluetooth_ATCommand("AT\r\n")) { // probe with a simple "AT"
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println(" OK."); // got a response - woo hoo found the module!
|
2018-10-27 06:35:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-10-27 09:03:10 +00:00
|
|
|
if(Bluetooth_ATCommand("AT\r\n")) { // sometimes a second try is good...
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println(" OK.");
|
2018-10-27 06:35:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-10-27 09:03:10 +00:00
|
|
|
|
2018-10-27 06:35:17 +00:00
|
|
|
// failed, try another baud rate
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("");
|
2018-10-27 06:35:17 +00:00
|
|
|
Serial2.flush();
|
|
|
|
Serial2.end();
|
2018-10-27 09:03:10 +00:00
|
|
|
delay(100);
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("");
|
2018-10-27 06:35:17 +00:00
|
|
|
if(BTidx == maxTries) {
|
2018-10-27 09:03:10 +00:00
|
|
|
// we could not get anywhere with teh AT commands, but maybe this is the other module
|
|
|
|
// plough on and assume 9600 baud, but at the mercy of whatever the module name is...
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("FAILED to detect a HC-05 Bluetooth module :-(");
|
2018-10-27 09:03:10 +00:00
|
|
|
// leave the EN pin high - if other style module keeps it powered!
|
|
|
|
// assume it is 9600, and just (try to) use it like that...
|
|
|
|
// we will sense the STATE line to prove a client is hanging off the link...
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("ASSUMING a HC-05 module @ 9600baud (Unknown name)");
|
2018-10-27 09:03:10 +00:00
|
|
|
Serial2.begin(9600, SERIAL_8N1, Rx2Pin, Tx2Pin);
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-10-27 09:03:10 +00:00
|
|
|
// found a HC-05 module at one of its supported baud rates.
|
|
|
|
// now program it's name and force a 9600 baud data interface.
|
|
|
|
// this is the defacto standard as shipped!
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("HC-05 found");
|
2018-10-27 09:03:10 +00:00
|
|
|
|
|
|
|
do { // so we can break!
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf(" Setting Name to \"Diesel Heater\"... ");
|
2018-10-27 09:03:10 +00:00
|
|
|
if(!Bluetooth_ATCommand("AT+NAME=\"Diesel Heater\"\r\n")) {
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("FAILED");
|
2018-10-27 09:03:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("OK");
|
2018-10-27 09:03:10 +00:00
|
|
|
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf(" Setting baud rate to 9600N81...");
|
2018-10-27 09:03:10 +00:00
|
|
|
if(!Bluetooth_ATCommand("AT+UART=9600,1,0\r\n")) {
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("FAILED");
|
2018-10-27 09:03:10 +00:00
|
|
|
break;
|
|
|
|
};
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("OK");
|
2018-10-27 09:03:10 +00:00
|
|
|
|
|
|
|
Serial2.begin(9600, SERIAL_8N1, Rx2Pin, Tx2Pin);
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-27 09:03:10 +00:00
|
|
|
// leave HC-05 command mode, return to data mode
|
|
|
|
digitalWrite(KeyPin, LOW);
|
|
|
|
} while (0); // yeah lame, allows break prior though :-)
|
|
|
|
}
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-27 09:03:10 +00:00
|
|
|
delay(50);
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("");
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Bluetooth_Check()
|
2018-10-27 09:03:10 +00:00
|
|
|
{
|
2018-10-27 06:35:17 +00:00
|
|
|
// check for data coming back over Bluetooth
|
2018-10-27 09:03:10 +00:00
|
|
|
if(Serial2.available()) {
|
|
|
|
char rxVal = Serial2.read();
|
|
|
|
if(isControl(rxVal)) { // "End of Line"
|
|
|
|
Command_Interpret(RxLine.Line);
|
|
|
|
RxLine.clear();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
RxLine.append(rxVal); // append new char to our Rx buffer
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Bluetooth_SendFrame(const char* pHdr, const CProtocol& Frame, bool lineterm)
|
|
|
|
{
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.print(millis());
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf("ms ");
|
2018-10-27 09:03:10 +00:00
|
|
|
// DebugReportFrame(pHdr, Frame, lineterm ? "\r\n" : " ");
|
|
|
|
DebugReportFrame(pHdr, Frame, " ");
|
2018-10-27 06:35:17 +00:00
|
|
|
|
2018-10-27 09:03:10 +00:00
|
|
|
if(digitalRead(HC05_Sense)) {
|
2018-10-27 06:35:17 +00:00
|
|
|
if(Frame.verifyCRC()) {
|
2018-10-27 09:03:10 +00:00
|
|
|
// send data frame to HC-05
|
2018-10-27 06:35:17 +00:00
|
|
|
Serial2.print(pHdr);
|
|
|
|
Serial2.write(Frame.Data, 24);
|
2018-10-27 09:03:10 +00:00
|
|
|
// toggle LED
|
|
|
|
digitalWrite(LED, !digitalRead(LED)); // toggle LED
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf("Bluetooth data not sent, CRC error ");
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf("No Bluetooth client");
|
2018-10-27 09:03:10 +00:00
|
|
|
// force LED off
|
2018-10-27 06:35:17 +00:00
|
|
|
digitalWrite(LED, 0);
|
|
|
|
}
|
2018-10-27 09:03:10 +00:00
|
|
|
if(lineterm)
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("");
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// local function, typically to perform Hayes commands with HC-05
|
|
|
|
bool Bluetooth_ATCommand(const char* cmd)
|
|
|
|
{
|
2018-10-27 09:03:10 +00:00
|
|
|
Serial2.print(cmd);
|
|
|
|
char RxBuffer[16];
|
|
|
|
memset(RxBuffer, 0, 16);
|
|
|
|
int read = Serial2.readBytesUntil('\n', RxBuffer, 16); // \n is not included in returned string!
|
|
|
|
if((read == 3) && (0 == strcmp(RxBuffer, "OK\r")) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2018-10-27 06:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else // ESP32_USE_HC05
|
2018-10-18 09:49:14 +00:00
|
|
|
#ifndef ESP32_USE_BLE_RLJ
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CLASSIC BLUETOOTH
|
|
|
|
// |
|
|
|
|
// V
|
|
|
|
|
|
|
|
|
|
|
|
#include "BluetoothSerial.h"
|
|
|
|
|
|
|
|
BluetoothSerial SerialBT;
|
|
|
|
|
|
|
|
void Bluetooth_Init()
|
|
|
|
{
|
2018-10-20 11:28:32 +00:00
|
|
|
RxLine.clear();
|
2018-10-20 07:11:23 +00:00
|
|
|
pinMode(LED, OUTPUT);
|
|
|
|
|
2018-10-18 09:49:14 +00:00
|
|
|
if(!SerialBT.begin("ESPHEATER")) {
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("An error occurred initialising Bluetooth");
|
2018-10-18 09:49:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Bluetooth_Check()
|
|
|
|
{
|
|
|
|
if(SerialBT.available()) {
|
|
|
|
char rxVal = SerialBT.read();
|
|
|
|
if(isControl(rxVal)) { // "End of Line"
|
2018-10-20 11:28:32 +00:00
|
|
|
Command_Interpret(RxLine.Line);
|
|
|
|
RxLine.clear();
|
2018-10-18 09:49:14 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-10-20 11:28:32 +00:00
|
|
|
RxLine.append(rxVal);
|
2018-10-18 09:49:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 11:28:32 +00:00
|
|
|
void Bluetooth_SendFrame(const char* pHdr, const CProtocol& Frame, bool lineterm)
|
2018-10-18 09:49:14 +00:00
|
|
|
{
|
2018-10-27 06:35:17 +00:00
|
|
|
char fullMsg[32];
|
|
|
|
|
2018-10-28 08:59:34 +00:00
|
|
|
PRNT.printf(millis());
|
2018-10-20 11:28:32 +00:00
|
|
|
DebugReportFrame(pHdr, Frame, lineterm ? "\r\n" : " ");
|
2018-10-27 06:35:17 +00:00
|
|
|
delay(40);
|
2018-10-18 09:49:14 +00:00
|
|
|
if(SerialBT.hasClient()) {
|
2018-10-20 07:11:23 +00:00
|
|
|
|
|
|
|
if(Frame.verifyCRC()) {
|
|
|
|
digitalWrite(LED, !digitalRead(LED)); // toggle LED
|
2018-10-27 06:35:17 +00:00
|
|
|
int len = strlen(pHdr);
|
|
|
|
if(len < 8) {
|
|
|
|
strcpy(fullMsg, pHdr);
|
|
|
|
memcpy(&fullMsg[len], Frame.Data, 24);
|
|
|
|
SerialBT.write((uint8_t*)fullMsg, 24+len);
|
|
|
|
}
|
|
|
|
/* SerialBT.print(pHdr);
|
|
|
|
delay(1);
|
|
|
|
SerialBT.write(Frame.Data, 24);*/
|
|
|
|
delay(10);
|
2018-10-20 07:11:23 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("Data not sent to Bluetooth, CRC error!");
|
2018-10-20 07:11:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("No Bluetooth client");
|
2018-10-20 07:11:23 +00:00
|
|
|
digitalWrite(LED, 0);
|
2018-10-18 09:49:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-27 06:35:17 +00:00
|
|
|
void Bluetooth_SendACK()
|
|
|
|
{
|
|
|
|
/* if(SerialBT.hasClient()) {
|
|
|
|
SerialBT.print("[ACK]");
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-18 09:49:14 +00:00
|
|
|
// ^
|
|
|
|
// |
|
|
|
|
// CLASSIC BLUETOOTH
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#else // ESP32_USE_BLE_RLJ
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// BLE
|
|
|
|
// |
|
|
|
|
// V
|
|
|
|
|
|
|
|
|
|
|
|
#include <BLEDevice.h>
|
|
|
|
#include <BLEServer.h>
|
|
|
|
#include <BLEUtils.h>
|
|
|
|
#include <BLE2902.h>
|
|
|
|
|
|
|
|
#define SERVICE_UUID "6E400001-B5A3-F393-E0A9-E50E24DCCA9E" // UART service UUID
|
|
|
|
#define CHARACTERISTIC_UUID_RX "6E400002-B5A3-F393-E0A9-E50E24DCCA9E"
|
|
|
|
#define CHARACTERISTIC_UUID_TX "6E400003-B5A3-F393-E0A9-E50E24DCCA9E"
|
|
|
|
|
|
|
|
void BLE_Send(std::string Data);
|
|
|
|
|
|
|
|
BLEServer *pServer = NULL;
|
|
|
|
BLECharacteristic* pTxCharacteristic = NULL;
|
|
|
|
volatile bool deviceConnected = false;
|
|
|
|
bool oldDeviceConnected = false;
|
|
|
|
|
|
|
|
class MyServerCallbacks : public BLEServerCallbacks {
|
|
|
|
|
|
|
|
void onConnect(BLEServer* pServer) {
|
|
|
|
deviceConnected = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void onDisconnect(BLEServer* pServer) {
|
|
|
|
deviceConnected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class MyCallbacks : public BLECharacteristicCallbacks {
|
|
|
|
|
|
|
|
// this callback is called when the ESP WRITE characteristic has been written to by a client
|
|
|
|
// We need to *read* the new information!
|
|
|
|
void onWrite(BLECharacteristic* pCharacteristic) {
|
|
|
|
|
|
|
|
std::string rxValue = pCharacteristic->getValue();
|
|
|
|
|
|
|
|
while(rxValue.length() > 0) {
|
|
|
|
char rxVal = rxValue[0];
|
|
|
|
if(isControl(rxVal)) { // "End of Line"
|
2018-10-20 07:11:23 +00:00
|
|
|
Command_Interpret(BluetoothRxLine);
|
2018-10-18 09:49:14 +00:00
|
|
|
BluetoothRxLine = "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BluetoothRxLine += rxVal; // append new char to our Rx buffer
|
|
|
|
}
|
|
|
|
rxValue.erase(0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
void Bluetooth_Init()
|
|
|
|
{
|
|
|
|
// create the BLE device
|
|
|
|
BLEDevice::init("DieselHeater");
|
|
|
|
|
|
|
|
// create the BLE server
|
|
|
|
pServer = BLEDevice::createServer();
|
|
|
|
pServer->setCallbacks(new MyServerCallbacks);
|
|
|
|
|
|
|
|
// create the BLE service
|
|
|
|
BLEService *pService = pServer->createService(SERVICE_UUID);
|
|
|
|
|
|
|
|
// create a BLE characteristic
|
|
|
|
pTxCharacteristic = pService->createCharacteristic(
|
|
|
|
CHARACTERISTIC_UUID_TX,
|
|
|
|
BLECharacteristic::PROPERTY_NOTIFY
|
|
|
|
);
|
|
|
|
pTxCharacteristic->addDescriptor(new BLE2902());
|
|
|
|
|
|
|
|
|
|
|
|
BLECharacteristic* pRxCharacteristic = pService->createCharacteristic(
|
|
|
|
CHARACTERISTIC_UUID_RX,
|
|
|
|
BLECharacteristic::PROPERTY_WRITE
|
|
|
|
);
|
|
|
|
pRxCharacteristic->setCallbacks(new MyCallbacks/*()*/);
|
|
|
|
|
|
|
|
// start the service
|
|
|
|
pService->start();
|
|
|
|
// start advertising
|
|
|
|
pServer->getAdvertising()->start();
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("Awaiting a client to notify...");
|
2018-10-18 09:49:14 +00:00
|
|
|
}
|
|
|
|
|
2018-10-20 07:11:23 +00:00
|
|
|
void Bluetooth_Report(const char* pHdr, const CProtocol& Frame)
|
2018-10-18 09:49:14 +00:00
|
|
|
{
|
|
|
|
if(deviceConnected) {
|
2018-10-20 07:11:23 +00:00
|
|
|
if(Frame.verifyCRC()) {
|
|
|
|
// BLE can only squirt 20 bytes per packet.
|
|
|
|
// build the entire message then divide and conquer
|
|
|
|
std::string txData = pHdr;
|
|
|
|
txData.append((char*)Frame.Data, 24);
|
2018-10-18 09:49:14 +00:00
|
|
|
|
2018-10-20 07:11:23 +00:00
|
|
|
BLE_Send(txData);
|
|
|
|
}
|
2018-10-18 09:49:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Bluetooth_Check()
|
|
|
|
{
|
|
|
|
// disconnecting
|
|
|
|
if (!deviceConnected && oldDeviceConnected) {
|
|
|
|
delay(500); // give the bluetooth stack the chance to get things ready
|
|
|
|
pServer->startAdvertising(); // restart advertising
|
2018-10-28 03:03:44 +00:00
|
|
|
PRNT.println("start advertising");
|
2018-10-18 09:49:14 +00:00
|
|
|
oldDeviceConnected = deviceConnected;
|
|
|
|
}
|
|
|
|
// connecting
|
|
|
|
if (deviceConnected && !oldDeviceConnected) {
|
|
|
|
// do stuff here on connecting
|
|
|
|
oldDeviceConnected = deviceConnected;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// break down supplied string into 20 byte chunks (or less)
|
|
|
|
// BLE can only handle 20 bytes per packet!
|
|
|
|
void BLE_Send(std::string Data)
|
|
|
|
{
|
|
|
|
while(!Data.empty()) {
|
|
|
|
std::string substr = Data.substr(0, 20);
|
|
|
|
int len = substr.length();
|
|
|
|
pTxCharacteristic->setValue((uint8_t*)Data.data(), len);
|
|
|
|
pTxCharacteristic->notify();
|
|
|
|
Data.erase(0, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ^
|
|
|
|
// |
|
|
|
|
// BLE
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif // ESP32_USE_BLE_RLJ
|
|
|
|
|
2018-10-27 06:35:17 +00:00
|
|
|
#endif // ESP32_USE_HC05
|
|
|
|
|
|
|
|
#endif // __ESP32__
|