osalval wrote: After some test I confirm that only one automation CRON can work every day.
It seems it is a API problem.
Even I tested to have only one program in one Automation Group and nothing, only works first of it on execute by time schedule
Download following file and replace EasyIoT.exe in easyiot folder. It should work.
File is compiled for latest beta v0.9b1.
/*
This code is running one time when program is enabled
*/
public void Setup()
{
}
/*
This code is running periodicaly when program is enabled.
Cron job detirmine running period.
*/
public void Run()
{
DriverHelper.ProcessCommad(Domains.RPIGPIO, "Pin_P1_16", "ControlOn","");
}
Hello,
I am not using RPIGPIO driver, by now, but it seems OK.
I think you can have one Automation program and several programs on it, one per Cron settings, or only one program with System.Threading.Thread.Sleep(x); separating every event.