I recently started with Arduino-IDE because i decided to make musical floopy drives as my final project in school. It is kinda complicated but basicly the thing i need to do now is have to have one void function to call on two other void functions. Kinda like this
void Function1()
{
do something
}
void Function2()
{
do something else
}
void Function3()
{
Function1();
delay(100);
Function2();
}
void loop()
{
Function3();
} // end of loop
I put all my other voids before void loop()
and I indented your sketch to show what you have.
and removed the offending 'voids'
and I used 'code tags' as explained in "how to youse this forum"
(sorry USE. got that N.J. accent when we ask "youse guys wanna get some lunch?"
delay() will kill any hope for fast or continuous execution times.
That's the way of saying that lets you know the secret handshake you can't be in the club because we don't use the words that are written to describe the things that we mean
I know you did not make the rules and I did not make the rules I'm just trying to be easy to understand