123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- int frameCount = 0;
- char previousAnicode = 'a';
- void handleAnimationRendering(char anicode) {
- if (previousAnicode != anicode){
- previousAnicode = anicode;
- frameCount = 0;
- }
-
- String targetFrame = "/" + String(anicode) + ".bin";
- if (SD.exists(targetFrame)) {
-
- loadFrameAndRender(targetFrame);
- delay(getFrameDuration(anicode,0));
- return;
- }
-
- targetFrame = "/" + String(anicode) + String(frameCount) + ".bin";
- if (SD.exists(targetFrame)) {
- loadFrameAndRender(targetFrame);
- frameCount++;
- delay(getFrameDuration(anicode,frameCount));
- return;
- } else {
-
- if (frameCount != 0) {
- loadFrameAndRender("/" + String(anicode) + "0.bin");
- delay(getFrameDuration(anicode,0));
- frameCount = 1;
- return;
- } else {
-
- Serial.println("Target frame buffer not found: " + String(anicode) + ".bin");
- setAnimationCode('a');
- return;
- }
- }
- }
- int getFrameDuration(char anicode, int framecount){
- if ((anicode == 'a' || anicode == 'b') && framecount == 0){
- return 4000;
- }
- return 500;
- }
|