That makes more sense now
However, it is actually safer to write a delay loop slightly differently
while (millis() - previousTime < period);
The rational for that is outlined in this post
That makes more sense now
However, it is actually safer to write a delay loop slightly differently
while (millis() - previousTime < period);
The rational for that is outlined in this post