4953Views4Replies
Multiple "void setup" in Arduino sketch?
Hello !
Can I use more than one '''void setups' simultaneously in one arduino sketch. Something like that -
void setup()
{
code
}
void setup1()
{
code 2
}
void setup2()
{
code 3
}
I saw in here that I can run multiple "void loops" simultaneously in sketch.
Discussions
Best Answer 3 years ago
You can certainly use custom functions. 'void' can be changed to another datatype, so that the functions can return things like arrays, integers, characters, etc. (a.k.a it is the output) You can also pass arguments into functions (whese are basicly inputs.)
2 years ago
Hello. How can i run this two loops at same time?
3 years ago
Well, it is explained quite simple and direct, so why not just follow and do it?
Those examples for librairies and other things are there to be used ;)
3 years ago
What happens if you try it ?