tinygang
tinygang copied to clipboard
Create new Pattern implementations
checkout the ino and pattern.h the ino holds a mapping from users selected pattern to a pattern implementation via Pattern array like so
Pattern* patterns[] = { new BookendFlip(), // pattern individually triggered new WhiteTrace(), // pattern upon receive new RainbowSparkle(), new BookendTrace(), new WhiteTrace(), new Twinkler() };
look at the other example pattern implementations in the header files.
create your own and submit a pull request
#hacktoberfest
Nice :)