LED window display

From Baltimore Node Wiki
Jump to navigationJump to search

Collecting notes for the LED window display.

Anyone have ideas for a better project name???


System Architecture

Display arch.png

nCode

This is intended to be a common format that is read by the computer connected to the LED driver. The syntax is based on JSON. The pixels in the frames represent Red, Green, Blue, and Alpha values.


   {
       width: 3,
       height: 3,
       loop: true,
       framerate: 10,
       meta: {
           title: "",
           creator: "",
           description: ""
       },
       frames: [
           [
               [255,255,255,255], [255,255,255,255], [255,255,255,255], 
               [255,255,255,255], [255,255,255,255], [255,255,255,255], 
               [255,255,255,255], [255,255,255,255], [255,255,255,255]
           ],
           [
               [255,255,255,255], [255,255,255,255], [255,255,255,255], 
               [255,255,255,255], [255,255,255,255], [255,255,255,255], 
               [255,255,255,255], [255,255,255,255], [255,255,255,255]
           ],
           [
               [255,255,255,255], [255,255,255,255], [255,255,255,255], 
               [255,255,255,255], [255,255,255,255], [255,255,255,255], 
               [255,255,255,255], [255,255,255,255], [255,255,255,255]
           ]
       ]
   }