module.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "Visca",
  3. "type": "Serial",
  4. "path": "LIEN",
  5. "version": "0.0.1",
  6. "description": "Visca protocol to control PTZ cameras",
  7. "url": "https://gogs.madology.myds.me/Chataigne/Visca-Module-Chataigne",
  8. "downloadURL": "",
  9. "hasInput": true,
  10. "hasOutput": true,
  11. "hideDefaultCommands": false,
  12. "hideDefaultParameters":
  13. [
  14. "protocol",
  15. "messageStructure",
  16. "firstValueIsTheName"
  17. ],
  18. "defaults":
  19. {
  20. "protocol":"Raw",
  21. "baudRate" : 9600
  22. },
  23. "parameters":
  24. {
  25. "Setup":{
  26. "type": "Container",
  27. "collapsed": true,
  28. "Fixture Definition" : { "type": "File", "description": "Select json file with fixture definitions." , "alwaysNotify": true },
  29. "Fixtures" : { "type": "File", "description": "Select json file with fixtures."},
  30. "Load Fixtures": { "type": "Trigger", "description": "Load the fixture files and create parameters for lights"},
  31. "Clear DMX": { "type": "Trigger", "description": "Set all DMX channels to 0"}
  32. }
  33. },
  34. "scripts": [
  35. "Visca.js"
  36. ],
  37. "values": {},
  38. "commands": {
  39. "ZoomAbsolute": {
  40. "menu": "",
  41. "callback": "setZoom",
  42. "parameters": {
  43. "ID" : {
  44. "type": "Integer",
  45. "default":1,
  46. "min": 1,
  47. "max": 255,
  48. "useForMapping": true
  49. },
  50. "Position" : {
  51. "type": "Float",
  52. "default":0.,
  53. "min": 0.,
  54. "max": 1.,
  55. "useForMapping": true
  56. }
  57. }
  58. }
  59. }
  60. }