Hi there,
I am working on an app that basically consists of 2 buttons and a Labelled Value. I want to display “Open” or “Closed” in the labelled value but I can’t since it seems that it only accepts numbers not text. Or am I mistaken?
Thanks. Wayne
Hi. Doesn’t /pin/ work as needed?
/pin/
When I tried to send text to the label, it went in the title of the label not on the main display. I used the following code:
Blynk.setProperty(V1, "label", "Open")
V1 is the Labelled Value
[edit] - “label” not “Label”
You need to use Blynk.virtualWrite(V1, "Open");
Blynk.virtualWrite(V1, "Open");
Oh my! This works!
It’s been a long day today and the amount of errors I was getting… amazing haha
Thanks Dmitriy