Email time, this one from Joel from the country that gave birth to the country that everyone loves to hate ... except me and Chuck Norris, America.
Hi Clint,
Amazing project, I'm thinking about doing it too ! I have downloaded your software and was just wondering if it was configurable for a floor made up of 7 modules x 2 modules (28 x 32 tiles). Is it possible that the modules are treated as one big floor? I am no programmer so if the answer is obvious then I apologize.
Also, how are ddf animations created? have you plans to create any in addition to the ones on the MIT website?
One last thing when creating GIF's does it work out that 1 tile = 1 pixel or similar, I would like to display text on my floor and was wondering the best way to go about it.
Thanks in advance,
Joel Hauxwell.
You can configure it so your modules are 2x32 tiles and have 14 modules (DDF boards). My floor is 4x16 and 7 modules.
DDF animations are created via a MatLab script. Since I've never used that �? I build in animated Gif support. Washington U has some DDF files that are cool but you need to ask for them since they haven't posted them.
Yes, 1 tile = 1px. The software is smart enough to resize the image to the size of your floor. Photoshop does a far better job at resizing but the resize is a last ditch effort incase the size does not match your floor. Might in the future configure this.
Soon I'll add in scrolling text / Music support but I'm still in the process of building my floor so all about time management.
Couple minutes later ...
Clint,
Thanks for your help just to clarify, how do I configure for 14 modules of 4x16 tiles to make one big floor?�? my modules are arranged in a 2x7 grid.
Hope this helps. I appreciate your time.
Joel.
Each DDF board can support 64 lights. 2*32 = 64. So you create 'modules' that are 2x32 and start layering to get your final size of 28x64 (which is twice the size of my floor). From there, the XML config file will handle the rest.
You'll have 32 of these in the configuration file
<ComPort>COMX</ComPort>
You'll have to manually verfy that 'Com4' is the DDF module you want position 1.
<ddf>
<configuration>
<AnimationDirectory>C:\Documents and Settings\Clint\Desktop\animation</AnimationDirectory>
<DisableComPortWrite>true</DisableComPortWrite>
<BaudRate>57600</BaudRate>
<TilesPerRow>32</TilesPerRow>
<RowsPerModule>3</RowsPerModule>
<ComPorts>
<ComPort>COM4</ComPort>
<ComPort>COM5</ComPort>
...
<ComPort>COM36</ComPort>
</ComPorts>
</configuration>
</ddf>