Hi,
im’m trying to use the notification command in a function (called rarely), i dont’t have a real pin pressed.
can i use it without interrupt (like the examples)?
this is the function i call:
indent preformatted text by 4 spaces
void allarme()
{
//digitalWrite (Sirena , LOW);
digitalWrite (Contatto , HIGH);
delay (500);
digitalWrite (Contatto , LOW);
digitalWrite (Sirena , HIGH);
previousMillis = currentMillis;
Serial.println ("----------------SIRENA----------------------");
Blynk.notify(“Allarme”);
}