(This belongs on the codeshare forum, but I don’t have rights to create a new thread there, and it appears there is no starting thread for this driver: http://code.tinyclr.com/project/327/sparkfun-led-matrix/ )
Small note: The usage example has a small flaw that causes it to fail to actually iterate through the numbers as it is intended. This is the corrected snippet from main(), with a // line on changed lines
for (int i = 0; i < numbersBitmap.Length; ) // tweaked
{
Debug.Print("about to display: " + i); // new
Panel1.Write64ByteToDisplay(numbersBitmap[i]); // tweaked
Thread.Sleep(1000);
i++; // new
if (i >= numbersBitmap.Length ) i = 0; // Display 0, 1, 2 forever
}
HTH