Mi Flora / Flower Care + Blynk + ESP32

Hi @radla thank you for using it !
Bridge commands are not necessary, I use them because I have another device (ESP8266) connected to Blynk that activate relays. In order to trigger the relays with Eventor widget based on temperature from the ESP32, you need to use bridge.

What you can try if you have another Flora device :

Define another Flora Address
#define FLORA_ADDR1 "c5:8c:9d:10:f6:99"

Declare another floraAddress
static BLEAddress floraAddress1(FLORA_ADDR1);

Then you can run another function where you want
getSensorData(floraAddress1);

Tell me if it works well !