module.json 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209
  1. {
  2. "name":"BT_OSCcontroller",
  3. "type":"OSC",
  4. "path":"LIEN-BT",
  5. "version":"0.0.1",
  6. "description":"BT OSC controller manager",
  7. "url":"https://gogs.madology.myds.me/FRESNOY/BT_OSCcontroller_chataigne",
  8. "downloadURL":"",
  9. "hasInput":true,
  10. "hasOutput":true,
  11. "hideDefaultCommands":false,
  12. "defaults":
  13. {
  14. "autoAdd":false,
  15. "OSC Input":
  16. {
  17. "localPort":9977
  18. },
  19. "OSC Outputs":{
  20. "OSC Output":
  21. {
  22. "local": false,
  23. "remoteHost":"239.200.200.200",
  24. "remotePort":9977
  25. }
  26. }
  27. },
  28. "parameters":
  29. {
  30. },
  31. "hideDefaultParameters":
  32. [
  33. "autoAdd",
  34. "splitArguments",
  35. "autoRange",
  36. "autoFeedback",
  37. "pass_through"
  38. ],
  39. "scripts":
  40. [
  41. "BT_OSCcontroller.js"
  42. ],
  43. "values":
  44. {
  45. "onTarget":
  46. {
  47. "type":"Boolean",
  48. "default":false,
  49. "useForMapping": true
  50. },
  51. "homed":
  52. {
  53. "type":"Boolean",
  54. "default":false,
  55. "useForMapping": true
  56. },
  57. "Axis positions":
  58. {
  59. "type": "Container",
  60. "collapsed": true,
  61. "X":
  62. {
  63. "type":"Float",
  64. "min":0.,
  65. "max":1.,
  66. "default":0.,
  67. "useForMapping": true
  68. },
  69. "Y":
  70. {
  71. "type":"Float",
  72. "min":0.,
  73. "max":1.,
  74. "default":0.,
  75. "useForMapping": true
  76. },
  77. "Z":
  78. {
  79. "type":"Float",
  80. "min":0.,
  81. "max":1.,
  82. "default":0.,
  83. "useForMapping": true
  84. },
  85. "W":
  86. {
  87. "type":"Float",
  88. "min":0.,
  89. "max":1.,
  90. "default":0.,
  91. "useForMapping": true
  92. },
  93. "Shutter":
  94. {
  95. "type":"Float",
  96. "min":0.,
  97. "max":1.,
  98. "default":0.,
  99. "useForMapping": true
  100. },
  101. "Film":
  102. {
  103. "type":"Float",
  104. "min":0.,
  105. "max":1.,
  106. "default":0.,
  107. "useForMapping": true
  108. },
  109. "T1":
  110. {
  111. "type":"Float",
  112. "min":0.,
  113. "max":1.,
  114. "default":0.,
  115. "useForMapping": true
  116. },
  117. "T2":
  118. {
  119. "type":"Float",
  120. "min":0.,
  121. "max":1.,
  122. "default":0.,
  123. "useForMapping": true
  124. },
  125. "T3":
  126. {
  127. "type":"Float",
  128. "min":0.,
  129. "max":1.,
  130. "default":0.,
  131. "useForMapping": true
  132. },
  133. "T4":
  134. {
  135. "type":"Float",
  136. "min":0.,
  137. "max":1.,
  138. "default":0.,
  139. "useForMapping": true
  140. }
  141. },
  142. "X axis":
  143. {
  144. "type": "Container",
  145. "collapsed": true,
  146. "onTarget":
  147. {
  148. "type":"Boolean",
  149. "default":false,
  150. "useForMapping": true
  151. },
  152. "position":
  153. {
  154. "type":"Float",
  155. "min":0.,
  156. "max":1.,
  157. "default":0.,
  158. "useForMapping": true
  159. },
  160. "speed":
  161. {
  162. "type":"Float",
  163. "default":0.,
  164. "useForMapping": true
  165. },
  166. "state":
  167. {
  168. "type":"Enum",
  169. "options":
  170. {
  171. "disabled":"disabled",
  172. "ready":"ready",
  173. "running":"running",
  174. "stopping":"stopping",
  175. "limit_low":"limit_low",
  176. "limit_high":"limit_high",
  177. "homing_low":"homing_low",
  178. "homing_high":"homing_high"
  179. }
  180. },
  181. "limit_low":
  182. {
  183. "type":"Boolean",
  184. "default":false,
  185. "useForMapping": true
  186. },
  187. "limit_high":
  188. {
  189. "type":"Boolean",
  190. "default":false,
  191. "useForMapping": true
  192. },
  193. "homing_low":
  194. {
  195. "type":"Boolean",
  196. "default":false,
  197. "useForMapping": true
  198. },
  199. "homing_high":
  200. {
  201. "type":"Boolean",
  202. "default":false,
  203. "useForMapping": true
  204. }
  205. },
  206. "Y axis":
  207. {
  208. "type": "Container",
  209. "collapsed": true,
  210. "onTarget":
  211. {
  212. "type":"Boolean",
  213. "default":false,
  214. "useForMapping": true
  215. },
  216. "position":
  217. {
  218. "type":"Float",
  219. "min":0.,
  220. "max":1.,
  221. "default":0.,
  222. "useForMapping": true
  223. },
  224. "speed":
  225. {
  226. "type":"Float",
  227. "default":0.,
  228. "useForMapping": true
  229. },
  230. "state":
  231. {
  232. "type":"Enum",
  233. "options":
  234. {
  235. "disabled":"disabled",
  236. "ready":"ready",
  237. "running":"running",
  238. "stopping":"stopping",
  239. "limit_low":"limit_low",
  240. "limit_high":"limit_high",
  241. "homing_low":"homing_low",
  242. "homing_high":"homing_high"
  243. }
  244. },
  245. "limit_low":
  246. {
  247. "type":"Boolean",
  248. "default":false,
  249. "useForMapping": true
  250. },
  251. "limit_high":
  252. {
  253. "type":"Boolean",
  254. "default":false,
  255. "useForMapping": true
  256. },
  257. "homing_low":
  258. {
  259. "type":"Boolean",
  260. "default":false,
  261. "useForMapping": true
  262. },
  263. "homing_high":
  264. {
  265. "type":"Boolean",
  266. "default":false,
  267. "useForMapping": true
  268. }
  269. },
  270. "Z axis":
  271. {
  272. "type": "Container",
  273. "collapsed": true,
  274. "onTarget":
  275. {
  276. "type":"Boolean",
  277. "default":false,
  278. "useForMapping": true
  279. },
  280. "position":
  281. {
  282. "type":"Float",
  283. "min":0.,
  284. "max":1.,
  285. "default":0.,
  286. "useForMapping": true
  287. },
  288. "speed":
  289. {
  290. "type":"Float",
  291. "default":0.,
  292. "useForMapping": true
  293. },
  294. "state":
  295. {
  296. "type":"Enum",
  297. "options":
  298. {
  299. "disabled":"disabled",
  300. "ready":"ready",
  301. "running":"running",
  302. "stopping":"stopping",
  303. "limit_low":"limit_low",
  304. "limit_high":"limit_high",
  305. "homing_low":"homing_low",
  306. "homing_high":"homing_high"
  307. }
  308. },
  309. "limit_low":
  310. {
  311. "type":"Boolean",
  312. "default":false,
  313. "useForMapping": true
  314. },
  315. "limit_high":
  316. {
  317. "type":"Boolean",
  318. "default":false,
  319. "useForMapping": true
  320. },
  321. "homing_low":
  322. {
  323. "type":"Boolean",
  324. "default":false,
  325. "useForMapping": true
  326. },
  327. "homing_high":
  328. {
  329. "type":"Boolean",
  330. "default":false,
  331. "useForMapping": true
  332. }
  333. },
  334. "W axis":
  335. {
  336. "type": "Container",
  337. "collapsed": true,
  338. "onTarget":
  339. {
  340. "type":"Boolean",
  341. "default":false,
  342. "useForMapping": true
  343. },
  344. "position":
  345. {
  346. "type":"Float",
  347. "min":0.,
  348. "max":1.,
  349. "default":0.,
  350. "useForMapping": true
  351. },
  352. "speed":
  353. {
  354. "type":"Float",
  355. "default":0.,
  356. "useForMapping": true
  357. },
  358. "state":
  359. {
  360. "type":"Enum",
  361. "options":
  362. {
  363. "disabled":"disabled",
  364. "ready":"ready",
  365. "running":"running",
  366. "stopping":"stopping",
  367. "limit_low":"limit_low",
  368. "limit_high":"limit_high",
  369. "homing_low":"homing_low",
  370. "homing_high":"homing_high"
  371. }
  372. },
  373. "limit_low":
  374. {
  375. "type":"Boolean",
  376. "default":false,
  377. "useForMapping": true
  378. },
  379. "limit_high":
  380. {
  381. "type":"Boolean",
  382. "default":false,
  383. "useForMapping": true
  384. },
  385. "homing_low":
  386. {
  387. "type":"Boolean",
  388. "default":false,
  389. "useForMapping": true
  390. },
  391. "homing_high":
  392. {
  393. "type":"Boolean",
  394. "default":false,
  395. "useForMapping": true
  396. }
  397. },
  398. "Shutter axis":
  399. {
  400. "type": "Container",
  401. "collapsed": true,
  402. "onTarget":
  403. {
  404. "type":"Boolean",
  405. "default":false,
  406. "useForMapping": true
  407. },
  408. "position":
  409. {
  410. "type":"Float",
  411. "min":0.,
  412. "max":1.,
  413. "default":0.,
  414. "useForMapping": true
  415. },
  416. "speed":
  417. {
  418. "type":"Float",
  419. "default":0.,
  420. "useForMapping": true
  421. },
  422. "state":
  423. {
  424. "type":"Enum",
  425. "options":
  426. {
  427. "disabled":"disabled",
  428. "ready":"ready",
  429. "running":"running",
  430. "stopping":"stopping",
  431. "limit_low":"limit_low",
  432. "limit_high":"limit_high",
  433. "homing_low":"homing_low",
  434. "homing_high":"homing_high"
  435. }
  436. },
  437. "limit_low":
  438. {
  439. "type":"Boolean",
  440. "default":false,
  441. "useForMapping": true
  442. },
  443. "limit_high":
  444. {
  445. "type":"Boolean",
  446. "default":false,
  447. "useForMapping": true
  448. },
  449. "homing_low":
  450. {
  451. "type":"Boolean",
  452. "default":false,
  453. "useForMapping": true
  454. },
  455. "homing_high":
  456. {
  457. "type":"Boolean",
  458. "default":false,
  459. "useForMapping": true
  460. }
  461. },
  462. "Film axis":
  463. {
  464. "type": "Container",
  465. "collapsed": true,
  466. "onTarget":
  467. {
  468. "type":"Boolean",
  469. "default":false,
  470. "useForMapping": true
  471. },
  472. "position":
  473. {
  474. "type":"Float",
  475. "min":0.,
  476. "max":1.,
  477. "default":0.,
  478. "useForMapping": true
  479. },
  480. "speed":
  481. {
  482. "type":"Float",
  483. "default":0.,
  484. "useForMapping": true
  485. },
  486. "state":
  487. {
  488. "type":"Enum",
  489. "options":
  490. {
  491. "disabled":"disabled",
  492. "ready":"ready",
  493. "running":"running",
  494. "stopping":"stopping",
  495. "limit_low":"limit_low",
  496. "limit_high":"limit_high",
  497. "homing_low":"homing_low",
  498. "homing_high":"homing_high"
  499. }
  500. },
  501. "limit_low":
  502. {
  503. "type":"Boolean",
  504. "default":false,
  505. "useForMapping": true
  506. },
  507. "limit_high":
  508. {
  509. "type":"Boolean",
  510. "default":false,
  511. "useForMapping": true
  512. },
  513. "homing_low":
  514. {
  515. "type":"Boolean",
  516. "default":false,
  517. "useForMapping": true
  518. },
  519. "homing_high":
  520. {
  521. "type":"Boolean",
  522. "default":false,
  523. "useForMapping": true
  524. }
  525. },
  526. "T1 axis":
  527. {
  528. "type": "Container",
  529. "collapsed": true,
  530. "onTarget":
  531. {
  532. "type":"Boolean",
  533. "default":false,
  534. "useForMapping": true
  535. },
  536. "position":
  537. {
  538. "type":"Float",
  539. "min":0.,
  540. "max":1.,
  541. "default":0.,
  542. "useForMapping": true
  543. },
  544. "speed":
  545. {
  546. "type":"Float",
  547. "default":0.,
  548. "useForMapping": true
  549. },
  550. "state":
  551. {
  552. "type":"Enum",
  553. "options":
  554. {
  555. "disabled":"disabled",
  556. "ready":"ready",
  557. "running":"running",
  558. "stopping":"stopping",
  559. "limit_low":"limit_low",
  560. "limit_high":"limit_high",
  561. "homing_low":"homing_low",
  562. "homing_high":"homing_high"
  563. }
  564. },
  565. "limit_low":
  566. {
  567. "type":"Boolean",
  568. "default":false,
  569. "useForMapping": true
  570. },
  571. "limit_high":
  572. {
  573. "type":"Boolean",
  574. "default":false,
  575. "useForMapping": true
  576. },
  577. "homing_low":
  578. {
  579. "type":"Boolean",
  580. "default":false,
  581. "useForMapping": true
  582. },
  583. "homing_high":
  584. {
  585. "type":"Boolean",
  586. "default":false,
  587. "useForMapping": true
  588. }
  589. },
  590. "T2 axis":
  591. {
  592. "type": "Container",
  593. "collapsed": true,
  594. "onTarget":
  595. {
  596. "type":"Boolean",
  597. "default":false,
  598. "useForMapping": true
  599. },
  600. "position":
  601. {
  602. "type":"Float",
  603. "min":0.,
  604. "max":1.,
  605. "default":0.,
  606. "useForMapping": true
  607. },
  608. "speed":
  609. {
  610. "type":"Float",
  611. "default":0.,
  612. "useForMapping": true
  613. },
  614. "state":
  615. {
  616. "type":"Enum",
  617. "options":
  618. {
  619. "disabled":"disabled",
  620. "ready":"ready",
  621. "running":"running",
  622. "stopping":"stopping",
  623. "limit_low":"limit_low",
  624. "limit_high":"limit_high",
  625. "homing_low":"homing_low",
  626. "homing_high":"homing_high"
  627. }
  628. },
  629. "limit_low":
  630. {
  631. "type":"Boolean",
  632. "default":false,
  633. "useForMapping": true
  634. },
  635. "limit_high":
  636. {
  637. "type":"Boolean",
  638. "default":false,
  639. "useForMapping": true
  640. },
  641. "homing_low":
  642. {
  643. "type":"Boolean",
  644. "default":false,
  645. "useForMapping": true
  646. },
  647. "homing_high":
  648. {
  649. "type":"Boolean",
  650. "default":false,
  651. "useForMapping": true
  652. }
  653. },
  654. "T3 axis":
  655. {
  656. "type": "Container",
  657. "collapsed": true,
  658. "onTarget":
  659. {
  660. "type":"Boolean",
  661. "default":false,
  662. "useForMapping": true
  663. },
  664. "position":
  665. {
  666. "type":"Float",
  667. "min":0.,
  668. "max":1.,
  669. "default":0.,
  670. "useForMapping": true
  671. },
  672. "speed":
  673. {
  674. "type":"Float",
  675. "default":0.,
  676. "useForMapping": true
  677. },
  678. "state":
  679. {
  680. "type":"Enum",
  681. "options":
  682. {
  683. "disabled":"disabled",
  684. "ready":"ready",
  685. "running":"running",
  686. "stopping":"stopping",
  687. "limit_low":"limit_low",
  688. "limit_high":"limit_high",
  689. "homing_low":"homing_low",
  690. "homing_high":"homing_high"
  691. }
  692. },
  693. "limit_low":
  694. {
  695. "type":"Boolean",
  696. "default":false,
  697. "useForMapping": true
  698. },
  699. "limit_high":
  700. {
  701. "type":"Boolean",
  702. "default":false,
  703. "useForMapping": true
  704. },
  705. "homing_low":
  706. {
  707. "type":"Boolean",
  708. "default":false,
  709. "useForMapping": true
  710. },
  711. "homing_high":
  712. {
  713. "type":"Boolean",
  714. "default":false,
  715. "useForMapping": true
  716. }
  717. },
  718. "T4 axis":
  719. {
  720. "type": "Container",
  721. "collapsed": true,
  722. "onTarget":
  723. {
  724. "type":"Boolean",
  725. "default":false,
  726. "useForMapping": true
  727. },
  728. "position":
  729. {
  730. "type":"Float",
  731. "min":0.,
  732. "max":1.,
  733. "default":0.,
  734. "useForMapping": true
  735. },
  736. "speed":
  737. {
  738. "type":"Float",
  739. "default":0.,
  740. "useForMapping": true
  741. },
  742. "state":
  743. {
  744. "type":"Enum",
  745. "options":
  746. {
  747. "disabled":"disabled",
  748. "ready":"ready",
  749. "running":"running",
  750. "stopping":"stopping",
  751. "limit_low":"limit_low",
  752. "limit_high":"limit_high",
  753. "homing_low":"homing_low",
  754. "homing_high":"homing_high"
  755. }
  756. },
  757. "limit_low":
  758. {
  759. "type":"Boolean",
  760. "default":false,
  761. "useForMapping": true
  762. },
  763. "limit_high":
  764. {
  765. "type":"Boolean",
  766. "default":false,
  767. "useForMapping": true
  768. },
  769. "homing_low":
  770. {
  771. "type":"Boolean",
  772. "default":false,
  773. "useForMapping": true
  774. },
  775. "homing_high":
  776. {
  777. "type":"Boolean",
  778. "default":false,
  779. "useForMapping": true
  780. }
  781. }
  782. },
  783. "commands":
  784. {
  785. "State":
  786. {
  787. "menu":"",
  788. "callback":"stateCallback",
  789. "parameters":
  790. {
  791. }
  792. },
  793. "rack":
  794. {
  795. "menu":"",
  796. "callback":"rackCallback",
  797. "parameters":
  798. {
  799. "position":
  800. {
  801. "type":"Boolean",
  802. "default":false,
  803. "useForMapping": true
  804. }
  805. }
  806. },
  807. "relai":
  808. {
  809. "menu":"",
  810. "callback":"rackCallback",
  811. "parameters":
  812. {
  813. "state":
  814. {
  815. "type":"Boolean",
  816. "default":false,
  817. "useForMapping": true
  818. }
  819. }
  820. },
  821. "Capping Shutter":
  822. {
  823. "menu":"",
  824. "callback":"shutterCallback",
  825. "parameters":
  826. {
  827. "position":
  828. {
  829. "type":"Boolean",
  830. "default":false,
  831. "useForMapping": true
  832. }
  833. }
  834. },
  835. "move":
  836. {
  837. "menu":"Motors",
  838. "callback":"moveCallback",
  839. "parameters":
  840. {
  841. "ID":
  842. {
  843. "type":"Enum",
  844. "options":
  845. {
  846. "X":"X",
  847. "Y":"Y",
  848. "Z":"Z",
  849. "W":"W",
  850. "T1": "T1",
  851. "T2": "T2",
  852. "T3": "T3",
  853. "T4": "T4",
  854. "Shutter":"Shutter",
  855. "Film":"Film"
  856. }
  857. },
  858. "steps":
  859. {
  860. "type":"Integer",
  861. "default":100,
  862. "useForMapping": true
  863. }
  864. }
  865. },
  866. "moveTo":
  867. {
  868. "menu":"Motors",
  869. "callback":"moveToCallback",
  870. "parameters":
  871. {
  872. "ID":
  873. {
  874. "type":"Enum",
  875. "options":
  876. {
  877. "X":"X",
  878. "Y":"Y",
  879. "Z":"Z",
  880. "W":"W",
  881. "T1": "T1",
  882. "T2": "T2",
  883. "T3": "T3",
  884. "T4": "T4",
  885. "Shutter":"Shutter",
  886. "Film":"Film"
  887. }
  888. },
  889. "position":
  890. {
  891. "type":"Integer",
  892. "default":100,
  893. "useForMapping": true
  894. }
  895. }
  896. },
  897. "move%":
  898. {
  899. "menu":"Motors",
  900. "callback":"move%Callback",
  901. "parameters":
  902. {
  903. "ID":
  904. {
  905. "type":"Enum",
  906. "options":
  907. {
  908. "X":"X",
  909. "Y":"Y",
  910. "Z":"Z",
  911. "W":"W",
  912. "T1": "T1",
  913. "T2": "T2",
  914. "T3": "T3",
  915. "T4": "T4",
  916. "Shutter":"Shutter",
  917. "Film":"Film"
  918. }
  919. },
  920. "Relative Move":
  921. {
  922. "type":"Float",
  923. "default":0.02,
  924. "useForMapping": true
  925. }
  926. }
  927. },
  928. "moveTo%":
  929. {
  930. "menu":"Motors",
  931. "callback":"moveTo%Callback",
  932. "parameters":
  933. {
  934. "ID":
  935. {
  936. "type":"Enum",
  937. "options":
  938. {
  939. "X":"X",
  940. "Y":"Y",
  941. "Z":"Z",
  942. "W":"W",
  943. "T1": "T1",
  944. "T2": "T2",
  945. "T3": "T3",
  946. "T4": "T4",
  947. "Shutter":"Shutter",
  948. "Film":"Film"
  949. }
  950. },
  951. "Absolute Position":
  952. {
  953. "type":"Float",
  954. "default":0.5,
  955. "min":0.,
  956. "max":1.,
  957. "useForMapping": true
  958. }
  959. }
  960. },
  961. "rotate":
  962. {
  963. "menu":"Motors",
  964. "callback":"rotateCallback",
  965. "parameters":
  966. {
  967. "ID":
  968. {
  969. "type":"Enum",
  970. "options":
  971. {
  972. "X":"X",
  973. "Y":"Y",
  974. "Z":"Z",
  975. "W":"W",
  976. "T1": "T1",
  977. "T2": "T2",
  978. "T3": "T3",
  979. "T4": "T4",
  980. "Shutter":"Shutter",
  981. "Film":"Film"
  982. }
  983. },
  984. "speed":
  985. {
  986. "type":"Integer",
  987. "default":0,
  988. "useForMapping": true
  989. }
  990. }
  991. },
  992. "stop":
  993. {
  994. "menu":"Motors",
  995. "callback":"stopCallback",
  996. "parameters":
  997. {
  998. "ID":
  999. {
  1000. "type":"Enum",
  1001. "options":
  1002. {
  1003. "X":"X",
  1004. "Y":"Y",
  1005. "Z":"Z",
  1006. "W":"W",
  1007. "T1": "T1",
  1008. "T2": "T2",
  1009. "T3": "T3",
  1010. "T4": "T4",
  1011. "Shutter":"Shutter",
  1012. "Film":"Film"
  1013. }
  1014. }
  1015. }
  1016. },
  1017. "Emergency Stop":
  1018. {
  1019. "menu":"Motors",
  1020. "callback":"emergencyStopCallback",
  1021. "parameters":
  1022. {
  1023. "ID":
  1024. {
  1025. "type":"Enum",
  1026. "options":
  1027. {
  1028. "X":"X",
  1029. "Y":"Y",
  1030. "Z":"Z",
  1031. "W":"W",
  1032. "T1": "T1",
  1033. "T2": "T2",
  1034. "T3": "T3",
  1035. "T4": "T4",
  1036. "Shutter":"Shutter",
  1037. "Film":"Film"
  1038. }
  1039. }
  1040. }
  1041. },
  1042. "Homing":
  1043. {
  1044. "menu":"Motors",
  1045. "callback":"homingCallback",
  1046. "parameters":
  1047. {
  1048. "ID":
  1049. {
  1050. "type":"Enum",
  1051. "options":
  1052. {
  1053. "X":"X",
  1054. "Y":"Y",
  1055. "Z":"Z",
  1056. "W":"W",
  1057. "T1": "T1",
  1058. "T2": "T2",
  1059. "T3": "T3",
  1060. "T4": "T4",
  1061. "Shutter":"Shutter",
  1062. "Film":"Film"
  1063. }
  1064. },
  1065. "Direction":
  1066. {
  1067. "type":"Boolean",
  1068. "default":false,
  1069. "useForMapping": true
  1070. }
  1071. }
  1072. },
  1073. "maxSpeed":
  1074. {
  1075. "menu":"Motors",
  1076. "callback":"maxSpeedCallback",
  1077. "parameters":
  1078. {
  1079. "ID":
  1080. {
  1081. "type":"Enum",
  1082. "options":
  1083. {
  1084. "X":"X",
  1085. "Y":"Y",
  1086. "Z":"Z",
  1087. "W":"W",
  1088. "T1": "T1",
  1089. "T2": "T2",
  1090. "T3": "T3",
  1091. "T4": "T4",
  1092. "Shutter":"Shutter",
  1093. "Film":"Film"
  1094. }
  1095. },
  1096. "maxSpeed":
  1097. {
  1098. "type":"Integer",
  1099. "default":0,
  1100. "useForMapping": true
  1101. }
  1102. }
  1103. },
  1104. "homingSpeed":
  1105. {
  1106. "menu":"Motors",
  1107. "callback":"homingSpeedCallback",
  1108. "parameters":
  1109. {
  1110. "ID":
  1111. {
  1112. "type":"Enum",
  1113. "options":
  1114. {
  1115. "X":"X",
  1116. "Y":"Y",
  1117. "Z":"Z",
  1118. "W":"W",
  1119. "T1": "T1",
  1120. "T2": "T2",
  1121. "T3": "T3",
  1122. "T4": "T4",
  1123. "Shutter":"Shutter",
  1124. "Film":"Film"
  1125. }
  1126. },
  1127. "homingSpeed":
  1128. {
  1129. "type":"Integer",
  1130. "default":0,
  1131. "useForMapping": true
  1132. }
  1133. }
  1134. },
  1135. "Acceleration":
  1136. {
  1137. "menu":"Motors",
  1138. "callback":"accelerationCallback",
  1139. "parameters":
  1140. {
  1141. "ID":
  1142. {
  1143. "type":"Enum",
  1144. "options":
  1145. {
  1146. "X":"X",
  1147. "Y":"Y",
  1148. "Z":"Z",
  1149. "W":"W",
  1150. "T1": "T1",
  1151. "T2": "T2",
  1152. "T3": "T3",
  1153. "T4": "T4",
  1154. "Shutter":"Shutter",
  1155. "Film":"Film"
  1156. }
  1157. },
  1158. "acceleration":
  1159. {
  1160. "type":"Integer",
  1161. "default":0,
  1162. "useForMapping": true
  1163. }
  1164. }
  1165. }
  1166. }
  1167. }