Hi, I was hoping anyone at all could give me a code example of a ML timer code, msleep just pauses live view if I try to use it, so I am guessing that is not the best option for what I am doing. I am using bolt trigger, and I wanted to add an extra thing to it, I want it to set off a detection every 10 seconds so I can have it capture images for a time lapse while it is waiting for actual bolts. I don't want to take regular pictures, just the RAW buffer captures, so I just want to say something like,
if(timer==10)
{
bolt_raw_recording = 1;
}
}
But how can I create a simple time code that wont freeze live view like msleep? Anyone that can help I would really be greatful, thanks.