I am adding the Bluetooth widget(Not BLE) in the blynk app on Android but after adding the widget it does not allow me to add any other widget and says doesn’t work with BLE yet but I am using the normal Bluetooth widget.
This is not an error… BT/BLE is a direct link between the App and device, thus no internet/server link on the device as it would have with WiFi. Thus certain widgets that require device to Server link will not work with BT/BLE.
Show the Widget Box with the buttons and displays and this supposed error… so far all you have shown is the widgets that require aforementioned Device-Server link
Confirm your BT module connections, BAUD rate and pin choices for SoftSerial, if you use that.
Using an UNO & JY-MCU (HC-06), I just tested a button and slider on two LEDs and everything works as it should… but I did need to add the other widgets before adding the BT widget.
A pain for sure, but will allow it to function until the issue is checked & resolved.
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <BlynkSimpleSerialBLE.h>
#include <SoftwareSerial.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "token";
SoftwareSerial SerialBLE(10, 11); // RX, TX
void setup()
{
// Debug console
Serial.begin(9600);
SerialBLE.begin(9600);
Blynk.begin(SerialBLE, auth);
}
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!
}