123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "name": "Visca",
- "type": "Serial",
- "path": "LIEN",
- "version": "0.0.1",
- "description": "Visca protocol to control PTZ cameras",
- "url": "https://gogs.madology.myds.me/Chataigne/Visca-Module-Chataigne",
- "downloadURL": "",
- "hasInput": true,
- "hasOutput": true,
- "hideDefaultCommands": false,
- "hideDefaultParameters":
- [
- "protocol",
- "messageStructure",
- "firstValueIsTheName"
- ],
- "defaults":
- {
- "protocol":"Raw",
- "baudRate" : 9600
- },
- "parameters":
- {
- "Setup":{
- "type": "Container",
- "collapsed": true,
- "Fixture Definition" : { "type": "File", "description": "Select json file with fixture definitions." , "alwaysNotify": true },
- "Fixtures" : { "type": "File", "description": "Select json file with fixtures."},
- "Load Fixtures": { "type": "Trigger", "description": "Load the fixture files and create parameters for lights"},
- "Clear DMX": { "type": "Trigger", "description": "Set all DMX channels to 0"}
- }
- },
- "scripts": [
- "Visca.js"
- ],
- "values": {},
- "commands": {
- "ZoomAbsolute": {
- "menu": "",
- "callback": "setZoom",
- "parameters": {
- "ID" : {
- "type": "Integer",
- "default":1,
- "min": 1,
- "max": 255,
- "useForMapping": true
- },
- "Position" : {
- "type": "Float",
- "default":0.,
- "min": 0.,
- "max": 1.,
- "useForMapping": true
- }
- }
- }
- }
- }
|