Overview
Lumosplash is a concept for modular LED panels designed to provide flexible ambient lighting with programmable behavior. The project combines physical panel design, wiring/logical layout, and automation routines to control patterns.
Key Elements
- Panel layout and modular physical design.
- Channel mapping and zone-based lighting groups.
- Preset patterns for calm, active, and alert states.
- Potential integrations with schedules or sensor inputs.
Logic Concepts
mode = get_current_mode() # e.g. "calm", "focus", "alert"
if mode == "calm":
run_slow_gradient(pattern="warm_pulse")
elif mode == "focus":
run_subtle_static(pattern="neutral_white")
elif mode == "alert":
run_high_contrast_flash(pattern="red_white")
What This Demonstrates
The project ties together hardware constraints, user experience, and automation logic. It shows the ability to think across physical devices, control flows, and end-user impact.