Stop looping

Hello, community!
Is there any way to give sparki a series of commands and have him/her stop after finishing the series rather than looping endlessly?
Thanks!
Mike

Yes, you can either put the code into the setup portion.

#include <Sparki.h> // include the sparki library
 
void setup() // code inside these brackets runs first, and only once
{
 
}
 
void loop() // code inside these brackets runs over and over forever
{
 
}

Great! Thanks so much!