Difference between revisions of "StrichLux"

From Hackstrich
(Transforms in the CPLD/FPGA would be cool.)
(Adding transform ideas.)
Line 5: Line 5:
 
** Each of the 4 would be up to one DMX universe worth of channels (512)
 
** Each of the 4 would be up to one DMX universe worth of channels (512)
 
** SPI to each I/O module, 8 SPI transceivers total
 
** SPI to each I/O module, 8 SPI transceivers total
** RS232 for troubleshooting the core board itself
+
** RS232 for troubleshooting and configuring the core board itself
 
** Local framebuffer memory
 
** Local framebuffer memory
 
*** Dual-port memory would be best so the output and input sections can both deal with it independently
 
*** Dual-port memory would be best so the output and input sections can both deal with it independently
Line 14: Line 14:
 
** CPLD/FPGA seems a great fit for this
 
** CPLD/FPGA seems a great fit for this
 
*** Lattice LFXP2-5E-5TN144C or Xilinx XC3S50-4VQG100C both seem like good fits
 
*** Lattice LFXP2-5E-5TN144C or Xilinx XC3S50-4VQG100C both seem like good fits
** Since this will likely be the most powerful chip in the whole system, we could do transforms like HSV->RGB here to to take the load off the I/O modules
+
** Since this will likely be the most powerful chip in the whole system, we could do transforms here to to take the load off the I/O modules
 +
*** HSV->RGB
 +
*** Input splitting (one input channel goes to two or more output channels)
 +
*** Input combining (two or more input channels get combined via some function and go to a single output channel)
 +
*** Scaling/offsetting (0-255 in = 32-64 out or such)
 
* Inputs
 
* Inputs
 
** Art-Net over Ethernet
 
** Art-Net over Ethernet

Revision as of 16:46, 7 March 2012

The Modular Lighting Controller will control various kinds of lighting via various protocols/interfaces, or convert between two of the supported protocols/interfaces without directly controlling any devices.

Project Ideas

  • Core board, lets you plug in up to 4 input modules and 4 output modules
    • Each of the 4 would be up to one DMX universe worth of channels (512)
    • SPI to each I/O module, 8 SPI transceivers total
    • RS232 for troubleshooting and configuring the core board itself
    • Local framebuffer memory
      • Dual-port memory would be best so the output and input sections can both deal with it independently
      • 8 bits per frame * 512 channels per universe * 4 universes = 16kbit (2kbyte) of framebuffer memory required
        • Twice that for double-buffering would be awesome, so 32kbit/4kbyte of dual-port memory wanted
      • Split into 4 channels, so each block would be 8kbit/1kbyte
      • Reading/writing needs to happen in parallel for each block
    • CPLD/FPGA seems a great fit for this
      • Lattice LFXP2-5E-5TN144C or Xilinx XC3S50-4VQG100C both seem like good fits
    • Since this will likely be the most powerful chip in the whole system, we could do transforms here to to take the load off the I/O modules
      • HSV->RGB
      • Input splitting (one input channel goes to two or more output channels)
      • Input combining (two or more input channels get combined via some function and go to a single output channel)
      • Scaling/offsetting (0-255 in = 32-64 out or such)
  • Inputs
    • Art-Net over Ethernet
    • Art-Net over WiFi
    • DMX
    • Analog input channels (not 512 though, likely)
  • Outputs
    • LPD8806 LED strips
    • Other LED strips
    • Art-Net over Ethernet
    • Art-Net over WiFi
    • DMX
    • Discrete power switches (relays/FETs/whatever)