Re: Controller Board for Adafruit's Large RGB Matrix Display
Reply #66 –
Hi Craig,
I was able to check out your sketches. Nice work :)
I made a couple of minor changes:
delay(500); // was 2000
fileNumber++;
if (fileNumber == 100) {
fileNumber = 1; // original code stopped after last file
}
By removing the delay between each image I was also able to test the load speed. It seems like it's reaching around 20-25 frames/s on my setup (I didn't bother timing it accurately). Respectable :)
My quest has been to display BMP files both as still images (slideshows) and as animations (e.g. converted from GIF-anims). I have also spent a tiny bit on a possible config setup and planned to create a sketch in Processing to generate both the image files and config files.
You can read about my config thoughts on the Pixelmatix forum and I welcome input/critique.
Kjetil