Any reason why?
You can move the full content of loop() into setup().
You can also run loop() once if so inclined.
void loop()
{
// do some stuff here
...
...
// hang forever
for(;;);
}
Any reason why?
You can move the full content of loop() into setup().
You can also run loop() once if so inclined.
void loop()
{
// do some stuff here
...
...
// hang forever
for(;;);
}