LED Lighting Software
Go to file
Peter Slattery 2a65b3e333 v1 last commit 2022-10-24 14:00:39 -07:00
app_run_tree/data Updated build batch files. 2020-05-11 18:22:02 -07:00
build Merge branch 'dev' 2021-02-28 15:37:02 -08:00
docs/images Documentation 2019-12-29 08:40:50 -08:00
src Merge branch 'dev' 2021-02-28 15:37:02 -08:00
.gitignore Updated gitignore. 2020-05-11 18:09:05 -07:00
README.md v1 last commit 2022-10-24 14:00:39 -07:00
debug.bat Interface fixes. Fixed the problem with strip LUT tables where substrips were stamping over previous substrips. Some pattern building too. 2021-01-10 16:25:35 -08:00
msdev.bat Working on meta - got nodes fully in place again. Still need to store meta tags on struct members 2020-02-22 18:54:28 -08:00
project.4coder Updated build batch files. 2020-05-11 18:22:02 -07:00
run.bat Fixed a strip count error in gen_blumen_lumen, and did some output data checking to ensure that we weren't sending garbage data to the sculpture. 2021-02-06 14:09:17 -08:00
test_motor_header.h debug and profiler improvements. implemented sending data to multiple destinations on a per strip basis, rather than a full sculpture basis. new patterns. Added user data to patterns. 2021-01-16 14:02:25 -08:00
test_sound_interface_packet.h debug and profiler improvements. implemented sending data to multiple destinations on a per strip basis, rather than a full sculpture basis. new patterns. Added user data to patterns. 2021-01-16 14:02:25 -08:00

README.md

Lumenarium by Foldhaus

Lumenarium Banner

THIS VERSION IS DEPRECATED

Please checkout the master branch to see the latest working version of Lumenarium

Build Lumenarium

Building Lumenarium requires having MSVC installed (sorry, Windows only for now!).

  1. clone the repo onto your computer
  2. Run the appropriate build batch file
    • for Windows: use build\build_app_msvc_win32_debug.bat
    • other platforms coming soon

Run Lumenarium

Windows - Debug

  1. Just run win32_msvc\debug\win32_foldhaus.exe

Debug Lumenarium

###Windows Building in debug mode outputs pdb file info that can be read by Visual Studio or RemedyBG (preferred debugging solution, but ymmv). You can just open the exe in either application and it'll find the pdb file in the same directory

What Is Lumenarium?

Lumenarium is our custom build light and motion control software. It allows us to design light and motion patterns for our sculptures, visualize the output long before the sculpture is built, and iterate in real time to achieve the best visual results quickly.

Foldhaus can be found here.

Image of Lumenarium

Features

The following features are under active development for integration in Lumenarium


Sculpture File Format

Sculptures are specified via a structured text file so that it is easy to represent new sculptures, simply as strips of LEDs.

Documentation coming soon.


DMX Output

Lumenarium supports SACN output, and ArtNet is in development, via a DMX system which underlies them both.


Live Visualization

We don't always have access to our physical sculptures while working on the lights and motion for them. Having a visualization of the sculpture lets us see what the patterns we develop will look like when running on the actual sculpture.

The visualization runs in real time, and mirrors the DMX output the sculptures will receive, so any changes made in the software are immediately reflected, both in the visualization and in the data sent over the network.


Animation Timeline

One goal of Lumenarium is to enable fine-grained control over procedural light and motion patterns. Patterns can be arranged on a timeline for manual sequencing.

Coming Soon

  • Pattern Fading/Cross fading
  • Pattern parameter controls

Node Based Pattern Creation

Pattern creation also happens within Lumenarium. Rather than program individual patterns in code, Lumenarium provides a node based interface to combine small units of functionality to create patterns. These patterns are available for sequencing in the animation timeline.

Coming Soon

  • compilation of node based patterns
  • more nodes!

Live Compilation Reload

One of the most fulfilling parts of working on these sculptures is getting to iterate live on the lights and motion in front of the physical sculpture while on active display. While Lumenarium is designed to enable everyone to shape the visual identity of our sculptures, it also allows for low-level, fine grained control over the visual output as well. The software is split into a platform layer (currently Windows only, though there are plans to support Mac, and possibly Raspberry Pi), and an application library. The application library can be recompiled and hot loaded while the software is running to facilitate the fastest possible iteration time.

To see how this works in detail see Handmade Hero