CronAlarms icon indicating copy to clipboard operation
CronAlarms copied to clipboard

Arduino IDE library for scheduling alarms to occur at specific times with crontab syntax

Results 13 CronAlarms issues
Sort by recently updated
recently updated
newest added

Hi, thanks for the library, one really important feature is missing though. I have one global handler for all my cron tasks so I need to know which task is...

Cron.isGlobalEnabled() allows to check global status. Cron.isEnabled(CronID_t ID) allow to check status of alarm with ID.

// attempt to create a cron alarm at the specified CronID CronID_t CronClass::create(CronID_t id, const char * cronstring, OnTick_t onTickHandler, bool isOneShot)

When i run CronAlarms_example.ino, is it possible to introduce a non blocking delay function into the function starting on line 93 ? I am trying to control 4 relays, doing...

Add a macro option to allow std:function as callbacks, disabled by default.

When running the example code the scheduled events won't trigger. Based on my limited understanding something is off with the time library. The time(nullptr) function always returns the same time....

Goal of this change is to be able to to plug a more evolved callback than the plain old function pointer. It extends current usage by allowing using a lambda...

I use the NtpClient library, which is dependent on the TimeLib library, to synchronize the time with an NTP server on an ESP8266. I know that the ESP8266 SDK now...

Is there any way to free whole alarms by a function? Currently, we should store the ID of that alarm in an extra variable.

In #9, someone asked how to specify arguments to the called function. >> Another question: is there a way to overgive arguments to the called function? > [Martin-Laclaustra](https://github.com/Martin-Laclaustra) commented [on...