I had my program working well with the Blynk Library v0.3.3. Then I upgraded to v0.3.7 and since the upgrade, the BLYNK_WRITE(V1) or (V2) commands from my Android phone no longet come thru. I can send data to the phone just fine, but getting data from the phone no longer works.
BLYNK_WRITE(V1)
{
int x = param.asInt();
Serial.println(“Getting bAutoMode…”);
if (x > 0)
{
bAutoMode = ON;
}
else
{
bAutoMode = OFF;
}
}
Pretty simple code, except that it doesn’t work. Am I missing something, or did something change I am not aware of?