I have 2 functions in my code. BLYNK_WRITE(V1)
checks if there is the signal from Blynk server. loop()
check if there is the signal from RFID. Both will lead to the same resault.
Can I set 2 conditions at the same time in flow chat as the below photo? Or I must set 2 conditions in order of first to last?
BLYNK_WRITE(V1)
{
if (param.asInt() == 1)
Unlock();
}
void loop()
{
...
}