Good day,
is it possible to change the data stream and V3 pin for the banner in the application, for example, to V40, or is it immutable?
When I change it, the banner at the top of the dashboard in the mobile application does not update, I have created a data stream with a STRING variable.
Thank you Pavel
// This function is called every time the device is connected to the Blynk.Cloud
BLYNK_CONNECTED()
{
// Change Web Link Button message to “Congratulations!”
Blynk.setProperty(V3, “offImageUrl”, “https://static-image.nyc3.cdn.digitaloceanspaces.com/general/fte/congratulations.png”);
Blynk.setProperty(V3, “onImageUrl”, “https://static-image.nyc3.cdn.digitaloceanspaces.com/general/fte/congratulations_pressed.png”);
Blynk.setProperty(V3, “url”, “Next Steps After Quickstart - Blynk Documentation”);
}