[SOLVED] Setting a Blynk Virtual Pin HIGH

Hi folks!

I am trying to set Virtual pin 3 high with the following line:

Blynk.virtualWrite(V3, HIGH);

The led widget does not light when I connect it to Virtual pin 3. Am I missing a trick here?

Thanks in advance.

Have you tried using 1 instead of HIGH? I think both should work though.

Hello. Yes. Please have a look into documentation.

Either use LedWidget.on() either send 255, not 1.

Thanks guys! replacing the HIGH with 255 works, your help is much appreciated!