module.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "sequenceMgr",
  3. "type": "Serial",
  4. "path": "LIEN",
  5. "version": "0.0.1",
  6. "description": "augment control over sequence keys, with saving/recalling mecanism, grouping ",
  7. "url": "",
  8. "downloadURL": "",
  9. "hasInput": false,
  10. "hasOutput": false,
  11. "hideDefaultCommands": true,
  12. "hideDefaultParameters": [
  13. "protocol",
  14. "autoAdd",
  15. "messageStructure",
  16. "firstValueIsTheName",
  17. "port",
  18. "baudRate",
  19. "isConnected",
  20. "pass_through"
  21. ],
  22. "defaults": {},
  23. "parameters": {
  24. "Sequence File": {
  25. "type": "File",
  26. "description": "Select json file with sequence structure."
  27. },
  28. "Load Sequence": {
  29. "type": "Trigger",
  30. "description": "Rebuilds all keys and groups in current sequence"
  31. },
  32. "Export Sequence": {
  33. "type": "Trigger",
  34. "description": "export group structure and key values to json file"
  35. },
  36. "Sequence": {
  37. "type": "Enum"
  38. },
  39. "Refresh list": {
  40. "type": "Trigger",
  41. "description": "refresh sequence list"
  42. }
  43. },
  44. "scripts": [
  45. "SequenceMgr.js"
  46. ],
  47. "values": {
  48. "New group":{
  49. "type": "Container",
  50. "collapsed": false,
  51. "Create": {
  52. "type": "Trigger",
  53. "description": "create a new key group"
  54. }
  55. },
  56. "groups": {
  57. "type": "Container",
  58. "collapsed": false
  59. }
  60. },
  61. "commands": {
  62. "ZoomAbsolute": {
  63. "menu": "",
  64. "callback": "setZoom",
  65. "parameters": {
  66. "ID": {
  67. "type": "Integer",
  68. "default": 1,
  69. "min": 1,
  70. "max": 255,
  71. "useForMapping": true
  72. },
  73. "Position": {
  74. "type": "Float",
  75. "default":0,
  76. "min": 0,
  77. "max": 1,
  78. "useForMapping": true
  79. }
  80. }
  81. }
  82. }
  83. }