**Hello community, I have the problem when receiving my irrigation alert notifications, notifications arrive when I get to the specified threshold all well, but the problem is, they arrive the same notification every 5 seconds, I just need you to notify me once, code here **
if (porcentaje < 40)
{
Serial.println(“Suelo seco !!!”);
Blynk.notify("Encender riego, el suelo esta seco ");
}
if (porcentaje >= 80)
{
Serial.println(“Suelo con exceso de humedad !!!”);
Blynk.notify("Apagara riego, exceso de humedad ");
}