Regarding Eventor

Hello,

I need a help regarding my aquarium lighting schedule. I configure, blink eventor as 10 AM Led on and 10 PM Led off. But, when power cut or device disconnect, relays are reset. and if it is offline during 10 AM. The command is not executed. So, what is the way to make the LED on during the interval on 10 AM to 10 PM. It Should be On during that interval. Please, suggest.
Thanks in Advance,
Sami
I am using simple standalone code:

#define BLYNK_PRINT Serial


#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "YourAuthToken";

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "YourNetworkName";
char pass[] = "YourPassword";

void setup()
{
  // Debug console
  Serial.begin(9600);

  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

Eventor is just a basic App based control interface. If you want more sophisticated control and logic, then you need to switch to Virtual Pins and writing actual logic code that constantly (or periodically) runs and checks the status of the relay pins compared to your desired settings and the current time.

Sorry, no simple drop in answers for your needsโ€ฆ but you can search around this forum for all the various methods used for timing and connection management. I think there have even been other aquarium based topics.

https://community.blynk.cc/search?q=aquarium

okay. Thanks. I will go through on those topic

I want to know, if i can use the eventor after setting the virtual pin? or i need another widget or i need to program the device with time?