wizard97 / ArduinoProcessScheduler

An Arduino object oriented process scheduler designed to replace them all
46 stars 16 forks source link

Enhancement for documentation of setIterations() #1

Closed rmeister closed 7 years ago

rmeister commented 7 years ago

Hi, this library is really cool and I use it for my small wake-up light project.

There is just one thing I didn't get from reading the docs: if you want to reuse a process that already finished its last iteration, you have to call .setIterations() before restarting it. This is not a problem, but it would be good to have it mentioned in the docs.

Regards, Richard

wizard97 commented 7 years ago

Hi,

Thanks for pointing that out. That is indeed a bug, I opened an issue. For now, as you said, just call setIterations(NUM_ITERATIONS) with your number of iterations before you call restart().

Also, I checked out your project, very cool idea. I would like to eventually have a list of example projects, on the readme. Once you finish your wake-up light, I would like to add it to this list. Just taking a quick glance, I would need you to do a few things first:

Let me know if you're interested. Regards, Aaron

rmeister commented 7 years ago

Yes my Arduino sketch is still a mess :grimacing: I'll message you when I think it is ready. Thanks!