Difference between revisions of "LED window display"

From Baltimore Node Wiki
Jump to navigationJump to search
(Initial nCode proposal.)
 
Line 5: Line 5:
  
 
== System Architecture ==
 
== System Architecture ==
 
+
[[File:Display arch.png]]
  
 
== nCode ==
 
== nCode ==

Revision as of 16:50, 4 March 2011

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