Blynk.setproperty

Is it possible in NewBlynk to use propertysettings for buttons like:

Blynk.setProperty(V0, “onColor”, BLYNK_GREEN);
Blynk.setProperty(V0, “offColor”, BLYNK_BLACK);
Blynk.setProperty(V0, “offBackColor”, BLYNK_WHITE);
Blynk.setProperty(V0, “onBackColor”, BLYNK_RED);
Blynk.setProperty(V0, “onLabel”, “onLabel”);
Blynk.setProperty(V0, “offLabel”, “offLabel”);

I used this for displaying values in the buttonspace, but it seems not te be working in NewBlynk anymore.

You can check the documentation
https://docs.blynk.io/en/blynk.edgent-firmware-api/widget-properties

Thank you. I put these settings in the setup, but with a switching label it should be set each time.

I mean like:

int No++;
Blynk.setProperty(V0, “onLabel”, No);

Don’t put them in void setup. You should put them in BLYNK_CONNECTED

pete.