module.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. {
  2. "name":"EOS OSC",
  3. "type":"OSC",
  4. "path":"Software",
  5. "version":"1.0.0",
  6. "description":"Mike's special module to control EOS Light Console through OSC via commands",
  7. "url":"https://github.com/benkuper/EOS-OSC-Chataigne-Module",
  8. "downloadURL":"https://github.com/benkuper/EOS-OSC-Chataigne-Module/archive/master.zip",
  9. "hasInput":true,
  10. "hasOutput":true,
  11. "hideDefaultCommands":false,
  12. "defaults":
  13. {
  14. "baudRate":115200,
  15. "autoAdd":false,
  16. "OSC Input":
  17. {
  18. "localPort":9001
  19. },
  20. "OSC Output":
  21. {
  22. "remotePort":9000
  23. }
  24. },
  25. "parameters":
  26. {
  27. "Start Channel":
  28. {
  29. "type":"Integer"
  30. }
  31. },
  32. "hideDefaultParameters":
  33. [
  34. "autoAdd",
  35. "splitArguments",
  36. "autoRange",
  37. "autoFeedback"
  38. ],
  39. "scripts":
  40. [
  41. "EOSOSC.js"
  42. ],
  43. "values":
  44. {
  45. },
  46. "commands":
  47. {
  48. "Set Value":
  49. {
  50. "menu":"",
  51. "callback":"valueCallback",
  52. "parameters":
  53. {
  54. "Target":
  55. {
  56. "type":"Enum",
  57. "options":
  58. {
  59. "All":"all",
  60. "One":"one",
  61. "Range":"range"
  62. }
  63. },
  64. "ID":
  65. {
  66. "type":"Integer",
  67. "dependency":
  68. {
  69. "source":"target",
  70. "value":"one",
  71. "check":"equals",
  72. "action":"show"
  73. }
  74. },
  75. "Start ID":
  76. {
  77. "type":"Integer",
  78. "dependency":
  79. {
  80. "source":"target",
  81. "value":"range",
  82. "check":"equals",
  83. "action":"show"
  84. }
  85. },
  86. "End ID":
  87. {
  88. "type":"Integer",
  89. "default":1,
  90. "dependency":
  91. {
  92. "source":"target",
  93. "value":"range",
  94. "check":"equals",
  95. "action":"show"
  96. }
  97. },
  98. "Value":
  99. {
  100. "type":"Float",
  101. "min":0,
  102. "max":1,
  103. "default":0
  104. }
  105. }
  106. },
  107. "Set Color":
  108. {
  109. "menu":"",
  110. "callback":"colorCallback",
  111. "parameters":
  112. {
  113. "Target":
  114. {
  115. "type":"Enum",
  116. "options":
  117. {
  118. "All":"all",
  119. "One":"one",
  120. "Range":"range"
  121. }
  122. },
  123. "ID":
  124. {
  125. "type":"Integer",
  126. "dependency":
  127. {
  128. "source":"target",
  129. "value":"one",
  130. "check":"equals",
  131. "action":"show"
  132. }
  133. },
  134. "Start ID":
  135. {
  136. "type":"Integer",
  137. "dependency":
  138. {
  139. "source":"target",
  140. "value":"range",
  141. "check":"equals",
  142. "action":"show"
  143. }
  144. },
  145. "End ID":
  146. {
  147. "type":"Integer",
  148. "default":1,
  149. "dependency":
  150. {
  151. "source":"target",
  152. "value":"range",
  153. "check":"equals",
  154. "action":"show"
  155. }
  156. },
  157. "Color":
  158. {
  159. "type":"Color",
  160. "default":[1,0,0,1]
  161. }
  162. }
  163. },
  164. "Black Out":
  165. {
  166. "menu":"",
  167. "callback":"blackOutCallback",
  168. "parameters":
  169. {
  170. "Target":
  171. {
  172. "type":"Enum",
  173. "options":
  174. {
  175. "All":"all",
  176. "One":"one",
  177. "Range":"range"
  178. }
  179. },
  180. "ID":
  181. {
  182. "type":"Integer",
  183. "dependency":
  184. {
  185. "source":"target",
  186. "value":"one",
  187. "check":"equals",
  188. "action":"show"
  189. }
  190. },
  191. "Start ID":
  192. {
  193. "type":"Integer",
  194. "dependency":
  195. {
  196. "source":"target",
  197. "value":"range",
  198. "check":"equals",
  199. "action":"show"
  200. }
  201. },
  202. "End ID":
  203. {
  204. "type":"Integer",
  205. "default":1,
  206. "dependency":
  207. {
  208. "source":"target",
  209. "value":"range",
  210. "check":"equals",
  211. "action":"show"
  212. }
  213. }
  214. }
  215. },
  216. "Gradient":
  217. {
  218. "menu":"Advanced",
  219. "callback":"gradientCallback",
  220. "parameters":
  221. {
  222. "Start ID":
  223. {
  224. "type":"Integer",
  225. "min":0,
  226. "max":15
  227. },
  228. "End ID":
  229. {
  230. "type":"Integer",
  231. "default":1,
  232. "min":0,
  233. "max":15
  234. },
  235. "Start Color":
  236. {
  237. "type":"Color",
  238. "default":[1,0,0,1]
  239. },
  240. "End Color":
  241. {
  242. "type":"Color",
  243. "default":[0,0,1,1]
  244. }
  245. }
  246. },
  247. "Point":
  248. {
  249. "menu":"Advanced",
  250. "callback":"pointCallback",
  251. "parameters":
  252. {
  253. "Start ID":
  254. {
  255. "type":"Integer",
  256. "min":0,
  257. "max":15
  258. },
  259. "End ID":
  260. {
  261. "type":"Integer",
  262. "default":1,
  263. "min":0,
  264. "max":15
  265. },
  266. "Position":
  267. {
  268. "type":"Float",
  269. "default":0.5,
  270. "min":0,
  271. "max":1,
  272. },
  273. "Size":
  274. {
  275. "type":"Float",
  276. "default":0.1,
  277. "min":0,
  278. "max":1
  279. },
  280. "Fade":
  281. {
  282. "type":"Float",
  283. "default":0.5,
  284. "min":0,
  285. "max":1
  286. },
  287. "Color":
  288. {
  289. "type":"Color",
  290. "default":[1,1,1,1]
  291. }
  292. }
  293. }
  294. }
  295. }