-
Notifications
You must be signed in to change notification settings - Fork 82
Add fixture shehds/mini-led-spot-beam-10w-light
#3140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,182 @@ | ||||||||||
| { | ||||||||||
| "$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json", | ||||||||||
| "name": "Mini LED Spot Beam 10W Light", | ||||||||||
| "shortName": "mini-led-spot", | ||||||||||
| "categories": ["Color Changer", "Moving Head"], | ||||||||||
| "meta": { | ||||||||||
| "authors": ["WIlliam Tessier"], | ||||||||||
| "createDate": "2023-03-22", | ||||||||||
| "lastModifyDate": "2023-03-22" | ||||||||||
| }, | ||||||||||
| "comment": "Mini 10W small moving head light.", | ||||||||||
| "links": { | ||||||||||
| "manual": [ | ||||||||||
| "https://www.shehds.com/u_file/1907/file/ea38ccee37.pdf" | ||||||||||
| ], | ||||||||||
| "productPage": [ | ||||||||||
| "https://www.shehds.com/products/mini-led-spot-beam-10w-lighting" | ||||||||||
| ], | ||||||||||
| "video": [ | ||||||||||
| "https://www.youtube.com/watch?v=WrfsHyYv8QA" | ||||||||||
| ] | ||||||||||
| }, | ||||||||||
| "physical": { | ||||||||||
| "dimensions": [127, 135, 127], | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
The webpage and manual disagree. This is what the manual says. The webpage seems unreliable in other aspects (e.g., 7/15 DMX channels, when their own downloads have only 13ch modes). |
||||||||||
| "weight": 1.8, | ||||||||||
| "power": 10, | ||||||||||
| "DMXconnector": "3-pin", | ||||||||||
| "bulb": { | ||||||||||
| "type": "LED RGBW" | ||||||||||
| }, | ||||||||||
| "lens": { | ||||||||||
| "degreesMinMax": [5, 15] | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| } | ||||||||||
| }, | ||||||||||
| "availableChannels": { | ||||||||||
| "Pan": { | ||||||||||
| "fineChannelAliases": ["Pan fine"], | ||||||||||
| "defaultValue": 0, | ||||||||||
| "precedence": "LTP", | ||||||||||
|
Comment on lines
+38
to
+39
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "capability": { | ||||||||||
| "type": "Pan", | ||||||||||
| "angleStart": "0deg", | ||||||||||
| "angleEnd": "540deg" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Tilt": { | ||||||||||
| "fineChannelAliases": ["Tilt fine"], | ||||||||||
| "defaultValue": 0, | ||||||||||
| "precedence": "LTP", | ||||||||||
|
Comment on lines
+48
to
+49
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "capability": { | ||||||||||
| "type": "Tilt", | ||||||||||
| "angleStart": "0deg", | ||||||||||
| "angleEnd": "270deg" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Pan/Tilt Speed": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "precedence": "LTP", | ||||||||||
|
Comment on lines
+57
to
+58
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "capability": { | ||||||||||
| "type": "PanTiltSpeed", | ||||||||||
| "speedStart": "slow", | ||||||||||
| "speedEnd": "fast" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Dimmer": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "precedence": "LTP", | ||||||||||
|
Comment on lines
+66
to
+67
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "capability": { | ||||||||||
| "type": "Intensity" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Strobe": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "capability": { | ||||||||||
| "type": "StrobeSpeed", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "speedStart": "slow", | ||||||||||
| "speedEnd": "fast" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Red": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "capability": { | ||||||||||
| "type": "ColorIntensity", | ||||||||||
| "color": "Red" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Green": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "capability": { | ||||||||||
| "type": "ColorIntensity", | ||||||||||
| "color": "Green" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Blue": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "capability": { | ||||||||||
| "type": "ColorIntensity", | ||||||||||
| "color": "Blue" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "White": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "capability": { | ||||||||||
| "type": "ColorIntensity", | ||||||||||
| "color": "White" | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "Mode": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "precedence": "LTP", | ||||||||||
|
Comment on lines
+109
to
+110
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "capabilities": [ | ||||||||||
| { | ||||||||||
| "dmxRange": [0, 249], | ||||||||||
| "type": "Generic", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "comment": "Auto Run Mode" | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "dmxRange": [250, 255], | ||||||||||
| "type": "Generic", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "comment": "Sound Activated Mode" | ||||||||||
| } | ||||||||||
| ] | ||||||||||
| }, | ||||||||||
| "Reset": { | ||||||||||
| "defaultValue": 0, | ||||||||||
| "precedence": "LTP", | ||||||||||
|
Comment on lines
+125
to
+126
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "capabilities": [ | ||||||||||
| { | ||||||||||
| "dmxRange": [0, 149], | ||||||||||
| "type": "NoFunction" | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "dmxRange": [150, 200], | ||||||||||
| "type": "Generic", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "comment": "Reset" | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "dmxRange": [201, 255], | ||||||||||
| "type": "NoFunction" | ||||||||||
| } | ||||||||||
| ] | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| "modes": [ | ||||||||||
| { | ||||||||||
| "name": "11 Channel", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "shortName": "11ch", | ||||||||||
| "channels": [ | ||||||||||
| "Pan", | ||||||||||
| "Pan fine", | ||||||||||
| "Tilt", | ||||||||||
| "Tilt fine", | ||||||||||
| "Pan/Tilt Speed", | ||||||||||
| "Dimmer", | ||||||||||
| "Strobe", | ||||||||||
| "Red", | ||||||||||
| "Green", | ||||||||||
| "Blue", | ||||||||||
| "White" | ||||||||||
| ] | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "name": "13 Channel", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "shortName": "13ch", | ||||||||||
| "channels": [ | ||||||||||
| "Pan", | ||||||||||
| "Pan fine", | ||||||||||
| "Tilt", | ||||||||||
| "Tilt fine", | ||||||||||
| "Pan/Tilt Speed", | ||||||||||
| "Dimmer", | ||||||||||
| "Strobe", | ||||||||||
| "Red", | ||||||||||
| "Green", | ||||||||||
| "Blue", | ||||||||||
| "White", | ||||||||||
| "Mode", | ||||||||||
| "Reset" | ||||||||||
| ] | ||||||||||
| } | ||||||||||
| ] | ||||||||||
| } | ||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.