Difference between revisions of "LED window display"

From Baltimore Node Wiki
Jump to navigationJump to search
(Initial nCode proposal.)
(No difference)

Revision as of 16:48, 4 March 2011

Collecting notes for the LED window display.

Anyone have ideas for a better project name???


System Architecture

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]
           ]
       ]
   }