HTEQUI.noisette 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366
  1. {
  2. "metaData": {
  3. "version": "1.6.3",
  4. "versionNumber": 67075
  5. },
  6. "dashboardManager": {
  7. "items": [
  8. {
  9. "niceName": "Feeder 1",
  10. "type": "BaseItem",
  11. "itemManager": {
  12. "items": [
  13. {
  14. "parameters": [
  15. {
  16. "value": [
  17. -409.0,
  18. -143.0
  19. ],
  20. "controlAddress": "/viewUIPosition"
  21. },
  22. {
  23. "value": [
  24. 200.0,
  25. 60.0
  26. ],
  27. "controlAddress": "/viewUISize"
  28. },
  29. {
  30. "value": "/customVariables/feeder1_nourriture_/variables/pillCounter/pillCounter",
  31. "controlAddress": "/target"
  32. }
  33. ],
  34. "niceName": "pillCounter : pillCounter",
  35. "type": "DashboardControllable"
  36. },
  37. {
  38. "parameters": [
  39. {
  40. "value": [
  41. -408.0,
  42. -45.0
  43. ],
  44. "controlAddress": "/viewUIPosition"
  45. },
  46. {
  47. "value": [
  48. 200.0,
  49. 60.0
  50. ],
  51. "controlAddress": "/viewUISize"
  52. },
  53. {
  54. "value": "/customVariables/feeder1_nourriture_/variables/tubeCounter/tubeCounter",
  55. "controlAddress": "/target"
  56. }
  57. ],
  58. "niceName": "tubeCounter : tubeCounter ",
  59. "type": "DashboardControllable"
  60. },
  61. {
  62. "parameters": [
  63. {
  64. "value": [
  65. -407.0,
  66. -199.0
  67. ],
  68. "controlAddress": "/viewUIPosition"
  69. },
  70. {
  71. "value": [
  72. 30.0,
  73. 60.0
  74. ],
  75. "controlAddress": "/viewUISize"
  76. },
  77. {
  78. "value": "/customVariables/feeder1_nourriture_/variables/isActive/isActive",
  79. "controlAddress": "/target"
  80. }
  81. ],
  82. "niceName": "isActive : isActive",
  83. "type": "DashboardControllable"
  84. },
  85. {
  86. "parameters": [
  87. {
  88. "value": [
  89. -99.0,
  90. -190.0
  91. ],
  92. "controlAddress": "/viewUIPosition"
  93. },
  94. {
  95. "value": [
  96. 30.0,
  97. 60.0
  98. ],
  99. "controlAddress": "/viewUISize"
  100. },
  101. {
  102. "value": "/states/feeder1_StartPill/active",
  103. "controlAddress": "/target"
  104. }
  105. ],
  106. "niceName": "feeder1_StartPill : Active",
  107. "type": "DashboardControllable"
  108. }
  109. ]
  110. }
  111. },
  112. {
  113. "niceName": "feeder 2",
  114. "type": "BaseItem",
  115. "itemManager": {
  116. "items": [
  117. {
  118. "parameters": [
  119. {
  120. "value": [
  121. -120.0,
  122. -202.0
  123. ],
  124. "controlAddress": "/viewUIPosition"
  125. },
  126. {
  127. "value": [
  128. 162.0,
  129. 62.0
  130. ],
  131. "controlAddress": "/viewUISize"
  132. },
  133. {
  134. "value": "/customVariables/feeder2_inhibiteurs_/variables/tubeCounter/tubeCounter",
  135. "controlAddress": "/target"
  136. }
  137. ],
  138. "niceName": "tubeCounter : tubeCounter",
  139. "type": "DashboardControllable"
  140. },
  141. {
  142. "parameters": [
  143. {
  144. "value": [
  145. -411.0,
  146. -193.0
  147. ],
  148. "controlAddress": "/viewUIPosition"
  149. },
  150. {
  151. "value": [
  152. 199.0,
  153. 60.0
  154. ],
  155. "controlAddress": "/viewUISize"
  156. },
  157. {
  158. "value": "/customVariables/feeder2_inhibiteurs_/variables/pillCounter/pillCounter",
  159. "controlAddress": "/target"
  160. }
  161. ],
  162. "niceName": "pillCounter : pillCounter",
  163. "type": "DashboardControllable"
  164. },
  165. {
  166. "parameters": [
  167. {
  168. "value": [
  169. -409.0,
  170. -85.0
  171. ],
  172. "controlAddress": "/viewUIPosition"
  173. },
  174. {
  175. "value": [
  176. 126.0,
  177. 60.0
  178. ],
  179. "controlAddress": "/viewUISize"
  180. },
  181. {
  182. "value": "/customVariables/feeder2_inhibiteurs_/variables/isActive/isActive",
  183. "controlAddress": "/target"
  184. }
  185. ],
  186. "niceName": "isActive : isActive",
  187. "type": "DashboardControllable"
  188. }
  189. ]
  190. }
  191. }
  192. ]
  193. },
  194. "moduleManager": {
  195. "items": [
  196. {
  197. "parameters": [
  198. {
  199. "value": true,
  200. "controlAddress": "/enabled"
  201. },
  202. {
  203. "value": true,
  204. "controlAddress": "/logIncoming"
  205. },
  206. {
  207. "value": true,
  208. "controlAddress": "/logOutgoing"
  209. }
  210. ],
  211. "niceName": "OSC",
  212. "type": "OSC",
  213. "scripts": {
  214. },
  215. "params": {
  216. "containers": {
  217. "oscInput": {
  218. "parameters": [
  219. {
  220. "value": 9977,
  221. "hexMode": false,
  222. "controlAddress": "/localPort"
  223. }
  224. ]
  225. },
  226. "oscOutputs": {
  227. "items": [
  228. {
  229. "parameters": [
  230. {
  231. "value": false,
  232. "controlAddress": "/local"
  233. },
  234. {
  235. "value": "239.200.200.200",
  236. "controlAddress": "/remoteHost"
  237. },
  238. {
  239. "value": 9977,
  240. "hexMode": false,
  241. "controlAddress": "/remotePort"
  242. }
  243. ],
  244. "niceName": "OSC Output",
  245. "type": "BaseItem"
  246. }
  247. ]
  248. }
  249. }
  250. },
  251. "values": {
  252. "parameters": [
  253. {
  254. "value": 1,
  255. "hexMode": false,
  256. "controlAddress": "/_A_low_limitLow",
  257. "type": "Integer",
  258. "niceName": "/A_low/limitLow",
  259. "customizable": true,
  260. "removable": true,
  261. "description": "",
  262. "hideInEditor": false,
  263. "feedbackOnly": false,
  264. "shortName": "_A_low_limitLow"
  265. },
  266. {
  267. "value": 149,
  268. "hexMode": false,
  269. "controlAddress": "/_A_low_onTarget",
  270. "type": "Integer",
  271. "niceName": "/A_low/onTarget",
  272. "customizable": true,
  273. "removable": true,
  274. "description": "",
  275. "hideInEditor": false,
  276. "feedbackOnly": false,
  277. "shortName": "_A_low_onTarget"
  278. },
  279. {
  280. "value": 1,
  281. "hexMode": false,
  282. "controlAddress": "/_A_low_state",
  283. "type": "Integer",
  284. "niceName": "/A_low/state",
  285. "customizable": true,
  286. "removable": true,
  287. "description": "",
  288. "hideInEditor": false,
  289. "feedbackOnly": false,
  290. "shortName": "_A_low_state"
  291. },
  292. {
  293. "value": 149,
  294. "hexMode": false,
  295. "controlAddress": "/_A_low_step",
  296. "type": "Integer",
  297. "niceName": "/A_low/step",
  298. "customizable": true,
  299. "removable": true,
  300. "description": "",
  301. "hideInEditor": false,
  302. "feedbackOnly": false,
  303. "shortName": "_A_low_step"
  304. },
  305. {
  306. "value": 0,
  307. "hexMode": false,
  308. "controlAddress": "/_B_low_limitLow",
  309. "type": "Integer",
  310. "niceName": "/B_low/limitLow",
  311. "customizable": true,
  312. "removable": true,
  313. "description": "",
  314. "hideInEditor": false,
  315. "feedbackOnly": false,
  316. "shortName": "_B_low_limitLow"
  317. },
  318. {
  319. "value": 0,
  320. "hexMode": false,
  321. "controlAddress": "/_B_low_onTarget",
  322. "type": "Integer",
  323. "niceName": "/B_low/onTarget",
  324. "customizable": true,
  325. "removable": true,
  326. "description": "",
  327. "hideInEditor": false,
  328. "feedbackOnly": false,
  329. "shortName": "_B_low_onTarget"
  330. },
  331. {
  332. "value": 2,
  333. "hexMode": false,
  334. "controlAddress": "/_B_low_state",
  335. "type": "Integer",
  336. "niceName": "/B_low/state",
  337. "customizable": true,
  338. "removable": true,
  339. "description": "",
  340. "hideInEditor": false,
  341. "feedbackOnly": false,
  342. "shortName": "_B_low_state"
  343. },
  344. {
  345. "value": 0,
  346. "hexMode": false,
  347. "controlAddress": "/_B_low_step",
  348. "type": "Integer",
  349. "niceName": "/B_low/step",
  350. "customizable": true,
  351. "removable": true,
  352. "description": "",
  353. "hideInEditor": false,
  354. "feedbackOnly": false,
  355. "shortName": "_B_low_step"
  356. },
  357. {
  358. "value": "1",
  359. "controlAddress": "/_feeder1_barrel_done",
  360. "type": "String",
  361. "niceName": "/feeder1/barrel/done",
  362. "customizable": true,
  363. "removable": true,
  364. "description": "",
  365. "hideInEditor": false,
  366. "feedbackOnly": false,
  367. "shortName": "_feeder1_barrel_done"
  368. },
  369. {
  370. "controlAddress": "/_feeder1_barrel_home",
  371. "type": "Trigger",
  372. "niceName": "/feeder1/barrel_home",
  373. "customizable": true,
  374. "removable": true,
  375. "description": "",
  376. "hideInEditor": false,
  377. "feedbackOnly": false,
  378. "shortName": "_feeder1_barrel_home"
  379. },
  380. {
  381. "value": 0,
  382. "hexMode": false,
  383. "controlAddress": "/_feeder1_pill",
  384. "type": "Integer",
  385. "niceName": "/feeder1/pill",
  386. "customizable": true,
  387. "removable": true,
  388. "description": "",
  389. "hideInEditor": false,
  390. "feedbackOnly": false,
  391. "shortName": "_feeder1_pill"
  392. },
  393. {
  394. "value": "0",
  395. "controlAddress": "/_feeder1_pill_done",
  396. "type": "String",
  397. "niceName": "/feeder1/pill/done",
  398. "customizable": true,
  399. "removable": true,
  400. "description": "",
  401. "hideInEditor": false,
  402. "feedbackOnly": false,
  403. "shortName": "_feeder1_pill_done"
  404. },
  405. {
  406. "value": "1",
  407. "controlAddress": "/_feeder2_barrel_done",
  408. "type": "String",
  409. "niceName": "/feeder2/barrel/done",
  410. "customizable": true,
  411. "removable": true,
  412. "description": "",
  413. "hideInEditor": false,
  414. "feedbackOnly": false,
  415. "shortName": "_feeder2_barrel_done"
  416. },
  417. {
  418. "controlAddress": "/_feeder2_barrel_home",
  419. "type": "Trigger",
  420. "niceName": "/feeder2/barrel_home",
  421. "customizable": true,
  422. "removable": true,
  423. "description": "",
  424. "hideInEditor": false,
  425. "feedbackOnly": false,
  426. "shortName": "_feeder2_barrel_home"
  427. },
  428. {
  429. "controlAddress": "/_feeder2_pill",
  430. "type": "Trigger",
  431. "niceName": "/feeder2/pill",
  432. "customizable": true,
  433. "removable": true,
  434. "description": "",
  435. "hideInEditor": false,
  436. "feedbackOnly": false,
  437. "shortName": "_feeder2_pill"
  438. },
  439. {
  440. "value": "",
  441. "controlAddress": "/_feeder2_pill_done",
  442. "type": "String",
  443. "niceName": "/feeder2/pill/done",
  444. "customizable": true,
  445. "removable": true,
  446. "description": "",
  447. "hideInEditor": false,
  448. "feedbackOnly": false,
  449. "shortName": "_feeder2_pill_done"
  450. },
  451. {
  452. "value": 1,
  453. "hexMode": false,
  454. "controlAddress": "/_LevBr_low_limitHigh",
  455. "type": "Integer",
  456. "niceName": "/LevBr_low/limitHigh",
  457. "customizable": true,
  458. "removable": true,
  459. "description": "",
  460. "hideInEditor": false,
  461. "feedbackOnly": false,
  462. "shortName": "_LevBr_low_limitHigh"
  463. },
  464. {
  465. "value": 0,
  466. "hexMode": false,
  467. "controlAddress": "/_LevBr_low_step",
  468. "type": "Integer",
  469. "niceName": "/LevBr_low/step",
  470. "customizable": true,
  471. "removable": true,
  472. "description": "",
  473. "hideInEditor": false,
  474. "feedbackOnly": false,
  475. "shortName": "_LevBr_low_step"
  476. },
  477. {
  478. "value": "youpi",
  479. "controlAddress": "/_test",
  480. "type": "String",
  481. "niceName": "/test",
  482. "customizable": true,
  483. "removable": true,
  484. "description": "",
  485. "hideInEditor": false,
  486. "feedbackOnly": false,
  487. "shortName": "_test"
  488. },
  489. {
  490. "value": -73706,
  491. "hexMode": false,
  492. "controlAddress": "/_X_top_onTarget",
  493. "type": "Integer",
  494. "niceName": "/X_top/onTarget",
  495. "customizable": true,
  496. "removable": true,
  497. "description": "",
  498. "hideInEditor": false,
  499. "feedbackOnly": false,
  500. "shortName": "_X_top_onTarget"
  501. },
  502. {
  503. "value": 1,
  504. "hexMode": false,
  505. "controlAddress": "/_X_top_state",
  506. "type": "Integer",
  507. "niceName": "/X_top/state",
  508. "customizable": true,
  509. "removable": true,
  510. "description": "",
  511. "hideInEditor": false,
  512. "feedbackOnly": false,
  513. "shortName": "_X_top_state"
  514. },
  515. {
  516. "value": -73706,
  517. "hexMode": false,
  518. "controlAddress": "/_X_top_step",
  519. "type": "Integer",
  520. "niceName": "/X_top/step",
  521. "customizable": true,
  522. "removable": true,
  523. "description": "",
  524. "hideInEditor": false,
  525. "feedbackOnly": false,
  526. "shortName": "_X_top_step"
  527. },
  528. {
  529. "value": 10,
  530. "hexMode": false,
  531. "controlAddress": "/_Y_top_onTarget",
  532. "type": "Integer",
  533. "niceName": "/Y_top/onTarget",
  534. "customizable": true,
  535. "removable": true,
  536. "description": "",
  537. "hideInEditor": false,
  538. "feedbackOnly": false,
  539. "shortName": "_Y_top_onTarget"
  540. },
  541. {
  542. "value": 1,
  543. "hexMode": false,
  544. "controlAddress": "/_Y_top_state",
  545. "type": "Integer",
  546. "niceName": "/Y_top/state",
  547. "customizable": true,
  548. "removable": true,
  549. "description": "",
  550. "hideInEditor": false,
  551. "feedbackOnly": false,
  552. "shortName": "_Y_top_state"
  553. },
  554. {
  555. "value": 10,
  556. "hexMode": false,
  557. "controlAddress": "/_Y_top_step",
  558. "type": "Integer",
  559. "niceName": "/Y_top/step",
  560. "customizable": true,
  561. "removable": true,
  562. "description": "",
  563. "hideInEditor": false,
  564. "feedbackOnly": false,
  565. "shortName": "_Y_top_step"
  566. }
  567. ]
  568. },
  569. "input": {
  570. "parameters": [
  571. {
  572. "value": 9977,
  573. "hexMode": false,
  574. "controlAddress": "/localPort"
  575. }
  576. ]
  577. },
  578. "outputs": {
  579. "items": [
  580. {
  581. "parameters": [
  582. {
  583. "value": false,
  584. "controlAddress": "/local"
  585. },
  586. {
  587. "value": "239.200.200.200",
  588. "controlAddress": "/remoteHost"
  589. },
  590. {
  591. "value": 9977,
  592. "hexMode": false,
  593. "controlAddress": "/remotePort"
  594. }
  595. ],
  596. "niceName": "OSC Output",
  597. "type": "BaseItem"
  598. }
  599. ]
  600. }
  601. },
  602. {
  603. "parameters": [
  604. {
  605. "value": true,
  606. "controlAddress": "/logOutgoing"
  607. }
  608. ],
  609. "niceName": "OS",
  610. "type": "OS",
  611. "scripts": {
  612. "items": [
  613. {
  614. "niceName": "Script",
  615. "type": "BaseItem",
  616. "scriptParams": {
  617. }
  618. }
  619. ]
  620. },
  621. "params": {
  622. },
  623. "templates": {
  624. "items": [
  625. {
  626. "niceName": "CameraSnapshot",
  627. "type": "BaseItem",
  628. "menuPath": "Process",
  629. "commandType": "Launch App",
  630. "params": [
  631. {
  632. "parameters": [
  633. {
  634. "value": "rstpSnapshot.sh",
  635. "controlAddress": "/target"
  636. },
  637. {
  638. "value": true,
  639. "minValue": 0,
  640. "maxValue": 1,
  641. "controlAddress": "/editable",
  642. "type": "Boolean",
  643. "niceName": "Editable",
  644. "customizable": false,
  645. "removable": false,
  646. "description": "If enabled, the parameter will be editable when instantiating this template",
  647. "hideInEditor": false,
  648. "feedbackOnly": false
  649. }
  650. ],
  651. "niceName": "Target"
  652. },
  653. {
  654. "parameters": [
  655. {
  656. "value": "",
  657. "controlAddress": "/launchOptions"
  658. },
  659. {
  660. "value": true,
  661. "minValue": 0,
  662. "maxValue": 1,
  663. "controlAddress": "/editable",
  664. "type": "Boolean",
  665. "niceName": "Editable",
  666. "customizable": false,
  667. "removable": false,
  668. "description": "If enabled, the parameter will be editable when instantiating this template",
  669. "hideInEditor": false,
  670. "feedbackOnly": false
  671. }
  672. ],
  673. "niceName": "Launch Options"
  674. }
  675. ]
  676. }
  677. ]
  678. }
  679. }
  680. ]
  681. },
  682. "customVariables": {
  683. "items": [
  684. {
  685. "niceName": "Feeder1 (nourriture)",
  686. "type": "BaseItem",
  687. "params": {
  688. },
  689. "variables": {
  690. "items": [
  691. {
  692. "parameters": [
  693. {
  694. "value": 5,
  695. "hexMode": false,
  696. "controlAddress": "/pillCounter",
  697. "type": "Integer",
  698. "niceName": "pillCounter",
  699. "customizable": true,
  700. "removable": false,
  701. "description": "Custom control of type Integer",
  702. "hideInEditor": false,
  703. "feedbackOnly": false
  704. }
  705. ],
  706. "niceName": "pillCounter",
  707. "type": "Int Parameter"
  708. },
  709. {
  710. "parameters": [
  711. {
  712. "value": [
  713. 20.0,
  714. 20.0
  715. ],
  716. "controlAddress": "/viewUIPosition"
  717. },
  718. {
  719. "value": 0,
  720. "hexMode": false,
  721. "controlAddress": "/tubeCounter",
  722. "type": "Integer",
  723. "niceName": "tubeCounter ",
  724. "customizable": true,
  725. "removable": false,
  726. "description": "Custom control of type Integer",
  727. "hideInEditor": false,
  728. "feedbackOnly": false
  729. }
  730. ],
  731. "niceName": "tubeCounter ",
  732. "type": "Int Parameter"
  733. },
  734. {
  735. "parameters": [
  736. {
  737. "value": true,
  738. "minValue": 0,
  739. "maxValue": 1,
  740. "controlAddress": "/isActive",
  741. "type": "Boolean",
  742. "niceName": "isActive",
  743. "customizable": true,
  744. "removable": false,
  745. "description": "Custom control of type Boolean",
  746. "hideInEditor": false,
  747. "feedbackOnly": false
  748. }
  749. ],
  750. "niceName": "isActive",
  751. "type": "Bool Parameter"
  752. }
  753. ]
  754. },
  755. "presets": {
  756. },
  757. "morpher": {
  758. }
  759. },
  760. {
  761. "niceName": "Feeder2 (inhibiteurs)",
  762. "type": "BaseItem",
  763. "params": {
  764. },
  765. "variables": {
  766. "items": [
  767. {
  768. "parameters": [
  769. {
  770. "value": 0,
  771. "hexMode": false,
  772. "controlAddress": "/tubeCounter",
  773. "type": "Integer",
  774. "niceName": "tubeCounter",
  775. "customizable": true,
  776. "removable": false,
  777. "description": "Custom control of type Integer",
  778. "hideInEditor": false,
  779. "feedbackOnly": false
  780. }
  781. ],
  782. "niceName": "tubeCounter",
  783. "type": "Int Parameter"
  784. },
  785. {
  786. "parameters": [
  787. {
  788. "value": 5,
  789. "hexMode": false,
  790. "controlAddress": "/pillCounter",
  791. "type": "Integer",
  792. "niceName": "pillCounter",
  793. "customizable": true,
  794. "removable": false,
  795. "description": "Custom control of type Integer",
  796. "hideInEditor": false,
  797. "feedbackOnly": false
  798. }
  799. ],
  800. "niceName": "pillCounter",
  801. "type": "Int Parameter"
  802. },
  803. {
  804. "parameters": [
  805. {
  806. "value": false,
  807. "minValue": 0,
  808. "maxValue": 1,
  809. "controlAddress": "/isActive",
  810. "type": "Boolean",
  811. "niceName": "isActive",
  812. "customizable": true,
  813. "removable": false,
  814. "description": "Custom control of type Boolean",
  815. "hideInEditor": false,
  816. "feedbackOnly": false
  817. }
  818. ],
  819. "niceName": "isActive",
  820. "type": "Bool Parameter"
  821. }
  822. ]
  823. },
  824. "presets": {
  825. },
  826. "morpher": {
  827. }
  828. }
  829. ]
  830. },
  831. "stateManager": {
  832. "items": [
  833. {
  834. "parameters": [
  835. {
  836. "value": [
  837. -561.0,
  838. -303.0
  839. ],
  840. "controlAddress": "/viewUIPosition"
  841. },
  842. {
  843. "value": [
  844. 305.0,
  845. 118.0
  846. ],
  847. "controlAddress": "/viewUISize"
  848. },
  849. {
  850. "value": false,
  851. "controlAddress": "/active"
  852. }
  853. ],
  854. "niceName": "Feeder1_waitPill",
  855. "type": "State",
  856. "processors": {
  857. "items": [
  858. {
  859. "parameters": [
  860. {
  861. "value": true,
  862. "controlAddress": "/enabled"
  863. }
  864. ],
  865. "niceName": "Action",
  866. "editorIsCollapsed": true,
  867. "type": "Action",
  868. "conditions": {
  869. "items": [
  870. {
  871. "niceName": "On Activate",
  872. "type": "On Activate",
  873. "activationType": 0
  874. }
  875. ]
  876. },
  877. "consequences": {
  878. "items": [
  879. {
  880. "niceName": "Consequence",
  881. "type": "BaseItem",
  882. "commandModule": "osc",
  883. "commandPath": "",
  884. "commandType": "Custom Message",
  885. "command": {
  886. "parameters": [
  887. {
  888. "value": "/feeder1/pill",
  889. "controlAddress": "/address"
  890. }
  891. ],
  892. "arguments": {
  893. },
  894. "argManager": {
  895. }
  896. }
  897. },
  898. {
  899. "niceName": "Consequence 1",
  900. "type": "BaseItem",
  901. "commandModule": "generic",
  902. "commandPath": "",
  903. "commandType": "Set Parameter Value",
  904. "command": {
  905. "parameters": [
  906. {
  907. "value": "/modules/osc/values/_feeder1_pill_done",
  908. "controlAddress": "/target"
  909. },
  910. {
  911. "value": "-1",
  912. "controlAddress": "/value"
  913. }
  914. ]
  915. }
  916. }
  917. ]
  918. },
  919. "consequencesOff": {
  920. }
  921. }
  922. ]
  923. }
  924. },
  925. {
  926. "parameters": [
  927. {
  928. "value": [
  929. -183.0,
  930. -303.0
  931. ],
  932. "controlAddress": "/viewUIPosition"
  933. },
  934. {
  935. "value": [
  936. 255.0,
  937. 142.0
  938. ],
  939. "controlAddress": "/viewUISize"
  940. },
  941. {
  942. "value": false,
  943. "controlAddress": "/active"
  944. }
  945. ],
  946. "niceName": "feeder1_PillDelivered",
  947. "editorIsCollapsed": true,
  948. "type": "State",
  949. "processors": {
  950. "items": [
  951. {
  952. "niceName": "Action",
  953. "editorIsCollapsed": true,
  954. "type": "Action",
  955. "conditions": {
  956. "items": [
  957. {
  958. "niceName": "On Activate",
  959. "type": "On Activate",
  960. "activationType": 0
  961. }
  962. ]
  963. },
  964. "consequences": {
  965. "items": [
  966. {
  967. "niceName": "Consequence",
  968. "type": "BaseItem",
  969. "commandModule": "customVariables",
  970. "commandPath": "",
  971. "commandType": "Set Value",
  972. "command": {
  973. "parameters": [
  974. {
  975. "value": "/feeder1_nourriture_/variables/pillCounter/pillCounter",
  976. "controlAddress": "/targetValue"
  977. }
  978. ]
  979. }
  980. },
  981. {
  982. "niceName": "Consequence 1",
  983. "type": "BaseItem",
  984. "commandModule": "customVariables",
  985. "commandPath": "",
  986. "commandType": "Set Value",
  987. "command": {
  988. "parameters": [
  989. {
  990. "value": "/feeder1_nourriture_/variables/tubeCounter/tubeCounter",
  991. "controlAddress": "/targetValue"
  992. }
  993. ]
  994. }
  995. }
  996. ]
  997. },
  998. "consequencesOff": {
  999. }
  1000. }
  1001. ]
  1002. }
  1003. },
  1004. {
  1005. "parameters": [
  1006. {
  1007. "value": [
  1008. -385.0,
  1009. -74.0
  1010. ],
  1011. "controlAddress": "/viewUIPosition"
  1012. },
  1013. {
  1014. "value": [
  1015. 260.0,
  1016. 80.0
  1017. ],
  1018. "controlAddress": "/viewUISize"
  1019. },
  1020. {
  1021. "value": false,
  1022. "controlAddress": "/active"
  1023. }
  1024. ],
  1025. "niceName": "feeder1_PillNotDelivered",
  1026. "type": "State",
  1027. "processors": {
  1028. "items": [
  1029. {
  1030. "niceName": "Action",
  1031. "editorIsCollapsed": true,
  1032. "type": "Action",
  1033. "conditions": {
  1034. "parameters": [
  1035. {
  1036. "value": 0.0,
  1037. "controlAddress": "/validationTime"
  1038. }
  1039. ],
  1040. "items": [
  1041. {
  1042. "parameters": [
  1043. {
  1044. "value": false,
  1045. "controlAddress": "/enabled"
  1046. }
  1047. ],
  1048. "niceName": "On Activate",
  1049. "editorIsCollapsed": true,
  1050. "type": "On Activate",
  1051. "activationType": 0
  1052. },
  1053. {
  1054. "parameters": [
  1055. {
  1056. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/pillCounter",
  1057. "controlAddress": "/inputValue"
  1058. }
  1059. ],
  1060. "niceName": "From Input Value",
  1061. "type": "From Input Value",
  1062. "comparator": {
  1063. "parameters": [
  1064. {
  1065. "value": "<",
  1066. "controlAddress": "/comparisonFunction"
  1067. },
  1068. {
  1069. "value": 5,
  1070. "hexMode": false,
  1071. "controlAddress": "/reference"
  1072. }
  1073. ]
  1074. }
  1075. }
  1076. ]
  1077. },
  1078. "consequences": {
  1079. "parameters": [
  1080. {
  1081. "value": 2.099999904632568,
  1082. "controlAddress": "/delay"
  1083. }
  1084. ],
  1085. "items": [
  1086. {
  1087. "niceName": "Consequence",
  1088. "type": "BaseItem",
  1089. "commandModule": "customVariables",
  1090. "commandPath": "",
  1091. "commandType": "Set Value",
  1092. "command": {
  1093. "parameters": [
  1094. {
  1095. "value": "/feeder2_inhibiteurs_/variables/pillCounter/pillCounter",
  1096. "controlAddress": "/targetValue"
  1097. }
  1098. ]
  1099. }
  1100. },
  1101. {
  1102. "niceName": "Consequence 1",
  1103. "type": "BaseItem",
  1104. "commandModule": "generic",
  1105. "commandPath": "",
  1106. "commandType": "Trigger a Control",
  1107. "command": {
  1108. "parameters": [
  1109. {
  1110. "value": "/states/transitions/feeder2_retryPill/triggerValidate",
  1111. "controlAddress": "/target"
  1112. }
  1113. ]
  1114. }
  1115. }
  1116. ]
  1117. },
  1118. "consequencesOff": {
  1119. "parameters": [
  1120. {
  1121. "value": 0.0,
  1122. "controlAddress": "/delay"
  1123. }
  1124. ],
  1125. "items": [
  1126. {
  1127. "niceName": "Consequence",
  1128. "type": "BaseItem",
  1129. "commandModule": "generic",
  1130. "commandPath": "",
  1131. "commandType": "Trigger a Control",
  1132. "command": {
  1133. "parameters": [
  1134. {
  1135. "value": "/states/transitions/feeder2_changeTube/triggerValidate",
  1136. "controlAddress": "/target"
  1137. }
  1138. ]
  1139. }
  1140. }
  1141. ]
  1142. }
  1143. }
  1144. ]
  1145. }
  1146. },
  1147. {
  1148. "parameters": [
  1149. {
  1150. "value": false,
  1151. "controlAddress": "/miniMode"
  1152. },
  1153. {
  1154. "value": [
  1155. -713.0,
  1156. 78.0
  1157. ],
  1158. "controlAddress": "/viewUIPosition"
  1159. },
  1160. {
  1161. "value": [
  1162. 292.0,
  1163. 65.0
  1164. ],
  1165. "controlAddress": "/viewUISize"
  1166. },
  1167. {
  1168. "value": false,
  1169. "controlAddress": "/active"
  1170. }
  1171. ],
  1172. "niceName": "feeder1_waitTube",
  1173. "type": "State",
  1174. "processors": {
  1175. "items": [
  1176. {
  1177. "niceName": "Action",
  1178. "editorIsCollapsed": true,
  1179. "type": "Action",
  1180. "conditions": {
  1181. "items": [
  1182. {
  1183. "niceName": "On Activate",
  1184. "type": "On Activate",
  1185. "activationType": 0
  1186. },
  1187. {
  1188. "parameters": [
  1189. {
  1190. "value": "/customVariables/customVariables/values/feeder1_nourriture_/tubeCounter",
  1191. "controlAddress": "/inputValue"
  1192. }
  1193. ],
  1194. "niceName": "From Input Value",
  1195. "type": "From Input Value",
  1196. "comparator": {
  1197. "parameters": [
  1198. {
  1199. "value": "<=",
  1200. "controlAddress": "/comparisonFunction"
  1201. },
  1202. {
  1203. "value": 20,
  1204. "hexMode": false,
  1205. "controlAddress": "/reference"
  1206. }
  1207. ]
  1208. }
  1209. }
  1210. ]
  1211. },
  1212. "consequences": {
  1213. "parameters": [
  1214. {
  1215. "value": 4.099998950958252,
  1216. "controlAddress": "/delay"
  1217. }
  1218. ],
  1219. "items": [
  1220. {
  1221. "niceName": "Consequence",
  1222. "type": "BaseItem",
  1223. "commandModule": "osc",
  1224. "commandPath": "",
  1225. "commandType": "Custom Message",
  1226. "command": {
  1227. "parameters": [
  1228. {
  1229. "value": "/feeder1/barrel_home",
  1230. "controlAddress": "/address"
  1231. }
  1232. ],
  1233. "arguments": {
  1234. },
  1235. "argManager": {
  1236. }
  1237. }
  1238. },
  1239. {
  1240. "parameters": [
  1241. {
  1242. "value": false,
  1243. "controlAddress": "/enabled"
  1244. }
  1245. ],
  1246. "niceName": "Consequence 1",
  1247. "editorIsCollapsed": true,
  1248. "type": "BaseItem",
  1249. "commandModule": "generic",
  1250. "commandPath": "",
  1251. "commandType": "Trigger a Control",
  1252. "command": {
  1253. "parameters": [
  1254. {
  1255. "value": "/states/transitions/feeder1_tubeOK/triggerValidate",
  1256. "controlAddress": "/target"
  1257. }
  1258. ]
  1259. }
  1260. },
  1261. {
  1262. "niceName": "Consequence 2",
  1263. "type": "BaseItem",
  1264. "commandModule": "generic",
  1265. "commandPath": "",
  1266. "commandType": "Set Parameter Value",
  1267. "command": {
  1268. "parameters": [
  1269. {
  1270. "value": "/modules/osc/values/_feeder1_barrel_done",
  1271. "controlAddress": "/target"
  1272. },
  1273. {
  1274. "value": "-1",
  1275. "controlAddress": "/value"
  1276. }
  1277. ]
  1278. }
  1279. },
  1280. {
  1281. "niceName": "Consequence 3",
  1282. "type": "BaseItem",
  1283. "commandModule": "customVariables",
  1284. "commandPath": "",
  1285. "commandType": "Set Value",
  1286. "command": {
  1287. "parameters": [
  1288. {
  1289. "value": "/feeder1_nourriture_/variables/tubeCounter/tubeCounter",
  1290. "controlAddress": "/targetValue"
  1291. },
  1292. {
  1293. "value": "Add",
  1294. "controlAddress": "/operator"
  1295. },
  1296. {
  1297. "value": 1,
  1298. "hexMode": false,
  1299. "controlAddress": "/value"
  1300. }
  1301. ]
  1302. }
  1303. }
  1304. ]
  1305. },
  1306. "consequencesOff": {
  1307. "items": [
  1308. {
  1309. "niceName": "Consequence",
  1310. "type": "BaseItem",
  1311. "commandModule": "generic",
  1312. "commandPath": "",
  1313. "commandType": "Trigger a Control",
  1314. "command": {
  1315. "parameters": [
  1316. {
  1317. "value": "/states/transitions/feeder1_tubeNO/triggerValidate",
  1318. "controlAddress": "/target"
  1319. }
  1320. ]
  1321. }
  1322. }
  1323. ]
  1324. }
  1325. }
  1326. ]
  1327. }
  1328. },
  1329. {
  1330. "parameters": [
  1331. {
  1332. "value": [
  1333. -278.0,
  1334. 73.0
  1335. ],
  1336. "controlAddress": "/viewUIPosition"
  1337. },
  1338. {
  1339. "value": [
  1340. 240.0,
  1341. 71.0
  1342. ],
  1343. "controlAddress": "/viewUISize"
  1344. },
  1345. {
  1346. "value": false,
  1347. "controlAddress": "/active"
  1348. }
  1349. ],
  1350. "niceName": "feeder1_tubeNotFound",
  1351. "type": "State",
  1352. "processors": {
  1353. "editorIsCollapsed": true,
  1354. "items": [
  1355. {
  1356. "niceName": "Action",
  1357. "editorIsCollapsed": true,
  1358. "type": "Action",
  1359. "conditions": {
  1360. "parameters": [
  1361. {
  1362. "value": 0.0,
  1363. "controlAddress": "/validationTime"
  1364. }
  1365. ],
  1366. "items": [
  1367. {
  1368. "niceName": "On Activate",
  1369. "type": "On Activate",
  1370. "activationType": 0
  1371. },
  1372. {
  1373. "parameters": [
  1374. {
  1375. "value": "/customVariables/customVariables/values/feeder1_nourriture_/tubeCounter",
  1376. "controlAddress": "/inputValue"
  1377. }
  1378. ],
  1379. "niceName": "From Input Value",
  1380. "type": "From Input Value",
  1381. "comparator": {
  1382. "parameters": [
  1383. {
  1384. "value": "<",
  1385. "controlAddress": "/comparisonFunction"
  1386. },
  1387. {
  1388. "value": 20,
  1389. "hexMode": false,
  1390. "controlAddress": "/reference"
  1391. }
  1392. ]
  1393. }
  1394. }
  1395. ]
  1396. },
  1397. "consequences": {
  1398. "parameters": [
  1399. {
  1400. "value": 2.999999523162842,
  1401. "controlAddress": "/stagger"
  1402. }
  1403. ],
  1404. "items": [
  1405. {
  1406. "niceName": "Consequence 1",
  1407. "type": "BaseItem",
  1408. "commandModule": "generic",
  1409. "commandPath": "",
  1410. "commandType": "Trigger a Control",
  1411. "command": {
  1412. "parameters": [
  1413. {
  1414. "value": "/states/transitions/feeder1_retryTube/triggerValidate",
  1415. "controlAddress": "/target"
  1416. }
  1417. ]
  1418. }
  1419. }
  1420. ]
  1421. },
  1422. "consequencesOff": {
  1423. "items": [
  1424. {
  1425. "niceName": "Consequence",
  1426. "type": "BaseItem",
  1427. "commandModule": "generic",
  1428. "commandPath": "",
  1429. "commandType": "Trigger a Control",
  1430. "command": {
  1431. "parameters": [
  1432. {
  1433. "value": "/states/transitions/feeder1_Desactivate/triggerValidate",
  1434. "controlAddress": "/target"
  1435. }
  1436. ]
  1437. }
  1438. }
  1439. ]
  1440. }
  1441. }
  1442. ]
  1443. }
  1444. },
  1445. {
  1446. "parameters": [
  1447. {
  1448. "value": [
  1449. 55.0,
  1450. 78.0
  1451. ],
  1452. "controlAddress": "/viewUIPosition"
  1453. },
  1454. {
  1455. "value": [
  1456. 219.0,
  1457. 73.0
  1458. ],
  1459. "controlAddress": "/viewUISize"
  1460. },
  1461. {
  1462. "value": false,
  1463. "controlAddress": "/active"
  1464. }
  1465. ],
  1466. "niceName": "feeder1_desactivated",
  1467. "type": "State",
  1468. "processors": {
  1469. "items": [
  1470. {
  1471. "niceName": "Action",
  1472. "editorIsCollapsed": true,
  1473. "type": "Action",
  1474. "conditions": {
  1475. "items": [
  1476. {
  1477. "niceName": "On Activate",
  1478. "type": "On Activate",
  1479. "activationType": 0
  1480. }
  1481. ]
  1482. },
  1483. "consequences": {
  1484. "items": [
  1485. {
  1486. "niceName": "Consequence",
  1487. "type": "BaseItem",
  1488. "commandModule": "customVariables",
  1489. "commandPath": "",
  1490. "commandType": "Set Value",
  1491. "command": {
  1492. "parameters": [
  1493. {
  1494. "value": "/feeder1_nourriture_/variables/isActive/isActive",
  1495. "controlAddress": "/targetValue"
  1496. }
  1497. ]
  1498. }
  1499. }
  1500. ]
  1501. },
  1502. "consequencesOff": {
  1503. }
  1504. }
  1505. ]
  1506. }
  1507. },
  1508. {
  1509. "parameters": [
  1510. {
  1511. "value": [
  1512. -935.0,
  1513. -309.0
  1514. ],
  1515. "controlAddress": "/viewUIPosition"
  1516. },
  1517. {
  1518. "value": [
  1519. 290.0,
  1520. 71.0
  1521. ],
  1522. "controlAddress": "/viewUISize"
  1523. },
  1524. {
  1525. "value": false,
  1526. "controlAddress": "/active"
  1527. }
  1528. ],
  1529. "niceName": "feeder1_StartPill",
  1530. "type": "State",
  1531. "processors": {
  1532. "items": [
  1533. {
  1534. "niceName": "Action",
  1535. "editorIsCollapsed": true,
  1536. "type": "Action",
  1537. "conditions": {
  1538. "items": [
  1539. {
  1540. "niceName": "On Activate",
  1541. "type": "On Activate",
  1542. "activationType": 0
  1543. }
  1544. ]
  1545. },
  1546. "consequences": {
  1547. "items": [
  1548. {
  1549. "niceName": "Consequence",
  1550. "type": "BaseItem",
  1551. "commandModule": "customVariables",
  1552. "commandPath": "",
  1553. "commandType": "Set Value",
  1554. "command": {
  1555. "parameters": [
  1556. {
  1557. "value": "/feeder1_nourriture_/variables/pillCounter/pillCounter",
  1558. "controlAddress": "/targetValue"
  1559. }
  1560. ]
  1561. }
  1562. },
  1563. {
  1564. "niceName": "Consequence 1",
  1565. "type": "BaseItem",
  1566. "commandModule": "customVariables",
  1567. "commandPath": "",
  1568. "commandType": "Set Value",
  1569. "command": {
  1570. "parameters": [
  1571. {
  1572. "value": "/feeder1_nourriture_/variables/tubeCounter/tubeCounter",
  1573. "controlAddress": "/targetValue"
  1574. }
  1575. ]
  1576. }
  1577. },
  1578. {
  1579. "niceName": "Consequence 2",
  1580. "type": "BaseItem",
  1581. "commandModule": "customVariables",
  1582. "commandPath": "",
  1583. "commandType": "Set Value",
  1584. "command": {
  1585. "parameters": [
  1586. {
  1587. "value": "/feeder1_nourriture_/variables/isActive/isActive",
  1588. "controlAddress": "/targetValue"
  1589. }
  1590. ]
  1591. }
  1592. },
  1593. {
  1594. "niceName": "Consequence 3",
  1595. "type": "BaseItem",
  1596. "commandModule": "generic",
  1597. "commandPath": "",
  1598. "commandType": "Trigger a Control",
  1599. "command": {
  1600. }
  1601. }
  1602. ]
  1603. },
  1604. "consequencesOff": {
  1605. }
  1606. }
  1607. ]
  1608. }
  1609. },
  1610. {
  1611. "parameters": [
  1612. {
  1613. "value": [
  1614. -525.0,
  1615. -1090.0
  1616. ],
  1617. "controlAddress": "/viewUIPosition"
  1618. },
  1619. {
  1620. "value": [
  1621. 305.0,
  1622. 118.0
  1623. ],
  1624. "controlAddress": "/viewUISize"
  1625. },
  1626. {
  1627. "value": true,
  1628. "controlAddress": "/active"
  1629. }
  1630. ],
  1631. "niceName": "Feeder2_waitPill",
  1632. "type": "State",
  1633. "processors": {
  1634. "items": [
  1635. {
  1636. "parameters": [
  1637. {
  1638. "value": true,
  1639. "controlAddress": "/enabled"
  1640. }
  1641. ],
  1642. "niceName": "Action",
  1643. "editorIsCollapsed": true,
  1644. "type": "Action",
  1645. "conditions": {
  1646. "items": [
  1647. {
  1648. "niceName": "On Activate",
  1649. "type": "On Activate",
  1650. "activationType": 0
  1651. }
  1652. ]
  1653. },
  1654. "consequences": {
  1655. "items": [
  1656. {
  1657. "niceName": "Consequence",
  1658. "type": "BaseItem",
  1659. "commandModule": "osc",
  1660. "commandPath": "",
  1661. "commandType": "Custom Message",
  1662. "command": {
  1663. "parameters": [
  1664. {
  1665. "value": "/feeder2/pill",
  1666. "controlAddress": "/address"
  1667. }
  1668. ],
  1669. "arguments": {
  1670. },
  1671. "argManager": {
  1672. }
  1673. }
  1674. },
  1675. {
  1676. "niceName": "Consequence 1",
  1677. "type": "BaseItem",
  1678. "commandModule": "generic",
  1679. "commandPath": "",
  1680. "commandType": "Set Parameter Value",
  1681. "command": {
  1682. "parameters": [
  1683. {
  1684. "value": "/modules/osc/values/_feeder2_pill_done",
  1685. "controlAddress": "/target"
  1686. }
  1687. ]
  1688. }
  1689. }
  1690. ]
  1691. },
  1692. "consequencesOff": {
  1693. }
  1694. }
  1695. ]
  1696. }
  1697. },
  1698. {
  1699. "parameters": [
  1700. {
  1701. "value": [
  1702. -90.0,
  1703. -1085.0
  1704. ],
  1705. "controlAddress": "/viewUIPosition"
  1706. },
  1707. {
  1708. "value": [
  1709. 255.0,
  1710. 142.0
  1711. ],
  1712. "controlAddress": "/viewUISize"
  1713. },
  1714. {
  1715. "value": false,
  1716. "controlAddress": "/active"
  1717. }
  1718. ],
  1719. "niceName": "feeder2_PillDelivered",
  1720. "editorIsCollapsed": true,
  1721. "type": "State",
  1722. "processors": {
  1723. "items": [
  1724. {
  1725. "niceName": "Action",
  1726. "editorIsCollapsed": true,
  1727. "type": "Action",
  1728. "conditions": {
  1729. "items": [
  1730. {
  1731. "niceName": "On Activate",
  1732. "type": "On Activate",
  1733. "activationType": 0
  1734. }
  1735. ]
  1736. },
  1737. "consequences": {
  1738. "items": [
  1739. {
  1740. "niceName": "Consequence",
  1741. "type": "BaseItem",
  1742. "commandModule": "customVariables",
  1743. "commandPath": "",
  1744. "commandType": "Set Value",
  1745. "command": {
  1746. "parameters": [
  1747. {
  1748. "value": "/feeder2_inhibiteurs_/variables/pillCounter/pillCounter",
  1749. "controlAddress": "/targetValue"
  1750. }
  1751. ]
  1752. }
  1753. },
  1754. {
  1755. "niceName": "Consequence 1",
  1756. "type": "BaseItem",
  1757. "commandModule": "customVariables",
  1758. "commandPath": "",
  1759. "commandType": "Set Value",
  1760. "command": {
  1761. "parameters": [
  1762. {
  1763. "value": "/feeder2_inhibiteurs_/variables/tubeCounter/tubeCounter",
  1764. "controlAddress": "/targetValue"
  1765. }
  1766. ]
  1767. }
  1768. }
  1769. ]
  1770. },
  1771. "consequencesOff": {
  1772. }
  1773. }
  1774. ]
  1775. }
  1776. },
  1777. {
  1778. "parameters": [
  1779. {
  1780. "value": [
  1781. -487.0,
  1782. -832.0
  1783. ],
  1784. "controlAddress": "/viewUIPosition"
  1785. },
  1786. {
  1787. "value": [
  1788. 260.0,
  1789. 80.0
  1790. ],
  1791. "controlAddress": "/viewUISize"
  1792. },
  1793. {
  1794. "value": false,
  1795. "controlAddress": "/active"
  1796. }
  1797. ],
  1798. "niceName": "feeder2_PillNotDelivered",
  1799. "type": "State",
  1800. "processors": {
  1801. "items": [
  1802. {
  1803. "niceName": "Action",
  1804. "editorIsCollapsed": true,
  1805. "type": "Action",
  1806. "conditions": {
  1807. "parameters": [
  1808. {
  1809. "value": 0.0,
  1810. "controlAddress": "/validationTime"
  1811. }
  1812. ],
  1813. "items": [
  1814. {
  1815. "parameters": [
  1816. {
  1817. "value": false,
  1818. "controlAddress": "/enabled"
  1819. }
  1820. ],
  1821. "niceName": "On Activate",
  1822. "editorIsCollapsed": true,
  1823. "type": "On Activate",
  1824. "activationType": 0
  1825. },
  1826. {
  1827. "parameters": [
  1828. {
  1829. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/pillCounter",
  1830. "controlAddress": "/inputValue"
  1831. }
  1832. ],
  1833. "niceName": "From Input Value",
  1834. "type": "From Input Value",
  1835. "comparator": {
  1836. "parameters": [
  1837. {
  1838. "value": "<",
  1839. "controlAddress": "/comparisonFunction"
  1840. },
  1841. {
  1842. "value": 5,
  1843. "hexMode": false,
  1844. "controlAddress": "/reference"
  1845. }
  1846. ]
  1847. }
  1848. }
  1849. ]
  1850. },
  1851. "consequences": {
  1852. "parameters": [
  1853. {
  1854. "value": 2.099999904632568,
  1855. "controlAddress": "/delay"
  1856. }
  1857. ],
  1858. "items": [
  1859. {
  1860. "niceName": "Consequence",
  1861. "type": "BaseItem",
  1862. "commandModule": "customVariables",
  1863. "commandPath": "",
  1864. "commandType": "Set Value",
  1865. "command": {
  1866. "parameters": [
  1867. {
  1868. "value": "/feeder2_inhibiteurs_/variables/pillCounter/pillCounter",
  1869. "controlAddress": "/targetValue"
  1870. },
  1871. {
  1872. "value": "Add",
  1873. "controlAddress": "/operator"
  1874. },
  1875. {
  1876. "value": 1,
  1877. "hexMode": false,
  1878. "controlAddress": "/value"
  1879. }
  1880. ]
  1881. }
  1882. },
  1883. {
  1884. "niceName": "Consequence 1",
  1885. "type": "BaseItem",
  1886. "commandModule": "generic",
  1887. "commandPath": "",
  1888. "commandType": "Trigger a Control",
  1889. "command": {
  1890. "parameters": [
  1891. {
  1892. "value": "/states/transitions/feeder2_retryPill/triggerValidate",
  1893. "controlAddress": "/target"
  1894. }
  1895. ]
  1896. }
  1897. }
  1898. ]
  1899. },
  1900. "consequencesOff": {
  1901. "parameters": [
  1902. {
  1903. "value": 0.0,
  1904. "controlAddress": "/delay"
  1905. }
  1906. ],
  1907. "items": [
  1908. {
  1909. "niceName": "Consequence",
  1910. "type": "BaseItem",
  1911. "commandModule": "generic",
  1912. "commandPath": "",
  1913. "commandType": "Trigger a Control",
  1914. "command": {
  1915. "parameters": [
  1916. {
  1917. "value": "/states/transitions/feeder2_changeTube/triggerValidate",
  1918. "controlAddress": "/target"
  1919. }
  1920. ]
  1921. }
  1922. }
  1923. ]
  1924. }
  1925. }
  1926. ]
  1927. }
  1928. },
  1929. {
  1930. "parameters": [
  1931. {
  1932. "value": false,
  1933. "controlAddress": "/miniMode"
  1934. },
  1935. {
  1936. "value": [
  1937. -843.0,
  1938. -685.0
  1939. ],
  1940. "controlAddress": "/viewUIPosition"
  1941. },
  1942. {
  1943. "value": [
  1944. 292.0,
  1945. 65.0
  1946. ],
  1947. "controlAddress": "/viewUISize"
  1948. },
  1949. {
  1950. "value": false,
  1951. "controlAddress": "/active"
  1952. }
  1953. ],
  1954. "niceName": "feeder2_waitTube",
  1955. "type": "State",
  1956. "processors": {
  1957. "items": [
  1958. {
  1959. "niceName": "Action",
  1960. "editorIsCollapsed": true,
  1961. "type": "Action",
  1962. "conditions": {
  1963. "items": [
  1964. {
  1965. "niceName": "On Activate",
  1966. "type": "On Activate",
  1967. "activationType": 0
  1968. },
  1969. {
  1970. "parameters": [
  1971. {
  1972. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/tubeCounter",
  1973. "controlAddress": "/inputValue"
  1974. }
  1975. ],
  1976. "niceName": "From Input Value",
  1977. "type": "From Input Value",
  1978. "comparator": {
  1979. "parameters": [
  1980. {
  1981. "value": "<=",
  1982. "controlAddress": "/comparisonFunction"
  1983. },
  1984. {
  1985. "value": 20,
  1986. "hexMode": false,
  1987. "controlAddress": "/reference"
  1988. }
  1989. ]
  1990. }
  1991. }
  1992. ]
  1993. },
  1994. "consequences": {
  1995. "parameters": [
  1996. {
  1997. "value": 4.099998950958252,
  1998. "controlAddress": "/delay"
  1999. }
  2000. ],
  2001. "items": [
  2002. {
  2003. "niceName": "Consequence",
  2004. "type": "BaseItem",
  2005. "commandModule": "osc",
  2006. "commandPath": "",
  2007. "commandType": "Custom Message",
  2008. "command": {
  2009. "parameters": [
  2010. {
  2011. "value": "/feeder2/barrel_home",
  2012. "controlAddress": "/address"
  2013. }
  2014. ],
  2015. "arguments": {
  2016. },
  2017. "argManager": {
  2018. }
  2019. }
  2020. },
  2021. {
  2022. "parameters": [
  2023. {
  2024. "value": true,
  2025. "controlAddress": "/enabled"
  2026. }
  2027. ],
  2028. "niceName": "Consequence 1",
  2029. "type": "BaseItem",
  2030. "commandModule": "generic",
  2031. "commandPath": "",
  2032. "commandType": "Trigger a Control",
  2033. "command": {
  2034. "parameters": [
  2035. {
  2036. "value": "/states/transitions/feeder2_tubeOK/triggerValidate",
  2037. "controlAddress": "/target"
  2038. }
  2039. ]
  2040. }
  2041. },
  2042. {
  2043. "niceName": "Consequence 2",
  2044. "type": "BaseItem",
  2045. "commandModule": "generic",
  2046. "commandPath": "",
  2047. "commandType": "Set Parameter Value",
  2048. "command": {
  2049. "parameters": [
  2050. {
  2051. "value": "/modules/osc/values/_feeder2_barrel_done",
  2052. "controlAddress": "/target"
  2053. }
  2054. ]
  2055. }
  2056. },
  2057. {
  2058. "niceName": "Consequence 3",
  2059. "type": "BaseItem",
  2060. "commandModule": "customVariables",
  2061. "commandPath": "",
  2062. "commandType": "Set Value",
  2063. "command": {
  2064. "parameters": [
  2065. {
  2066. "value": "/feeder2_inhibiteurs_/variables/tubeCounter/tubeCounter",
  2067. "controlAddress": "/targetValue"
  2068. },
  2069. {
  2070. "value": "Add",
  2071. "controlAddress": "/operator"
  2072. },
  2073. {
  2074. "value": 1,
  2075. "hexMode": false,
  2076. "controlAddress": "/value"
  2077. }
  2078. ]
  2079. }
  2080. }
  2081. ]
  2082. },
  2083. "consequencesOff": {
  2084. "items": [
  2085. {
  2086. "niceName": "Consequence",
  2087. "type": "BaseItem",
  2088. "commandModule": "generic",
  2089. "commandPath": "",
  2090. "commandType": "Trigger a Control",
  2091. "command": {
  2092. "parameters": [
  2093. {
  2094. "value": "/states/transitions/feeder2_tubeNO/triggerValidate",
  2095. "controlAddress": "/target"
  2096. }
  2097. ]
  2098. }
  2099. }
  2100. ]
  2101. }
  2102. }
  2103. ]
  2104. }
  2105. },
  2106. {
  2107. "parameters": [
  2108. {
  2109. "value": [
  2110. -456.0,
  2111. -692.0
  2112. ],
  2113. "controlAddress": "/viewUIPosition"
  2114. },
  2115. {
  2116. "value": [
  2117. 240.0,
  2118. 71.0
  2119. ],
  2120. "controlAddress": "/viewUISize"
  2121. },
  2122. {
  2123. "value": false,
  2124. "controlAddress": "/active"
  2125. }
  2126. ],
  2127. "niceName": "feeder2_tubeNotFound",
  2128. "type": "State",
  2129. "processors": {
  2130. "editorIsCollapsed": true,
  2131. "items": [
  2132. {
  2133. "niceName": "Action",
  2134. "editorIsCollapsed": true,
  2135. "type": "Action",
  2136. "conditions": {
  2137. "parameters": [
  2138. {
  2139. "value": 0.0,
  2140. "controlAddress": "/validationTime"
  2141. }
  2142. ],
  2143. "items": [
  2144. {
  2145. "niceName": "On Activate",
  2146. "type": "On Activate",
  2147. "activationType": 0
  2148. },
  2149. {
  2150. "parameters": [
  2151. {
  2152. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/tubeCounter",
  2153. "controlAddress": "/inputValue"
  2154. }
  2155. ],
  2156. "niceName": "From Input Value",
  2157. "type": "From Input Value",
  2158. "comparator": {
  2159. "parameters": [
  2160. {
  2161. "value": "<",
  2162. "controlAddress": "/comparisonFunction"
  2163. },
  2164. {
  2165. "value": 20,
  2166. "hexMode": false,
  2167. "controlAddress": "/reference"
  2168. }
  2169. ]
  2170. }
  2171. }
  2172. ]
  2173. },
  2174. "consequences": {
  2175. "parameters": [
  2176. {
  2177. "value": 2.999999523162842,
  2178. "controlAddress": "/stagger"
  2179. }
  2180. ],
  2181. "items": [
  2182. {
  2183. "niceName": "Consequence 1",
  2184. "type": "BaseItem",
  2185. "commandModule": "generic",
  2186. "commandPath": "",
  2187. "commandType": "Trigger a Control",
  2188. "command": {
  2189. "parameters": [
  2190. {
  2191. "value": "/states/transitions/feeder2_retryTube/triggerValidate",
  2192. "controlAddress": "/target"
  2193. }
  2194. ]
  2195. }
  2196. }
  2197. ]
  2198. },
  2199. "consequencesOff": {
  2200. "items": [
  2201. {
  2202. "niceName": "Consequence",
  2203. "type": "BaseItem",
  2204. "commandModule": "generic",
  2205. "commandPath": "",
  2206. "commandType": "Trigger a Control",
  2207. "command": {
  2208. "parameters": [
  2209. {
  2210. "value": "/states/transitions/feeder2_desactivate/triggerValidate",
  2211. "controlAddress": "/target"
  2212. }
  2213. ]
  2214. }
  2215. }
  2216. ]
  2217. }
  2218. }
  2219. ]
  2220. }
  2221. },
  2222. {
  2223. "parameters": [
  2224. {
  2225. "value": [
  2226. -82.0,
  2227. -705.0
  2228. ],
  2229. "controlAddress": "/viewUIPosition"
  2230. },
  2231. {
  2232. "value": [
  2233. 219.0,
  2234. 73.0
  2235. ],
  2236. "controlAddress": "/viewUISize"
  2237. },
  2238. {
  2239. "value": false,
  2240. "controlAddress": "/active"
  2241. }
  2242. ],
  2243. "niceName": "feeder_desactivated",
  2244. "type": "State",
  2245. "processors": {
  2246. "items": [
  2247. {
  2248. "niceName": "Action",
  2249. "editorIsCollapsed": true,
  2250. "type": "Action",
  2251. "conditions": {
  2252. "items": [
  2253. {
  2254. "niceName": "On Activate",
  2255. "type": "On Activate",
  2256. "activationType": 0
  2257. }
  2258. ]
  2259. },
  2260. "consequences": {
  2261. "items": [
  2262. {
  2263. "niceName": "Consequence",
  2264. "type": "BaseItem",
  2265. "commandModule": "customVariables",
  2266. "commandPath": "",
  2267. "commandType": "Set Value",
  2268. "command": {
  2269. "parameters": [
  2270. {
  2271. "value": "/feeder2_inhibiteurs_/variables/isActive/isActive",
  2272. "controlAddress": "/targetValue"
  2273. }
  2274. ]
  2275. }
  2276. }
  2277. ]
  2278. },
  2279. "consequencesOff": {
  2280. }
  2281. }
  2282. ]
  2283. }
  2284. },
  2285. {
  2286. "parameters": [
  2287. {
  2288. "value": [
  2289. -967.0,
  2290. -1092.0
  2291. ],
  2292. "controlAddress": "/viewUIPosition"
  2293. },
  2294. {
  2295. "value": [
  2296. 290.0,
  2297. 71.0
  2298. ],
  2299. "controlAddress": "/viewUISize"
  2300. },
  2301. {
  2302. "value": false,
  2303. "controlAddress": "/active"
  2304. }
  2305. ],
  2306. "niceName": "feeder2_StartPill",
  2307. "type": "State",
  2308. "processors": {
  2309. "items": [
  2310. {
  2311. "niceName": "Action",
  2312. "editorIsCollapsed": true,
  2313. "type": "Action",
  2314. "conditions": {
  2315. "items": [
  2316. {
  2317. "niceName": "On Activate",
  2318. "type": "On Activate",
  2319. "activationType": 0
  2320. }
  2321. ]
  2322. },
  2323. "consequences": {
  2324. "items": [
  2325. {
  2326. "niceName": "Consequence",
  2327. "type": "BaseItem",
  2328. "commandModule": "customVariables",
  2329. "commandPath": "",
  2330. "commandType": "Set Value",
  2331. "command": {
  2332. "parameters": [
  2333. {
  2334. "value": "/feeder2_inhibiteurs_/variables/pillCounter/pillCounter",
  2335. "controlAddress": "/targetValue"
  2336. }
  2337. ]
  2338. }
  2339. },
  2340. {
  2341. "niceName": "Consequence 1",
  2342. "type": "BaseItem",
  2343. "commandModule": "customVariables",
  2344. "commandPath": "",
  2345. "commandType": "Set Value",
  2346. "command": {
  2347. "parameters": [
  2348. {
  2349. "value": "/feeder2_inhibiteurs_/variables/tubeCounter/tubeCounter",
  2350. "controlAddress": "/targetValue"
  2351. }
  2352. ]
  2353. }
  2354. },
  2355. {
  2356. "niceName": "Consequence 2",
  2357. "type": "BaseItem",
  2358. "commandModule": "customVariables",
  2359. "commandPath": "",
  2360. "commandType": "Set Value",
  2361. "command": {
  2362. "parameters": [
  2363. {
  2364. "value": "/feeder2_inhibiteurs_/variables/isActive/isActive",
  2365. "controlAddress": "/targetValue"
  2366. }
  2367. ]
  2368. }
  2369. },
  2370. {
  2371. "niceName": "Consequence 3",
  2372. "type": "BaseItem",
  2373. "commandModule": "generic",
  2374. "commandPath": "",
  2375. "commandType": "Trigger a Control",
  2376. "command": {
  2377. }
  2378. }
  2379. ]
  2380. },
  2381. "consequencesOff": {
  2382. }
  2383. }
  2384. ]
  2385. }
  2386. },
  2387. {
  2388. "parameters": [
  2389. {
  2390. "value": [
  2391. -2049.0,
  2392. -1083.0
  2393. ],
  2394. "controlAddress": "/viewUIPosition"
  2395. },
  2396. {
  2397. "value": [
  2398. 255.0,
  2399. 60.0
  2400. ],
  2401. "controlAddress": "/viewUISize"
  2402. },
  2403. {
  2404. "value": true,
  2405. "controlAddress": "/active"
  2406. }
  2407. ],
  2408. "niceName": "camera_wait",
  2409. "type": "State",
  2410. "processors": {
  2411. "items": [
  2412. {
  2413. "niceName": "Action",
  2414. "editorIsCollapsed": true,
  2415. "type": "Action",
  2416. "conditions": {
  2417. "parameters": [
  2418. {
  2419. "value": 300.0,
  2420. "controlAddress": "/validationTime"
  2421. }
  2422. ],
  2423. "items": [
  2424. {
  2425. "niceName": "On Activate",
  2426. "type": "On Activate",
  2427. "activationType": 0
  2428. }
  2429. ]
  2430. },
  2431. "consequences": {
  2432. "items": [
  2433. {
  2434. "niceName": "Consequence",
  2435. "type": "BaseItem",
  2436. "commandModule": "generic",
  2437. "commandPath": "",
  2438. "commandType": "Trigger a Control",
  2439. "command": {
  2440. "parameters": [
  2441. {
  2442. "value": "/states/transitions/camera_takeSnap/triggerValidate",
  2443. "controlAddress": "/target"
  2444. }
  2445. ]
  2446. }
  2447. }
  2448. ]
  2449. },
  2450. "consequencesOff": {
  2451. }
  2452. }
  2453. ]
  2454. }
  2455. },
  2456. {
  2457. "parameters": [
  2458. {
  2459. "value": [
  2460. -1731.0,
  2461. -1093.0
  2462. ],
  2463. "controlAddress": "/viewUIPosition"
  2464. },
  2465. {
  2466. "value": [
  2467. 260.0,
  2468. 76.0
  2469. ],
  2470. "controlAddress": "/viewUISize"
  2471. },
  2472. {
  2473. "value": false,
  2474. "controlAddress": "/active"
  2475. }
  2476. ],
  2477. "niceName": "camera_snap",
  2478. "type": "State",
  2479. "processors": {
  2480. "items": [
  2481. {
  2482. "niceName": "Action",
  2483. "editorIsCollapsed": true,
  2484. "type": "Action",
  2485. "conditions": {
  2486. "parameters": [
  2487. {
  2488. "value": 0.0,
  2489. "controlAddress": "/validationTime"
  2490. }
  2491. ],
  2492. "items": [
  2493. {
  2494. "parameters": [
  2495. {
  2496. "value": "/modules/osc/values/_X_top_step",
  2497. "controlAddress": "/inputValue"
  2498. }
  2499. ],
  2500. "niceName": "From Input Value",
  2501. "type": "From Input Value",
  2502. "comparator": {
  2503. "parameters": [
  2504. {
  2505. "value": "<",
  2506. "controlAddress": "/comparisonFunction"
  2507. },
  2508. {
  2509. "value": 10000,
  2510. "hexMode": false,
  2511. "controlAddress": "/reference"
  2512. }
  2513. ]
  2514. }
  2515. },
  2516. {
  2517. "niceName": "On Activate",
  2518. "type": "On Activate",
  2519. "activationType": 0
  2520. }
  2521. ]
  2522. },
  2523. "consequences": {
  2524. "parameters": [
  2525. {
  2526. "value": 10.20000267028809,
  2527. "controlAddress": "/stagger"
  2528. }
  2529. ],
  2530. "items": [
  2531. {
  2532. "niceName": "Consequence",
  2533. "type": "BaseItem",
  2534. "commandModule": "os",
  2535. "commandPath": "Templates",
  2536. "commandType": "CameraSnapshot",
  2537. "command": {
  2538. }
  2539. },
  2540. {
  2541. "niceName": "Consequence 1",
  2542. "type": "BaseItem",
  2543. "commandModule": "generic",
  2544. "commandPath": "",
  2545. "commandType": "Trigger a Control",
  2546. "command": {
  2547. "parameters": [
  2548. {
  2549. "value": "/states/transitions/camera_waitAgain/triggerValidate",
  2550. "controlAddress": "/target"
  2551. }
  2552. ]
  2553. }
  2554. }
  2555. ]
  2556. },
  2557. "consequencesOff": {
  2558. }
  2559. }
  2560. ]
  2561. }
  2562. }
  2563. ],
  2564. "transitions": {
  2565. "items": [
  2566. {
  2567. "niceName": "feeder1_pillOK",
  2568. "editorIsCollapsed": true,
  2569. "type": "Action",
  2570. "conditions": {
  2571. "parameters": [
  2572. {
  2573. "value": 0.0,
  2574. "controlAddress": "/validationTime"
  2575. }
  2576. ],
  2577. "items": [
  2578. {
  2579. "parameters": [
  2580. {
  2581. "value": "/modules/osc/values/_feeder1_pill_done",
  2582. "controlAddress": "/inputValue"
  2583. }
  2584. ],
  2585. "niceName": "From Input Value",
  2586. "type": "From Input Value",
  2587. "comparator": {
  2588. "parameters": [
  2589. {
  2590. "value": "=",
  2591. "controlAddress": "/comparisonFunction"
  2592. },
  2593. {
  2594. "value": "1",
  2595. "controlAddress": "/reference"
  2596. }
  2597. ]
  2598. }
  2599. }
  2600. ]
  2601. },
  2602. "consequences": {
  2603. },
  2604. "consequencesOff": {
  2605. "parameters": [
  2606. {
  2607. "value": 5.0,
  2608. "controlAddress": "/delay"
  2609. }
  2610. ]
  2611. },
  2612. "sourceState": "feeder1_waitPill",
  2613. "destState": "feeder1_PillDelivered"
  2614. },
  2615. {
  2616. "niceName": "feeder1_pillNO",
  2617. "editorIsCollapsed": true,
  2618. "type": "Action",
  2619. "conditions": {
  2620. "items": [
  2621. {
  2622. "parameters": [
  2623. {
  2624. "value": "/modules/osc/values/_feeder1_pill_done",
  2625. "controlAddress": "/inputValue"
  2626. }
  2627. ],
  2628. "niceName": "From Input Value",
  2629. "type": "From Input Value",
  2630. "comparator": {
  2631. "parameters": [
  2632. {
  2633. "value": "=",
  2634. "controlAddress": "/comparisonFunction"
  2635. },
  2636. {
  2637. "value": "0",
  2638. "controlAddress": "/reference"
  2639. }
  2640. ]
  2641. }
  2642. }
  2643. ]
  2644. },
  2645. "consequences": {
  2646. },
  2647. "consequencesOff": {
  2648. },
  2649. "sourceState": "feeder1_waitPill",
  2650. "destState": "feeder1_PillNotDelivered"
  2651. },
  2652. {
  2653. "niceName": "feeder1_retryPill",
  2654. "editorIsCollapsed": true,
  2655. "type": "Action",
  2656. "conditions": {
  2657. "items": [
  2658. {
  2659. "parameters": [
  2660. {
  2661. "value": "/customVariables/customVariables/values/feeder1_nourriture_/pillCounter",
  2662. "controlAddress": "/inputValue"
  2663. }
  2664. ],
  2665. "niceName": "From Input Value",
  2666. "type": "From Input Value",
  2667. "comparator": {
  2668. "parameters": [
  2669. {
  2670. "value": "<",
  2671. "controlAddress": "/comparisonFunction"
  2672. },
  2673. {
  2674. "value": 5,
  2675. "hexMode": false,
  2676. "controlAddress": "/reference"
  2677. }
  2678. ]
  2679. }
  2680. }
  2681. ]
  2682. },
  2683. "consequences": {
  2684. },
  2685. "consequencesOff": {
  2686. },
  2687. "sourceState": "feeder1_PillNotDelivered",
  2688. "destState": "feeder1_waitPill"
  2689. },
  2690. {
  2691. "niceName": "feeder1_changeTube",
  2692. "editorIsCollapsed": true,
  2693. "type": "Action",
  2694. "conditions": {
  2695. "items": [
  2696. {
  2697. "parameters": [
  2698. {
  2699. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/pillCounter",
  2700. "controlAddress": "/inputValue"
  2701. }
  2702. ],
  2703. "niceName": "From Input Value",
  2704. "type": "From Input Value",
  2705. "comparator": {
  2706. "parameters": [
  2707. {
  2708. "value": ">=",
  2709. "controlAddress": "/comparisonFunction"
  2710. },
  2711. {
  2712. "value": 5,
  2713. "hexMode": false,
  2714. "controlAddress": "/reference"
  2715. }
  2716. ]
  2717. }
  2718. }
  2719. ]
  2720. },
  2721. "consequences": {
  2722. },
  2723. "consequencesOff": {
  2724. },
  2725. "sourceState": "feeder1_PillNotDelivered",
  2726. "destState": "feeder1_waitTube"
  2727. },
  2728. {
  2729. "niceName": "feeder1_tubeOK",
  2730. "editorIsCollapsed": true,
  2731. "type": "Action",
  2732. "conditions": {
  2733. "items": [
  2734. {
  2735. "parameters": [
  2736. {
  2737. "value": "/modules/osc/values/_feeder1_barrel_done",
  2738. "controlAddress": "/inputValue"
  2739. }
  2740. ],
  2741. "niceName": "From Input Value",
  2742. "type": "From Input Value",
  2743. "comparator": {
  2744. "parameters": [
  2745. {
  2746. "value": "=",
  2747. "controlAddress": "/comparisonFunction"
  2748. },
  2749. {
  2750. "value": "1",
  2751. "controlAddress": "/reference"
  2752. }
  2753. ]
  2754. }
  2755. }
  2756. ]
  2757. },
  2758. "consequences": {
  2759. "items": [
  2760. {
  2761. "niceName": "Consequence",
  2762. "type": "BaseItem",
  2763. "commandModule": "customVariables",
  2764. "commandPath": "",
  2765. "commandType": "Set Value",
  2766. "command": {
  2767. "parameters": [
  2768. {
  2769. "value": "/feeder1_nourriture_/variables/pillCounter/pillCounter",
  2770. "controlAddress": "/targetValue"
  2771. }
  2772. ]
  2773. }
  2774. }
  2775. ]
  2776. },
  2777. "consequencesOff": {
  2778. },
  2779. "sourceState": "feeder1_waitTube",
  2780. "destState": "feeder1_waitPill"
  2781. },
  2782. {
  2783. "niceName": "feeder1_tubeNO",
  2784. "editorIsCollapsed": true,
  2785. "type": "Action",
  2786. "conditions": {
  2787. "items": [
  2788. {
  2789. "parameters": [
  2790. {
  2791. "value": "/modules/osc/values/_feeder1_barrel_done",
  2792. "controlAddress": "/inputValue"
  2793. }
  2794. ],
  2795. "niceName": "From Input Value",
  2796. "type": "From Input Value",
  2797. "comparator": {
  2798. "parameters": [
  2799. {
  2800. "value": "=",
  2801. "controlAddress": "/comparisonFunction"
  2802. },
  2803. {
  2804. "value": "0",
  2805. "controlAddress": "/reference"
  2806. }
  2807. ]
  2808. }
  2809. }
  2810. ]
  2811. },
  2812. "consequences": {
  2813. },
  2814. "consequencesOff": {
  2815. },
  2816. "sourceState": "feeder1_waitTube",
  2817. "destState": "feeder1_tubeNotFound"
  2818. },
  2819. {
  2820. "niceName": "feeder1_retryTube",
  2821. "editorIsCollapsed": true,
  2822. "type": "Action",
  2823. "conditions": {
  2824. "items": [
  2825. {
  2826. "parameters": [
  2827. {
  2828. "value": "/customVariables/customVariables/values/feeder1_nourriture_/tubeCounter",
  2829. "controlAddress": "/inputValue"
  2830. }
  2831. ],
  2832. "niceName": "From Input Value",
  2833. "type": "From Input Value",
  2834. "comparator": {
  2835. "parameters": [
  2836. {
  2837. "value": "<",
  2838. "controlAddress": "/comparisonFunction"
  2839. },
  2840. {
  2841. "value": 20,
  2842. "hexMode": false,
  2843. "controlAddress": "/reference"
  2844. }
  2845. ]
  2846. }
  2847. }
  2848. ]
  2849. },
  2850. "consequences": {
  2851. },
  2852. "consequencesOff": {
  2853. },
  2854. "sourceState": "feeder1_tubeNotFound",
  2855. "destState": "feeder1_waitTube"
  2856. },
  2857. {
  2858. "niceName": "feeder1_Desactivate",
  2859. "editorIsCollapsed": true,
  2860. "type": "Action",
  2861. "conditions": {
  2862. "items": [
  2863. {
  2864. "parameters": [
  2865. {
  2866. "value": "/customVariables/customVariables/values/feeder1_nourriture_/tubeCounter",
  2867. "controlAddress": "/inputValue"
  2868. }
  2869. ],
  2870. "niceName": "From Input Value",
  2871. "type": "From Input Value",
  2872. "comparator": {
  2873. "parameters": [
  2874. {
  2875. "value": ">=",
  2876. "controlAddress": "/comparisonFunction"
  2877. },
  2878. {
  2879. "value": 20,
  2880. "hexMode": false,
  2881. "controlAddress": "/reference"
  2882. }
  2883. ]
  2884. }
  2885. }
  2886. ]
  2887. },
  2888. "consequences": {
  2889. },
  2890. "consequencesOff": {
  2891. },
  2892. "sourceState": "feeder1_tubeNotFound",
  2893. "destState": "feeder1_desactivated"
  2894. },
  2895. {
  2896. "niceName": "feeder1_askPill",
  2897. "editorIsCollapsed": true,
  2898. "type": "Action",
  2899. "conditions": {
  2900. "items": [
  2901. {
  2902. "niceName": "On Activate",
  2903. "type": "On Activate",
  2904. "activationType": 0
  2905. }
  2906. ]
  2907. },
  2908. "consequences": {
  2909. },
  2910. "consequencesOff": {
  2911. },
  2912. "sourceState": "feeder1_StartPill",
  2913. "destState": "feeder1_waitPill"
  2914. },
  2915. {
  2916. "niceName": "feeder2_askPill",
  2917. "editorIsCollapsed": true,
  2918. "type": "Action",
  2919. "conditions": {
  2920. "items": [
  2921. {
  2922. "niceName": "On Activate",
  2923. "type": "On Activate",
  2924. "activationType": 0
  2925. }
  2926. ]
  2927. },
  2928. "consequences": {
  2929. },
  2930. "consequencesOff": {
  2931. },
  2932. "sourceState": "feeder2_StartPill",
  2933. "destState": "feeder2_waitPill"
  2934. },
  2935. {
  2936. "niceName": "feeder2_pillOK",
  2937. "editorIsCollapsed": true,
  2938. "type": "Action",
  2939. "conditions": {
  2940. "items": [
  2941. {
  2942. "parameters": [
  2943. {
  2944. "value": "/modules/osc/values/_feeder2_pill_done",
  2945. "controlAddress": "/inputValue"
  2946. }
  2947. ],
  2948. "niceName": "From Input Value",
  2949. "type": "From Input Value",
  2950. "comparator": {
  2951. "parameters": [
  2952. {
  2953. "value": "=",
  2954. "controlAddress": "/comparisonFunction"
  2955. },
  2956. {
  2957. "value": "1",
  2958. "controlAddress": "/reference"
  2959. }
  2960. ]
  2961. }
  2962. }
  2963. ]
  2964. },
  2965. "consequences": {
  2966. },
  2967. "consequencesOff": {
  2968. },
  2969. "sourceState": "feeder2_waitPill",
  2970. "destState": "feeder2_PillDelivered"
  2971. },
  2972. {
  2973. "niceName": "feeder2_pillNO",
  2974. "editorIsCollapsed": true,
  2975. "type": "Action",
  2976. "conditions": {
  2977. "items": [
  2978. {
  2979. "parameters": [
  2980. {
  2981. "value": "/modules/osc/values/_feeder2_pill_done",
  2982. "controlAddress": "/inputValue"
  2983. }
  2984. ],
  2985. "niceName": "From Input Value",
  2986. "type": "From Input Value",
  2987. "comparator": {
  2988. "parameters": [
  2989. {
  2990. "value": "=",
  2991. "controlAddress": "/comparisonFunction"
  2992. },
  2993. {
  2994. "value": "0",
  2995. "controlAddress": "/reference"
  2996. }
  2997. ]
  2998. }
  2999. }
  3000. ]
  3001. },
  3002. "consequences": {
  3003. },
  3004. "consequencesOff": {
  3005. },
  3006. "sourceState": "feeder2_waitPill",
  3007. "destState": "feeder2_PillNotDelivered"
  3008. },
  3009. {
  3010. "niceName": "feeder2_retryPill",
  3011. "editorIsCollapsed": true,
  3012. "type": "Action",
  3013. "conditions": {
  3014. "items": [
  3015. {
  3016. "parameters": [
  3017. {
  3018. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/pillCounter",
  3019. "controlAddress": "/inputValue"
  3020. }
  3021. ],
  3022. "niceName": "From Input Value",
  3023. "type": "From Input Value",
  3024. "comparator": {
  3025. "parameters": [
  3026. {
  3027. "value": "<",
  3028. "controlAddress": "/comparisonFunction"
  3029. },
  3030. {
  3031. "value": 5,
  3032. "hexMode": false,
  3033. "controlAddress": "/reference"
  3034. }
  3035. ]
  3036. }
  3037. }
  3038. ]
  3039. },
  3040. "consequences": {
  3041. },
  3042. "consequencesOff": {
  3043. },
  3044. "sourceState": "feeder2_PillNotDelivered",
  3045. "destState": "feeder2_waitPill"
  3046. },
  3047. {
  3048. "niceName": "feeder2_changeTube",
  3049. "editorIsCollapsed": true,
  3050. "type": "Action",
  3051. "conditions": {
  3052. "items": [
  3053. {
  3054. "parameters": [
  3055. {
  3056. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/pillCounter",
  3057. "controlAddress": "/inputValue"
  3058. }
  3059. ],
  3060. "niceName": "From Input Value",
  3061. "type": "From Input Value",
  3062. "comparator": {
  3063. "parameters": [
  3064. {
  3065. "value": ">=",
  3066. "controlAddress": "/comparisonFunction"
  3067. },
  3068. {
  3069. "value": 5,
  3070. "hexMode": false,
  3071. "controlAddress": "/reference"
  3072. }
  3073. ]
  3074. }
  3075. }
  3076. ]
  3077. },
  3078. "consequences": {
  3079. },
  3080. "consequencesOff": {
  3081. },
  3082. "sourceState": "feeder2_PillNotDelivered",
  3083. "destState": "feeder2_waitTube"
  3084. },
  3085. {
  3086. "niceName": "feeder2_tubeOK",
  3087. "editorIsCollapsed": true,
  3088. "type": "Action",
  3089. "conditions": {
  3090. },
  3091. "consequences": {
  3092. },
  3093. "consequencesOff": {
  3094. },
  3095. "sourceState": "feeder2_waitTube",
  3096. "destState": "feeder2_waitPill"
  3097. },
  3098. {
  3099. "niceName": "feeder2_tubeNO",
  3100. "editorIsCollapsed": true,
  3101. "type": "Action",
  3102. "conditions": {
  3103. "items": [
  3104. {
  3105. "parameters": [
  3106. {
  3107. "value": "/modules/osc/values/_feeder2_barrel_done",
  3108. "controlAddress": "/inputValue"
  3109. }
  3110. ],
  3111. "niceName": "From Input Value",
  3112. "type": "From Input Value",
  3113. "comparator": {
  3114. "parameters": [
  3115. {
  3116. "value": "=",
  3117. "controlAddress": "/comparisonFunction"
  3118. },
  3119. {
  3120. "value": "1",
  3121. "controlAddress": "/reference"
  3122. }
  3123. ]
  3124. }
  3125. }
  3126. ]
  3127. },
  3128. "consequences": {
  3129. },
  3130. "consequencesOff": {
  3131. },
  3132. "sourceState": "feeder2_waitTube",
  3133. "destState": "feeder2_tubeNotFound"
  3134. },
  3135. {
  3136. "niceName": "feeder2_retryTube",
  3137. "editorIsCollapsed": true,
  3138. "type": "Action",
  3139. "conditions": {
  3140. "items": [
  3141. {
  3142. "parameters": [
  3143. {
  3144. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/tubeCounter",
  3145. "controlAddress": "/inputValue"
  3146. }
  3147. ],
  3148. "niceName": "From Input Value",
  3149. "type": "From Input Value",
  3150. "comparator": {
  3151. "parameters": [
  3152. {
  3153. "value": "<",
  3154. "controlAddress": "/comparisonFunction"
  3155. },
  3156. {
  3157. "value": 20,
  3158. "hexMode": false,
  3159. "controlAddress": "/reference"
  3160. }
  3161. ]
  3162. }
  3163. }
  3164. ]
  3165. },
  3166. "consequences": {
  3167. },
  3168. "consequencesOff": {
  3169. },
  3170. "sourceState": "feeder2_tubeNotFound",
  3171. "destState": "feeder2_waitTube"
  3172. },
  3173. {
  3174. "niceName": "feeder2_desactivate",
  3175. "editorIsCollapsed": true,
  3176. "type": "Action",
  3177. "conditions": {
  3178. "items": [
  3179. {
  3180. "parameters": [
  3181. {
  3182. "value": "/customVariables/customVariables/values/feeder2_inhibiteurs_/tubeCounter",
  3183. "controlAddress": "/inputValue"
  3184. }
  3185. ],
  3186. "niceName": "From Input Value",
  3187. "type": "From Input Value",
  3188. "comparator": {
  3189. "parameters": [
  3190. {
  3191. "value": ">=",
  3192. "controlAddress": "/comparisonFunction"
  3193. },
  3194. {
  3195. "value": 20,
  3196. "hexMode": false,
  3197. "controlAddress": "/reference"
  3198. }
  3199. ]
  3200. }
  3201. }
  3202. ]
  3203. },
  3204. "consequences": {
  3205. },
  3206. "consequencesOff": {
  3207. },
  3208. "sourceState": "feeder2_tubeNotFound",
  3209. "destState": "feeder_desactivated"
  3210. },
  3211. {
  3212. "niceName": "camera_takeSnap",
  3213. "editorIsCollapsed": true,
  3214. "type": "Action",
  3215. "conditions": {
  3216. "items": [
  3217. {
  3218. "niceName": "On Activate",
  3219. "type": "On Activate",
  3220. "activationType": 0
  3221. }
  3222. ]
  3223. },
  3224. "consequences": {
  3225. },
  3226. "consequencesOff": {
  3227. },
  3228. "sourceState": "camera_wait",
  3229. "destState": "camera_snap"
  3230. },
  3231. {
  3232. "niceName": "camera_waitAgain",
  3233. "editorIsCollapsed": true,
  3234. "type": "Action",
  3235. "conditions": {
  3236. "parameters": [
  3237. {
  3238. "value": 5.199998378753662,
  3239. "controlAddress": "/validationTime"
  3240. }
  3241. ],
  3242. "items": [
  3243. {
  3244. "niceName": "On Activate",
  3245. "type": "On Activate",
  3246. "activationType": 0
  3247. }
  3248. ]
  3249. },
  3250. "consequences": {
  3251. "items": [
  3252. {
  3253. "niceName": "Consequence",
  3254. "type": "BaseItem",
  3255. "commandModule": "stateMachine",
  3256. "commandPath": "State",
  3257. "commandType": "Activate State",
  3258. "command": {
  3259. "parameters": [
  3260. {
  3261. "value": "/states/camera_wait",
  3262. "controlAddress": "/target"
  3263. }
  3264. ]
  3265. }
  3266. }
  3267. ]
  3268. },
  3269. "consequencesOff": {
  3270. },
  3271. "sourceState": "camera_snap",
  3272. "destState": "camera_wait"
  3273. }
  3274. ]
  3275. },
  3276. "comments": {
  3277. "items": [
  3278. {
  3279. "parameters": [
  3280. {
  3281. "value": [
  3282. -769.0,
  3283. -344.0
  3284. ],
  3285. "controlAddress": "/viewUIPosition"
  3286. },
  3287. {
  3288. "value": "FEEDER 1",
  3289. "controlAddress": "/text"
  3290. }
  3291. ],
  3292. "niceName": "Comment",
  3293. "type": "Comment"
  3294. },
  3295. {
  3296. "parameters": [
  3297. {
  3298. "value": [
  3299. -821.0,
  3300. -1123.0
  3301. ],
  3302. "controlAddress": "/viewUIPosition"
  3303. },
  3304. {
  3305. "value": "Feeder 2",
  3306. "controlAddress": "/text"
  3307. }
  3308. ],
  3309. "niceName": "Comment 1",
  3310. "type": "Comment"
  3311. },
  3312. {
  3313. "parameters": [
  3314. {
  3315. "value": [
  3316. -1814.0,
  3317. -1159.0
  3318. ],
  3319. "controlAddress": "/viewUIPosition"
  3320. },
  3321. {
  3322. "value": "CAMERA SNAPSHOT",
  3323. "controlAddress": "/text"
  3324. }
  3325. ],
  3326. "niceName": "Comment 2",
  3327. "type": "Comment"
  3328. },
  3329. {
  3330. "parameters": [
  3331. {
  3332. "value": [
  3333. -1967.0,
  3334. -1118.0
  3335. ],
  3336. "controlAddress": "/viewUIPosition"
  3337. },
  3338. {
  3339. "value": "wait 5 mins",
  3340. "controlAddress": "/text"
  3341. }
  3342. ],
  3343. "niceName": "Comment 3",
  3344. "type": "Comment"
  3345. },
  3346. {
  3347. "parameters": [
  3348. {
  3349. "value": [
  3350. -1654.0,
  3351. -1118.0
  3352. ],
  3353. "controlAddress": "/viewUIPosition"
  3354. },
  3355. {
  3356. "value": "wait for arm",
  3357. "controlAddress": "/text"
  3358. }
  3359. ],
  3360. "niceName": "Comment 4",
  3361. "type": "Comment"
  3362. }
  3363. ]
  3364. }
  3365. }
  3366. }