From ca54890735ec9e38d609a5c7b39c8898ae171a1e Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Wed, 25 Mar 2026 16:43:08 +0100 Subject: [PATCH 1/2] Update manufacturers.json via editor [skip ci] --- fixtures/manufacturers.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fixtures/manufacturers.json b/fixtures/manufacturers.json index 1a3ff8163e..ed43c58169 100644 --- a/fixtures/manufacturers.json +++ b/fixtures/manufacturers.json @@ -28,6 +28,9 @@ "name": "American DJ", "website": "https://www.adj.com/" }, + "aolit": { + "name": "AOLIT" + }, "ape-labs": { "name": "Ape Labs", "website": "https://apelabs.com/" From 1bfed1d3c9094f7b8c2e90e586a8e5dc189cac54 Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Wed, 25 Mar 2026 16:43:10 +0100 Subject: [PATCH 2/2] Add fixture `aolit/rgb-led-par` via editor --- fixtures/aolit/rgb-led-par.json | 171 ++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 fixtures/aolit/rgb-led-par.json diff --git a/fixtures/aolit/rgb-led-par.json b/fixtures/aolit/rgb-led-par.json new file mode 100644 index 0000000000..74914e48a6 --- /dev/null +++ b/fixtures/aolit/rgb-led-par.json @@ -0,0 +1,171 @@ +{ + "$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json", + "name": "RGB LED PAR", + "categories": ["Color Changer"], + "meta": { + "authors": ["KEK"], + "createDate": "2026-03-25", + "lastModifyDate": "2026-03-25", + "importPlugin": { + "plugin": "qlcplus_4.12.1", + "date": "2026-03-25", + "comment": "created by Q Light Controller Plus (version 4.14.4)" + } + }, + "physical": { + "power": 150, + "DMXconnector": "3-pin", + "bulb": { + "type": "LED" + } + }, + "availableChannels": { + "Total diming": { + "defaultValue": 0, + "capability": { + "type": "Intensity" + } + }, + "RED": { + "defaultValue": 0, + "capabilities": [ + { + "dmxRange": [0, 0], + "type": "ColorIntensity", + "color": "Red", + "comment": "R Close" + }, + { + "dmxRange": [1, 255], + "type": "ColorIntensity", + "color": "Red", + "comment": "R Open" + } + ] + }, + "Green": { + "defaultValue": 0, + "capabilities": [ + { + "dmxRange": [0, 0], + "type": "ColorIntensity", + "color": "Green", + "comment": "G Close" + }, + { + "dmxRange": [1, 255], + "type": "ColorIntensity", + "color": "Green", + "comment": "G Open" + } + ] + }, + "Blue": { + "defaultValue": 0, + "capabilities": [ + { + "dmxRange": [0, 0], + "type": "ColorIntensity", + "color": "Blue", + "comment": "B Close" + }, + { + "dmxRange": [1, 255], + "type": "ColorIntensity", + "color": "Blue", + "comment": "B Open" + } + ] + }, + "Strobescopic": { + "defaultValue": 0, + "capabilities": [ + { + "dmxRange": [0, 9], + "type": "ShutterStrobe", + "shutterEffect": "Strobe", + "comment": "No Stroboscopic", + "speedStart": "slow", + "speedEnd": "fast", + "helpWanted": "Are the automatically added speed values correct?" + }, + { + "dmxRange": [10, 255], + "type": "ShutterStrobe", + "shutterEffect": "Strobe", + "speedStart": "slow", + "speedEnd": "fast" + } + ] + }, + "Open DMX": { + "defaultValue": 0, + "capabilities": [ + { + "dmxRange": [0, 50], + "type": "Effect", + "effectName": "Open DMX" + }, + { + "dmxRange": [51, 100], + "type": "Effect", + "effectName": "Program color selection" + }, + { + "dmxRange": [101, 150], + "type": "Effect", + "effectName": "Jump change" + }, + { + "dmxRange": [151, 200], + "type": "Effect", + "effectName": "Gradual change" + }, + { + "dmxRange": [201, 250], + "type": "Effect", + "effectName": "Pulse change" + }, + { + "dmxRange": [251, 255], + "type": "Effect", + "effectName": "Voice Control" + } + ] + }, + "Total speed": { + "defaultValue": 0, + "capability": { + "type": "Speed", + "comment": "Speed", + "speedStart": "slow", + "speedEnd": "fast", + "helpWanted": "Are the automatically added speed values correct?" + } + } + }, + "modes": [ + { + "name": "3-channel", + "shortName": "3ch", + "channels": [ + "RED", + "Green", + "Blue" + ] + }, + { + "name": "7-channel", + "shortName": "7ch", + "channels": [ + "Total diming", + "RED", + "Green", + "Blue", + "Strobescopic", + "Open DMX", + "Total speed" + ] + } + ] +}