Hello
I have problem with to big packet in Blynk app, when i try connect to my Bluetooth.
I use Arduino Uno and XM 15B BT module. When i try use the exemple i have in my port serial only information:
[89] Connecting…
[224] Packet too big: 34310
[229] Packet too big: 34304
[230] Packet too big: 6278
[246] Packet too big: 6278
[276] Packet too big: 57478
[307] Packet too big: 6278
[335] Packet too big: 6168
[364] Packet too big: 7904
[394] Packet too big: 7904
[422] Packet too big: 6168
[451] Packet too big: 32408
[482] Packet too big: 34552
[512] Packet too big: 39032
[542] Packet too big: 32792
[746] Packet too big: 63584
[749] Packet too big: 39038
[753] Packet too big: 1670
[769] Packet too big: 6296
[798] Packet too big: 30744
Can anyone help me ??
#define BLYNK_PRINT Serial
#include <SoftwareSerial.h>
SoftwareSerial SwSerial(10, 11); // RX, TX
#include <BlynkSimpleSerialBLE.h>
#include <SoftwareSerial.h>
char auth[] = "ok3q9uiJKllXv9dtOR7XyewQq0EL-_H6";
SoftwareSerial SerialBLE(10, 11); // RX, TX
void setup()
{
// Debug console
Serial.begin(9600);
SerialBLE.begin(19200);
Blynk.begin(SerialBLE, auth);
Serial.println("Waiting for connections...");
}
void loop()
{
Blynk.run();
}