Hi Everone,
Here isa part of my code trying to get notification from Blynk. However, I can get any notificatio and the timeline shows no event for the notification
if ( forceReading2>1000 ) {
digitalWrite(PUMP_PIN, HIGH); // Turn the pump on
//notification.notify("Pump is On!"); // Send a notification that the pump is on
Blynk.virtualWrite(V3,1);
Blynk.logEvent("PUMPON","Pump is turned ON !!");
Blynk.virtualWrite(V4,0);
delay(80000);
Blynk.virtualWrite(V4,1);
tone(BUZZER_PIN, 1000, 10000); // Generate a 1000 Hz tone
digitalWrite(PUMP_PIN, LOW);
Blynk.virtualWrite(V3,0);
delay(10000);
Blynk.virtualWrite(V4,0);
delay(10000);
}