Bluno Beetle with BLE

Hi,
I can’t connect my Bluno beetle via BLE to my IOS app, I’m using a sample code for the Arduino UNO, but no matter what I try it doesn’t seem to work.
Thank you for your answers in advance.
Blynk library 0.6.1


#include <SoftwareSerial.h>
SoftwareSerial SwSerial(10, 11); // RX, TX
    
#include <BlynkSimpleSerialBLE.h>
#include <SoftwareSerial.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "suVDEhJwhNszview7WdA4lUx12mtq3cy";

SoftwareSerial SerialBLE(10, 11); // RX, TX

void setup()
{
  // Debug console
  Serial.begin(9600);

  SerialBLE.begin(9600);
  Blynk.begin(SerialBLE, auth);

  Serial.println("Waiting for connections...");
}

void loop()
{
  Blynk.run();
  // You can inject your own code or combine it with other sketches.
  // Check other examples on how to communicate with Blynk. Remember
  // to avoid delay() function!
}

I’ve checked the JSON data for your project and you don’t appear to have the BLE widget added to your app.
I just shows two widgets, a Time Input on V0 and a Button in pushbutton mode on D2.

Pete.

1 Like

Thank you for the very fast response it is my first project with Blynk so it’s all new for me,
thank you for your time and understanding.