The Idea behind this Software is to build a light control software that supports artnet output and a similar structure to industry standard light control software.
The goal is to support ArtNET Output on multiple universes and a hardware abstraction layer for controlling multiple different fixtures with the same commands.
The planned basic feature set contains:
- ArtNET Output on multiple Universes
- Fixtures patching with Hardware Abstraction (e.g. RGB and CMYK fixtures will be managed the same)
- Preset Values for Fixtures (e.g. Gobo, Color Wheel Positions)
- Programmer with command Line input (e.g.
FIXTURE 1 AT 100orFIXTURE 1 THRU 10 AT COLOR 0.255.0) - Scenes with Tracking
The goal of this software is to be usable on all systems that are capable of running node.js e.g. also a Raspberry PI. In the beginning, the software will be controllable via a REST-API (running scenes), later it will get a web based user-interface.
The software is written in Typescript and requires node and npm to be installed. You can then use npm's scripts to execute development scripts.
npm i -Dfor installing all the dependenciesnpm run dev- Start Development Environment. Client and server are in watch mode with source maps, opens http://localhost:3000npm run storybook- starts react storybook for UI component development.
npm run build-distfolder will include all the needed files, both client (Bundle) and server.npm start- Just runsnode ./dist/server/server.jsnpm start:prod- setsNODE_ENVtoproductionand then runsnode ./dist/server/server.js. (Bypassing webpack proxy)
Backend:
node.jsas runtimetypescriptas programming languageexpressfor APIs
Frontend:
webpack 5for bundlingreactas UI Frameworkstorybookfor developing componentsaxiosfor contacting the REST APIs
- ✓ Basic Software Layout (no UI yet)
- ✓ DMX Output
- ✓ Fixture Basics (Dimmer/Virtual Dimmer, Color, DMX Patch)
- ✓ Read Showfiles from YAML
- ✓ Apple HomeKit UI
- Fadetimes
- Value-Presets
- Scenes, Cues (only existing ones from the showfile)
- Tracking Engine
- Effects as Values
- Basic UI: Show currently running Sequences
- Basic UI: Show Fixtures
- Basic UI: Load/ Save showfile
- Basic UI: Show DMX Values/ Patch
- Programmer Matrix and Creating new Scenes/ Cues in the software
At the moment the License is Proprietary. You can use it for your own purposes but are not allowed to change anything except for your own purposes. You are not allwoed to sell it as software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
