Hi,
I'm building a Drawing Machine that completes the drawing in one minute but this is my first arduino project and I`m having a lot os problems trying to understand how to write the code for my step motor to complete one revolution in one minute. Does anyone know how can I do it??
If, for example, your motor needs 400 steps to do a revolution, you do a step every 60s / 400 = 150ms.
You can time this with delay() but this will block any other functionality in the mean time. Better to use millis(). For that, have a look at Blink without delay.