Пример #1
0
 public static void Flush(byte[] vram)
 {
     for (var x = 0; x < 8; x++)
     {
         Array.Copy(vram, x * line.Length, line, 0, line.Length);
         ledchip.DisplayLine(7 - x, line);
     }
 }