Have you tried changing
if (hour() == 20, minute() >= 15)
to
if (hour() == 20 && minute() >= 15)
I use a physical RTC with Blynk, but the syntax is the same.
Have you tried changing
if (hour() == 20, minute() >= 15)
to
if (hour() == 20 && minute() >= 15)
I use a physical RTC with Blynk, but the syntax is the same.