Memery100.mc 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. {
  2. "Description": "Undefined",
  3. "Editor": "Undefined",
  4. "EditTime": "2025-08-14T11:37:34.0834829+08:00",
  5. "Mini8Configs": [
  6. {
  7. "ChannelConfig": [
  8. {
  9. "ActiveTuneSet": 1,
  10. "Caps": 160,
  11. "CapsWarning": 155,
  12. "ChannelMode": 0,
  13. "DelayMillionSeconds": 0,
  14. "Floor": 140,
  15. "FloorWarning": 145,
  16. "Index": 1,
  17. "Inhibit": 0,
  18. "Running_D": 100,
  19. "Running_I": 100,
  20. "Running_P": 100,
  21. "SetPoint": 150,
  22. "SetpointDownRate": 0,
  23. "SetpointUpRate": 3
  24. },
  25. {
  26. "ActiveTuneSet": 1,
  27. "Caps": 160,
  28. "CapsWarning": 155,
  29. "ChannelMode": 0,
  30. "DelayMillionSeconds": 0,
  31. "Floor": 140,
  32. "FloorWarning": 145,
  33. "Index": 2,
  34. "Inhibit": 0,
  35. "Running_D": 100,
  36. "Running_I": 100,
  37. "Running_P": 100,
  38. "SetPoint": 150,
  39. "SetpointDownRate": 0,
  40. "SetpointUpRate": 3
  41. },
  42. {
  43. "ActiveTuneSet": 1,
  44. "Caps": 160,
  45. "CapsWarning": 155,
  46. "ChannelMode": 0,
  47. "DelayMillionSeconds": 0,
  48. "Floor": 140,
  49. "FloorWarning": 145,
  50. "Index": 3,
  51. "Inhibit": 0,
  52. "Running_D": 100,
  53. "Running_I": 100,
  54. "Running_P": 100,
  55. "SetPoint": 150,
  56. "SetpointDownRate": 0,
  57. "SetpointUpRate": 3
  58. },
  59. {
  60. "ActiveTuneSet": 1,
  61. "Caps": 160,
  62. "CapsWarning": 155,
  63. "ChannelMode": 0,
  64. "DelayMillionSeconds": 0,
  65. "Floor": 140,
  66. "FloorWarning": 145,
  67. "Index": 4,
  68. "Inhibit": 0,
  69. "Running_D": 100,
  70. "Running_I": 100,
  71. "Running_P": 100,
  72. "SetPoint": 150,
  73. "SetpointDownRate": 0,
  74. "SetpointUpRate": 3
  75. },
  76. {
  77. "ActiveTuneSet": 1,
  78. "Caps": 160,
  79. "CapsWarning": 155,
  80. "ChannelMode": 0,
  81. "DelayMillionSeconds": 0,
  82. "Floor": 140,
  83. "FloorWarning": 145,
  84. "Index": 5,
  85. "Inhibit": 0,
  86. "Running_D": 100,
  87. "Running_I": 100,
  88. "Running_P": 100,
  89. "SetPoint": 150,
  90. "SetpointDownRate": 0,
  91. "SetpointUpRate": 3
  92. },
  93. {
  94. "ActiveTuneSet": 1,
  95. "Caps": 160,
  96. "CapsWarning": 155,
  97. "ChannelMode": 0,
  98. "DelayMillionSeconds": 0,
  99. "Floor": 140,
  100. "FloorWarning": 145,
  101. "Index": 6,
  102. "Inhibit": 0,
  103. "Running_D": 100,
  104. "Running_I": 100,
  105. "Running_P": 100,
  106. "SetPoint": 150,
  107. "SetpointDownRate": 0,
  108. "SetpointUpRate": 3
  109. },
  110. {
  111. "ActiveTuneSet": 1,
  112. "Caps": 160,
  113. "CapsWarning": 155,
  114. "ChannelMode": 0,
  115. "DelayMillionSeconds": 0,
  116. "Floor": 140,
  117. "FloorWarning": 145,
  118. "Index": 7,
  119. "Inhibit": 0,
  120. "Running_D": 100,
  121. "Running_I": 100,
  122. "Running_P": 100,
  123. "SetPoint": 150,
  124. "SetpointDownRate": 0,
  125. "SetpointUpRate": 3
  126. },
  127. {
  128. "ActiveTuneSet": 1,
  129. "Caps": 160,
  130. "CapsWarning": 155,
  131. "ChannelMode": 0,
  132. "DelayMillionSeconds": 0,
  133. "Floor": 140,
  134. "FloorWarning": 145,
  135. "Index": 8,
  136. "Inhibit": 0,
  137. "Running_D": 100,
  138. "Running_I": 100,
  139. "Running_P": 100,
  140. "SetPoint": 150,
  141. "SetpointDownRate": 0,
  142. "SetpointUpRate": 3
  143. },
  144. {
  145. "ActiveTuneSet": 1,
  146. "Caps": 160,
  147. "CapsWarning": 155,
  148. "ChannelMode": 0,
  149. "DelayMillionSeconds": 0,
  150. "Floor": 140,
  151. "FloorWarning": 145,
  152. "Index": 9,
  153. "Inhibit": 0,
  154. "Running_D": 100,
  155. "Running_I": 100,
  156. "Running_P": 100,
  157. "SetPoint": 150,
  158. "SetpointDownRate": 0,
  159. "SetpointUpRate": 3
  160. },
  161. {
  162. "ActiveTuneSet": 1,
  163. "Caps": 160,
  164. "CapsWarning": 155,
  165. "ChannelMode": 0,
  166. "DelayMillionSeconds": 0,
  167. "Floor": 140,
  168. "FloorWarning": 145,
  169. "Index": 10,
  170. "Inhibit": 0,
  171. "Running_D": 100,
  172. "Running_I": 100,
  173. "Running_P": 100,
  174. "SetPoint": 150,
  175. "SetpointDownRate": 0,
  176. "SetpointUpRate": 3
  177. },
  178. {
  179. "ActiveTuneSet": 1,
  180. "Caps": 160,
  181. "CapsWarning": 155,
  182. "ChannelMode": 0,
  183. "DelayMillionSeconds": 0,
  184. "Floor": 140,
  185. "FloorWarning": 145,
  186. "Index": 11,
  187. "Inhibit": 0,
  188. "Running_D": 100,
  189. "Running_I": 100,
  190. "Running_P": 100,
  191. "SetPoint": 150,
  192. "SetpointDownRate": 0,
  193. "SetpointUpRate": 3
  194. },
  195. {
  196. "ActiveTuneSet": 1,
  197. "Caps": 160,
  198. "CapsWarning": 155,
  199. "ChannelMode": 0,
  200. "DelayMillionSeconds": 0,
  201. "Floor": 140,
  202. "FloorWarning": 145,
  203. "Index": 12,
  204. "Inhibit": 0,
  205. "Running_D": 100,
  206. "Running_I": 100,
  207. "Running_P": 100,
  208. "SetPoint": 150,
  209. "SetpointDownRate": 0,
  210. "SetpointUpRate": 3
  211. },
  212. {
  213. "ActiveTuneSet": 1,
  214. "Caps": 10,
  215. "CapsWarning": 5,
  216. "ChannelMode": 2,
  217. "DelayMillionSeconds": 0,
  218. "Floor": 0,
  219. "FloorWarning": 0,
  220. "Index": 13,
  221. "Inhibit": 1,
  222. "Running_D": 100,
  223. "Running_I": 100,
  224. "Running_P": 100,
  225. "SetPoint": 0,
  226. "SetpointDownRate": 0,
  227. "SetpointUpRate": 3
  228. },
  229. {
  230. "ActiveTuneSet": 1,
  231. "Caps": 10,
  232. "CapsWarning": 5,
  233. "ChannelMode": 2,
  234. "DelayMillionSeconds": 0,
  235. "Floor": 0,
  236. "FloorWarning": 0,
  237. "Index": 14,
  238. "Inhibit": 1,
  239. "Running_D": 100,
  240. "Running_I": 100,
  241. "Running_P": 100,
  242. "SetPoint": 0,
  243. "SetpointDownRate": 0,
  244. "SetpointUpRate": 3
  245. },
  246. {
  247. "ActiveTuneSet": 1,
  248. "Caps": 10,
  249. "CapsWarning": 5,
  250. "ChannelMode": 2,
  251. "DelayMillionSeconds": 0,
  252. "Floor": 0,
  253. "FloorWarning": 0,
  254. "Index": 15,
  255. "Inhibit": 1,
  256. "Running_D": 100,
  257. "Running_I": 100,
  258. "Running_P": 100,
  259. "SetPoint": 0,
  260. "SetpointDownRate": 0,
  261. "SetpointUpRate": 3
  262. },
  263. {
  264. "ActiveTuneSet": 1,
  265. "Caps": 10,
  266. "CapsWarning": 5,
  267. "ChannelMode": 2,
  268. "DelayMillionSeconds": 0,
  269. "Floor": 0,
  270. "FloorWarning": 0,
  271. "Index": 16,
  272. "Inhibit": 1,
  273. "Running_D": 100,
  274. "Running_I": 100,
  275. "Running_P": 100,
  276. "SetPoint": 0,
  277. "SetpointDownRate": 0,
  278. "SetpointUpRate": 3
  279. }
  280. ],
  281. "Index": 1
  282. },
  283. {
  284. "ChannelConfig": [
  285. {
  286. "ActiveTuneSet": 1,
  287. "Caps": 160,
  288. "CapsWarning": 155,
  289. "ChannelMode": 0,
  290. "DelayMillionSeconds": 0,
  291. "Floor": 140,
  292. "FloorWarning": 145,
  293. "Index": 1,
  294. "Inhibit": 0,
  295. "Running_D": 100,
  296. "Running_I": 100,
  297. "Running_P": 100,
  298. "SetPoint": 150,
  299. "SetpointDownRate": 0,
  300. "SetpointUpRate": 3
  301. },
  302. {
  303. "ActiveTuneSet": 1,
  304. "Caps": 160,
  305. "CapsWarning": 155,
  306. "ChannelMode": 0,
  307. "DelayMillionSeconds": 0,
  308. "Floor": 140,
  309. "FloorWarning": 145,
  310. "Index": 2,
  311. "Inhibit": 0,
  312. "Running_D": 100,
  313. "Running_I": 100,
  314. "Running_P": 100,
  315. "SetPoint": 150,
  316. "SetpointDownRate": 0,
  317. "SetpointUpRate": 3
  318. },
  319. {
  320. "ActiveTuneSet": 1,
  321. "Caps": 160,
  322. "CapsWarning": 155,
  323. "ChannelMode": 0,
  324. "DelayMillionSeconds": 0,
  325. "Floor": 140,
  326. "FloorWarning": 145,
  327. "Index": 3,
  328. "Inhibit": 0,
  329. "Running_D": 100,
  330. "Running_I": 100,
  331. "Running_P": 100,
  332. "SetPoint": 150,
  333. "SetpointDownRate": 0,
  334. "SetpointUpRate": 3
  335. },
  336. {
  337. "ActiveTuneSet": 1,
  338. "Caps": 160,
  339. "CapsWarning": 155,
  340. "ChannelMode": 0,
  341. "DelayMillionSeconds": 0,
  342. "Floor": 140,
  343. "FloorWarning": 145,
  344. "Index": 4,
  345. "Inhibit": 0,
  346. "Running_D": 100,
  347. "Running_I": 100,
  348. "Running_P": 100,
  349. "SetPoint": 150,
  350. "SetpointDownRate": 0,
  351. "SetpointUpRate": 3
  352. },
  353. {
  354. "ActiveTuneSet": 1,
  355. "Caps": 160,
  356. "CapsWarning": 155,
  357. "ChannelMode": 0,
  358. "DelayMillionSeconds": 0,
  359. "Floor": 140,
  360. "FloorWarning": 145,
  361. "Index": 5,
  362. "Inhibit": 0,
  363. "Running_D": 100,
  364. "Running_I": 100,
  365. "Running_P": 100,
  366. "SetPoint": 150,
  367. "SetpointDownRate": 0,
  368. "SetpointUpRate": 3
  369. },
  370. {
  371. "ActiveTuneSet": 1,
  372. "Caps": 130,
  373. "CapsWarning": 125,
  374. "ChannelMode": 0,
  375. "DelayMillionSeconds": 0,
  376. "Floor": 110,
  377. "FloorWarning": 115,
  378. "Index": 6,
  379. "Inhibit": 0,
  380. "Running_D": 100,
  381. "Running_I": 100,
  382. "Running_P": 100,
  383. "SetPoint": 120.00001,
  384. "SetpointDownRate": 0,
  385. "SetpointUpRate": 3
  386. },
  387. {
  388. "ActiveTuneSet": 1,
  389. "Caps": 160,
  390. "CapsWarning": 155,
  391. "ChannelMode": 0,
  392. "DelayMillionSeconds": 0,
  393. "Floor": 140,
  394. "FloorWarning": 145,
  395. "Index": 7,
  396. "Inhibit": 0,
  397. "Running_D": 100,
  398. "Running_I": 100,
  399. "Running_P": 100,
  400. "SetPoint": 150,
  401. "SetpointDownRate": 0,
  402. "SetpointUpRate": 3
  403. },
  404. {
  405. "ActiveTuneSet": 1,
  406. "Caps": 160,
  407. "CapsWarning": 155,
  408. "ChannelMode": 0,
  409. "DelayMillionSeconds": 0,
  410. "Floor": 140,
  411. "FloorWarning": 145,
  412. "Index": 8,
  413. "Inhibit": 0,
  414. "Running_D": 100,
  415. "Running_I": 100,
  416. "Running_P": 100,
  417. "SetPoint": 150,
  418. "SetpointDownRate": 0,
  419. "SetpointUpRate": 3
  420. },
  421. {
  422. "ActiveTuneSet": 1,
  423. "Caps": 130,
  424. "CapsWarning": 125,
  425. "ChannelMode": 0,
  426. "DelayMillionSeconds": 0,
  427. "Floor": 110,
  428. "FloorWarning": 115,
  429. "Index": 9,
  430. "Inhibit": 0,
  431. "Running_D": 100,
  432. "Running_I": 100,
  433. "Running_P": 100,
  434. "SetPoint": 120.00001,
  435. "SetpointDownRate": 0,
  436. "SetpointUpRate": 3
  437. },
  438. {
  439. "ActiveTuneSet": 1,
  440. "Caps": 130,
  441. "CapsWarning": 125,
  442. "ChannelMode": 0,
  443. "DelayMillionSeconds": 0,
  444. "Floor": 110,
  445. "FloorWarning": 115,
  446. "Index": 10,
  447. "Inhibit": 0,
  448. "Running_D": 100,
  449. "Running_I": 100,
  450. "Running_P": 100,
  451. "SetPoint": 120.00001,
  452. "SetpointDownRate": 0,
  453. "SetpointUpRate": 3
  454. },
  455. {
  456. "ActiveTuneSet": 1,
  457. "Caps": 160,
  458. "CapsWarning": 155,
  459. "ChannelMode": 0,
  460. "DelayMillionSeconds": 0,
  461. "Floor": 140,
  462. "FloorWarning": 145,
  463. "Index": 11,
  464. "Inhibit": 0,
  465. "Running_D": 100,
  466. "Running_I": 100,
  467. "Running_P": 100,
  468. "SetPoint": 150,
  469. "SetpointDownRate": 0,
  470. "SetpointUpRate": 3
  471. },
  472. {
  473. "ActiveTuneSet": 1,
  474. "Caps": 160,
  475. "CapsWarning": 155,
  476. "ChannelMode": 0,
  477. "DelayMillionSeconds": 0,
  478. "Floor": 140,
  479. "FloorWarning": 145,
  480. "Index": 12,
  481. "Inhibit": 0,
  482. "Running_D": 100,
  483. "Running_I": 100,
  484. "Running_P": 100,
  485. "SetPoint": 150,
  486. "SetpointDownRate": 0,
  487. "SetpointUpRate": 3
  488. },
  489. {
  490. "ActiveTuneSet": 1,
  491. "Caps": 160,
  492. "CapsWarning": 155,
  493. "ChannelMode": 0,
  494. "DelayMillionSeconds": 0,
  495. "Floor": 140,
  496. "FloorWarning": 145,
  497. "Index": 13,
  498. "Inhibit": 0,
  499. "Running_D": 100,
  500. "Running_I": 100,
  501. "Running_P": 100,
  502. "SetPoint": 150,
  503. "SetpointDownRate": 0,
  504. "SetpointUpRate": 3
  505. },
  506. {
  507. "ActiveTuneSet": 1,
  508. "Caps": 160,
  509. "CapsWarning": 155,
  510. "ChannelMode": 0,
  511. "DelayMillionSeconds": 0,
  512. "Floor": 140,
  513. "FloorWarning": 145,
  514. "Index": 14,
  515. "Inhibit": 0,
  516. "Running_D": 100,
  517. "Running_I": 100,
  518. "Running_P": 100,
  519. "SetPoint": 150,
  520. "SetpointDownRate": 0,
  521. "SetpointUpRate": 3
  522. },
  523. {
  524. "ActiveTuneSet": 1,
  525. "Caps": 160,
  526. "CapsWarning": 155,
  527. "ChannelMode": 0,
  528. "DelayMillionSeconds": 0,
  529. "Floor": 140,
  530. "FloorWarning": 145,
  531. "Index": 15,
  532. "Inhibit": 0,
  533. "Running_D": 100,
  534. "Running_I": 100,
  535. "Running_P": 100,
  536. "SetPoint": 150,
  537. "SetpointDownRate": 0,
  538. "SetpointUpRate": 3
  539. },
  540. {
  541. "ActiveTuneSet": 1,
  542. "Caps": 10,
  543. "CapsWarning": 5,
  544. "ChannelMode": 2,
  545. "DelayMillionSeconds": 0,
  546. "Floor": 0,
  547. "FloorWarning": 0,
  548. "Index": 16,
  549. "Inhibit": 1,
  550. "Running_D": 100,
  551. "Running_I": 100,
  552. "Running_P": 100,
  553. "SetPoint": 0,
  554. "SetpointDownRate": 0,
  555. "SetpointUpRate": 3
  556. }
  557. ],
  558. "Index": 2
  559. },
  560. {
  561. "ChannelConfig": [
  562. {
  563. "ActiveTuneSet": 1,
  564. "Caps": 145,
  565. "CapsWarning": 140,
  566. "ChannelMode": 0,
  567. "DelayMillionSeconds": 0,
  568. "Floor": 125,
  569. "FloorWarning": 130,
  570. "Index": 1,
  571. "Inhibit": 0,
  572. "Running_D": 100,
  573. "Running_I": 100,
  574. "Running_P": 100,
  575. "SetPoint": 135,
  576. "SetpointDownRate": 0,
  577. "SetpointUpRate": 3
  578. },
  579. {
  580. "ActiveTuneSet": 1,
  581. "Caps": 160,
  582. "CapsWarning": 155,
  583. "ChannelMode": 0,
  584. "DelayMillionSeconds": 0,
  585. "Floor": 140,
  586. "FloorWarning": 145,
  587. "Index": 2,
  588. "Inhibit": 0,
  589. "Running_D": 100,
  590. "Running_I": 100,
  591. "Running_P": 100,
  592. "SetPoint": 150,
  593. "SetpointDownRate": 0,
  594. "SetpointUpRate": 3
  595. },
  596. {
  597. "ActiveTuneSet": 1,
  598. "Caps": 160,
  599. "CapsWarning": 155,
  600. "ChannelMode": 0,
  601. "DelayMillionSeconds": 0,
  602. "Floor": 140,
  603. "FloorWarning": 145,
  604. "Index": 3,
  605. "Inhibit": 0,
  606. "Running_D": 100,
  607. "Running_I": 100,
  608. "Running_P": 100,
  609. "SetPoint": 150,
  610. "SetpointDownRate": 0,
  611. "SetpointUpRate": 3
  612. },
  613. {
  614. "ActiveTuneSet": 1,
  615. "Caps": 160,
  616. "CapsWarning": 155,
  617. "ChannelMode": 0,
  618. "DelayMillionSeconds": 0,
  619. "Floor": 140,
  620. "FloorWarning": 145,
  621. "Index": 4,
  622. "Inhibit": 0,
  623. "Running_D": 100,
  624. "Running_I": 100,
  625. "Running_P": 100,
  626. "SetPoint": 150,
  627. "SetpointDownRate": 0,
  628. "SetpointUpRate": 3
  629. },
  630. {
  631. "ActiveTuneSet": 1,
  632. "Caps": 160,
  633. "CapsWarning": 155,
  634. "ChannelMode": 0,
  635. "DelayMillionSeconds": 0,
  636. "Floor": 140,
  637. "FloorWarning": 145,
  638. "Index": 5,
  639. "Inhibit": 0,
  640. "Running_D": 100,
  641. "Running_I": 100,
  642. "Running_P": 100,
  643. "SetPoint": 150,
  644. "SetpointDownRate": 0,
  645. "SetpointUpRate": 3
  646. },
  647. {
  648. "ActiveTuneSet": 1,
  649. "Caps": 160,
  650. "CapsWarning": 155,
  651. "ChannelMode": 0,
  652. "DelayMillionSeconds": 0,
  653. "Floor": 140,
  654. "FloorWarning": 145,
  655. "Index": 6,
  656. "Inhibit": 0,
  657. "Running_D": 100,
  658. "Running_I": 100,
  659. "Running_P": 100,
  660. "SetPoint": 150,
  661. "SetpointDownRate": 0,
  662. "SetpointUpRate": 3
  663. },
  664. {
  665. "ActiveTuneSet": 1,
  666. "Caps": 160,
  667. "CapsWarning": 155,
  668. "ChannelMode": 0,
  669. "DelayMillionSeconds": 0,
  670. "Floor": 140,
  671. "FloorWarning": 145,
  672. "Index": 7,
  673. "Inhibit": 0,
  674. "Running_D": 100,
  675. "Running_I": 100,
  676. "Running_P": 100,
  677. "SetPoint": 150,
  678. "SetpointDownRate": 0,
  679. "SetpointUpRate": 3
  680. },
  681. {
  682. "ActiveTuneSet": 1,
  683. "Caps": 160,
  684. "CapsWarning": 155,
  685. "ChannelMode": 0,
  686. "DelayMillionSeconds": 0,
  687. "Floor": 140,
  688. "FloorWarning": 145,
  689. "Index": 8,
  690. "Inhibit": 0,
  691. "Running_D": 100,
  692. "Running_I": 100,
  693. "Running_P": 100,
  694. "SetPoint": 150,
  695. "SetpointDownRate": 0,
  696. "SetpointUpRate": 3
  697. },
  698. {
  699. "ActiveTuneSet": 1,
  700. "Caps": 160,
  701. "CapsWarning": 155,
  702. "ChannelMode": 0,
  703. "DelayMillionSeconds": 0,
  704. "Floor": 140,
  705. "FloorWarning": 145,
  706. "Index": 9,
  707. "Inhibit": 0,
  708. "Running_D": 100,
  709. "Running_I": 100,
  710. "Running_P": 100,
  711. "SetPoint": 150,
  712. "SetpointDownRate": 0,
  713. "SetpointUpRate": 3
  714. },
  715. {
  716. "ActiveTuneSet": 1,
  717. "Caps": 130,
  718. "CapsWarning": 125,
  719. "ChannelMode": 0,
  720. "DelayMillionSeconds": 0,
  721. "Floor": 110,
  722. "FloorWarning": 115,
  723. "Index": 10,
  724. "Inhibit": 0,
  725. "Running_D": 100,
  726. "Running_I": 100,
  727. "Running_P": 100,
  728. "SetPoint": 120.00001,
  729. "SetpointDownRate": 0,
  730. "SetpointUpRate": 3
  731. },
  732. {
  733. "ActiveTuneSet": 1,
  734. "Caps": 105,
  735. "CapsWarning": 100,
  736. "ChannelMode": 0,
  737. "DelayMillionSeconds": 0,
  738. "Floor": 85,
  739. "FloorWarning": 90,
  740. "Index": 11,
  741. "Inhibit": 0,
  742. "Running_D": 100,
  743. "Running_I": 100,
  744. "Running_P": 100,
  745. "SetPoint": 95,
  746. "SetpointDownRate": 0,
  747. "SetpointUpRate": 3
  748. },
  749. {
  750. "ActiveTuneSet": 1,
  751. "Caps": 145,
  752. "CapsWarning": 140,
  753. "ChannelMode": 0,
  754. "DelayMillionSeconds": 0,
  755. "Floor": 125,
  756. "FloorWarning": 130,
  757. "Index": 12,
  758. "Inhibit": 0,
  759. "Running_D": 100,
  760. "Running_I": 100,
  761. "Running_P": 100,
  762. "SetPoint": 135,
  763. "SetpointDownRate": 0,
  764. "SetpointUpRate": 3
  765. },
  766. {
  767. "ActiveTuneSet": 1,
  768. "Caps": 160,
  769. "CapsWarning": 155,
  770. "ChannelMode": 0,
  771. "DelayMillionSeconds": 0,
  772. "Floor": 140,
  773. "FloorWarning": 145,
  774. "Index": 13,
  775. "Inhibit": 0,
  776. "Running_D": 100,
  777. "Running_I": 100,
  778. "Running_P": 100,
  779. "SetPoint": 150,
  780. "SetpointDownRate": 0,
  781. "SetpointUpRate": 3
  782. },
  783. {
  784. "ActiveTuneSet": 1,
  785. "Caps": 105,
  786. "CapsWarning": 100,
  787. "ChannelMode": 0,
  788. "DelayMillionSeconds": 0,
  789. "Floor": 85,
  790. "FloorWarning": 90,
  791. "Index": 14,
  792. "Inhibit": 0,
  793. "Running_D": 100,
  794. "Running_I": 100,
  795. "Running_P": 100,
  796. "SetPoint": 95,
  797. "SetpointDownRate": 0,
  798. "SetpointUpRate": 3
  799. },
  800. {
  801. "ActiveTuneSet": 1,
  802. "Caps": 160,
  803. "CapsWarning": 155,
  804. "ChannelMode": 0,
  805. "DelayMillionSeconds": 0,
  806. "Floor": 140,
  807. "FloorWarning": 145,
  808. "Index": 15,
  809. "Inhibit": 0,
  810. "Running_D": 100,
  811. "Running_I": 100,
  812. "Running_P": 100,
  813. "SetPoint": 150,
  814. "SetpointDownRate": 0,
  815. "SetpointUpRate": 3
  816. },
  817. {
  818. "ActiveTuneSet": 1,
  819. "Caps": 145,
  820. "CapsWarning": 140,
  821. "ChannelMode": 0,
  822. "DelayMillionSeconds": 0,
  823. "Floor": 125,
  824. "FloorWarning": 130,
  825. "Index": 16,
  826. "Inhibit": 0,
  827. "Running_D": 100,
  828. "Running_I": 100,
  829. "Running_P": 100,
  830. "SetPoint": 135,
  831. "SetpointDownRate": 0,
  832. "SetpointUpRate": 3
  833. }
  834. ],
  835. "Index": 3
  836. },
  837. {
  838. "ChannelConfig": [
  839. {
  840. "ActiveTuneSet": 1,
  841. "Caps": 190,
  842. "CapsWarning": 185,
  843. "ChannelMode": 0,
  844. "DelayMillionSeconds": 0,
  845. "Floor": 170,
  846. "FloorWarning": 175,
  847. "Index": 1,
  848. "Inhibit": 0,
  849. "Running_D": 100,
  850. "Running_I": 100,
  851. "Running_P": 100,
  852. "SetPoint": 180,
  853. "SetpointDownRate": 0,
  854. "SetpointUpRate": 3
  855. },
  856. {
  857. "ActiveTuneSet": 1,
  858. "Caps": 90,
  859. "CapsWarning": 85,
  860. "ChannelMode": 0,
  861. "DelayMillionSeconds": 0,
  862. "Floor": 70,
  863. "FloorWarning": 75,
  864. "Index": 2,
  865. "Inhibit": 0,
  866. "Running_D": 100,
  867. "Running_I": 100,
  868. "Running_P": 100,
  869. "SetPoint": 80,
  870. "SetpointDownRate": 0,
  871. "SetpointUpRate": 3
  872. },
  873. {
  874. "ActiveTuneSet": 1,
  875. "Caps": 10,
  876. "CapsWarning": 5,
  877. "ChannelMode": 0,
  878. "DelayMillionSeconds": 0,
  879. "Floor": 0,
  880. "FloorWarning": 0,
  881. "Index": 3,
  882. "Inhibit": 0,
  883. "Running_D": 100,
  884. "Running_I": 100,
  885. "Running_P": 100,
  886. "SetPoint": 0,
  887. "SetpointDownRate": 0,
  888. "SetpointUpRate": 3
  889. },
  890. {
  891. "ActiveTuneSet": 1,
  892. "Caps": 10,
  893. "CapsWarning": 5,
  894. "ChannelMode": 2,
  895. "DelayMillionSeconds": 0,
  896. "Floor": 0,
  897. "FloorWarning": 0,
  898. "Index": 4,
  899. "Inhibit": 1,
  900. "Running_D": 100,
  901. "Running_I": 100,
  902. "Running_P": 100,
  903. "SetPoint": 0,
  904. "SetpointDownRate": 0,
  905. "SetpointUpRate": 3
  906. },
  907. {
  908. "ActiveTuneSet": 1,
  909. "Caps": 190,
  910. "CapsWarning": 185,
  911. "ChannelMode": 0,
  912. "DelayMillionSeconds": 0,
  913. "Floor": 170,
  914. "FloorWarning": 175,
  915. "Index": 5,
  916. "Inhibit": 0,
  917. "Running_D": 100,
  918. "Running_I": 100,
  919. "Running_P": 100,
  920. "SetPoint": 180,
  921. "SetpointDownRate": 0,
  922. "SetpointUpRate": 3
  923. },
  924. {
  925. "ActiveTuneSet": 1,
  926. "Caps": 190,
  927. "CapsWarning": 185,
  928. "ChannelMode": 0,
  929. "DelayMillionSeconds": 0,
  930. "Floor": 170,
  931. "FloorWarning": 175,
  932. "Index": 6,
  933. "Inhibit": 0,
  934. "Running_D": 100,
  935. "Running_I": 100,
  936. "Running_P": 100,
  937. "SetPoint": 180,
  938. "SetpointDownRate": 0,
  939. "SetpointUpRate": 3
  940. },
  941. {
  942. "ActiveTuneSet": 1,
  943. "Caps": 190,
  944. "CapsWarning": 185,
  945. "ChannelMode": 0,
  946. "DelayMillionSeconds": 0,
  947. "Floor": 170,
  948. "FloorWarning": 175,
  949. "Index": 7,
  950. "Inhibit": 0,
  951. "Running_D": 100,
  952. "Running_I": 100,
  953. "Running_P": 100,
  954. "SetPoint": 180,
  955. "SetpointDownRate": 0,
  956. "SetpointUpRate": 3
  957. },
  958. {
  959. "ActiveTuneSet": 1,
  960. "Caps": 190,
  961. "CapsWarning": 185,
  962. "ChannelMode": 0,
  963. "DelayMillionSeconds": 0,
  964. "Floor": 170,
  965. "FloorWarning": 175,
  966. "Index": 8,
  967. "Inhibit": 0,
  968. "Running_D": 100,
  969. "Running_I": 100,
  970. "Running_P": 100,
  971. "SetPoint": 180,
  972. "SetpointDownRate": 0,
  973. "SetpointUpRate": 3
  974. },
  975. {
  976. "ActiveTuneSet": 1,
  977. "Caps": 190,
  978. "CapsWarning": 185,
  979. "ChannelMode": 0,
  980. "DelayMillionSeconds": 0,
  981. "Floor": 170,
  982. "FloorWarning": 175,
  983. "Index": 9,
  984. "Inhibit": 0,
  985. "Running_D": 100,
  986. "Running_I": 100,
  987. "Running_P": 100,
  988. "SetPoint": 180,
  989. "SetpointDownRate": 0,
  990. "SetpointUpRate": 3
  991. },
  992. {
  993. "ActiveTuneSet": 1,
  994. "Caps": 190,
  995. "CapsWarning": 185,
  996. "ChannelMode": 0,
  997. "DelayMillionSeconds": 0,
  998. "Floor": 170,
  999. "FloorWarning": 175,
  1000. "Index": 10,
  1001. "Inhibit": 0,
  1002. "Running_D": 100,
  1003. "Running_I": 100,
  1004. "Running_P": 100,
  1005. "SetPoint": 180,
  1006. "SetpointDownRate": 0,
  1007. "SetpointUpRate": 3
  1008. },
  1009. {
  1010. "ActiveTuneSet": 1,
  1011. "Caps": 190,
  1012. "CapsWarning": 185,
  1013. "ChannelMode": 0,
  1014. "DelayMillionSeconds": 0,
  1015. "Floor": 170,
  1016. "FloorWarning": 175,
  1017. "Index": 11,
  1018. "Inhibit": 0,
  1019. "Running_D": 100,
  1020. "Running_I": 100,
  1021. "Running_P": 100,
  1022. "SetPoint": 180,
  1023. "SetpointDownRate": 0,
  1024. "SetpointUpRate": 3
  1025. },
  1026. {
  1027. "ActiveTuneSet": 1,
  1028. "Caps": 190,
  1029. "CapsWarning": 185,
  1030. "ChannelMode": 0,
  1031. "DelayMillionSeconds": 0,
  1032. "Floor": 170,
  1033. "FloorWarning": 175,
  1034. "Index": 12,
  1035. "Inhibit": 0,
  1036. "Running_D": 100,
  1037. "Running_I": 100,
  1038. "Running_P": 100,
  1039. "SetPoint": 180,
  1040. "SetpointDownRate": 0,
  1041. "SetpointUpRate": 3
  1042. },
  1043. {
  1044. "ActiveTuneSet": 1,
  1045. "Caps": 10,
  1046. "CapsWarning": 5,
  1047. "ChannelMode": 2,
  1048. "DelayMillionSeconds": 0,
  1049. "Floor": 0,
  1050. "FloorWarning": 0,
  1051. "Index": 13,
  1052. "Inhibit": 1,
  1053. "Running_D": 100,
  1054. "Running_I": 100,
  1055. "Running_P": 100,
  1056. "SetPoint": 0,
  1057. "SetpointDownRate": 0,
  1058. "SetpointUpRate": 3
  1059. },
  1060. {
  1061. "ActiveTuneSet": 1,
  1062. "Caps": 10,
  1063. "CapsWarning": 5,
  1064. "ChannelMode": 2,
  1065. "DelayMillionSeconds": 0,
  1066. "Floor": 0,
  1067. "FloorWarning": 0,
  1068. "Index": 14,
  1069. "Inhibit": 1,
  1070. "Running_D": 100,
  1071. "Running_I": 100,
  1072. "Running_P": 100,
  1073. "SetPoint": 0,
  1074. "SetpointDownRate": 0,
  1075. "SetpointUpRate": 3
  1076. },
  1077. {
  1078. "ActiveTuneSet": 1,
  1079. "Caps": 10,
  1080. "CapsWarning": 5,
  1081. "ChannelMode": 2,
  1082. "DelayMillionSeconds": 0,
  1083. "Floor": 0,
  1084. "FloorWarning": 0,
  1085. "Index": 15,
  1086. "Inhibit": 1,
  1087. "Running_D": 100,
  1088. "Running_I": 100,
  1089. "Running_P": 100,
  1090. "SetPoint": 0,
  1091. "SetpointDownRate": 0,
  1092. "SetpointUpRate": 3
  1093. },
  1094. {
  1095. "ActiveTuneSet": 1,
  1096. "Caps": 10,
  1097. "CapsWarning": 5,
  1098. "ChannelMode": 2,
  1099. "DelayMillionSeconds": 0,
  1100. "Floor": 0,
  1101. "FloorWarning": 0,
  1102. "Index": 16,
  1103. "Inhibit": 1,
  1104. "Running_D": 100,
  1105. "Running_I": 100,
  1106. "Running_P": 100,
  1107. "SetPoint": 0,
  1108. "SetpointDownRate": 0,
  1109. "SetpointUpRate": 3
  1110. }
  1111. ],
  1112. "Index": 4
  1113. },
  1114. {
  1115. "ChannelConfig": [
  1116. {
  1117. "ActiveTuneSet": 1,
  1118. "Caps": 105,
  1119. "CapsWarning": 100,
  1120. "ChannelMode": 0,
  1121. "DelayMillionSeconds": 0,
  1122. "Floor": 85,
  1123. "FloorWarning": 90,
  1124. "Index": 1,
  1125. "Inhibit": 0,
  1126. "Running_D": 100,
  1127. "Running_I": 100,
  1128. "Running_P": 100,
  1129. "SetPoint": 95,
  1130. "SetpointDownRate": 0,
  1131. "SetpointUpRate": 3
  1132. },
  1133. {
  1134. "ActiveTuneSet": 1,
  1135. "Caps": 105,
  1136. "CapsWarning": 100,
  1137. "ChannelMode": 0,
  1138. "DelayMillionSeconds": 0,
  1139. "Floor": 85,
  1140. "FloorWarning": 90,
  1141. "Index": 2,
  1142. "Inhibit": 0,
  1143. "Running_D": 100,
  1144. "Running_I": 100,
  1145. "Running_P": 100,
  1146. "SetPoint": 95,
  1147. "SetpointDownRate": 0,
  1148. "SetpointUpRate": 3
  1149. },
  1150. {
  1151. "ActiveTuneSet": 1,
  1152. "Caps": 105,
  1153. "CapsWarning": 100,
  1154. "ChannelMode": 0,
  1155. "DelayMillionSeconds": 0,
  1156. "Floor": 85,
  1157. "FloorWarning": 90,
  1158. "Index": 3,
  1159. "Inhibit": 0,
  1160. "Running_D": 100,
  1161. "Running_I": 100,
  1162. "Running_P": 100,
  1163. "SetPoint": 95,
  1164. "SetpointDownRate": 0,
  1165. "SetpointUpRate": 3
  1166. },
  1167. {
  1168. "ActiveTuneSet": 1,
  1169. "Caps": 115,
  1170. "CapsWarning": 110,
  1171. "ChannelMode": 0,
  1172. "DelayMillionSeconds": 0,
  1173. "Floor": 95,
  1174. "FloorWarning": 100,
  1175. "Index": 4,
  1176. "Inhibit": 0,
  1177. "Running_D": 100,
  1178. "Running_I": 100,
  1179. "Running_P": 100,
  1180. "SetPoint": 104.99999,
  1181. "SetpointDownRate": 0,
  1182. "SetpointUpRate": 3
  1183. },
  1184. {
  1185. "ActiveTuneSet": 1,
  1186. "Caps": 10,
  1187. "CapsWarning": 5,
  1188. "ChannelMode": 2,
  1189. "DelayMillionSeconds": 0,
  1190. "Floor": 0,
  1191. "FloorWarning": 0,
  1192. "Index": 5,
  1193. "Inhibit": 1,
  1194. "Running_D": 100,
  1195. "Running_I": 100,
  1196. "Running_P": 100,
  1197. "SetPoint": 0,
  1198. "SetpointDownRate": 0,
  1199. "SetpointUpRate": 3
  1200. },
  1201. {
  1202. "ActiveTuneSet": 1,
  1203. "Caps": 10,
  1204. "CapsWarning": 5,
  1205. "ChannelMode": 2,
  1206. "DelayMillionSeconds": 0,
  1207. "Floor": 0,
  1208. "FloorWarning": 0,
  1209. "Index": 6,
  1210. "Inhibit": 1,
  1211. "Running_D": 100,
  1212. "Running_I": 100,
  1213. "Running_P": 100,
  1214. "SetPoint": 0,
  1215. "SetpointDownRate": 0,
  1216. "SetpointUpRate": 3
  1217. },
  1218. {
  1219. "ActiveTuneSet": 1,
  1220. "Caps": 10,
  1221. "CapsWarning": 5,
  1222. "ChannelMode": 2,
  1223. "DelayMillionSeconds": 0,
  1224. "Floor": 0,
  1225. "FloorWarning": 0,
  1226. "Index": 7,
  1227. "Inhibit": 1,
  1228. "Running_D": 100,
  1229. "Running_I": 100,
  1230. "Running_P": 100,
  1231. "SetPoint": 0,
  1232. "SetpointDownRate": 0,
  1233. "SetpointUpRate": 3
  1234. },
  1235. {
  1236. "ActiveTuneSet": 1,
  1237. "Caps": 10,
  1238. "CapsWarning": 5,
  1239. "ChannelMode": 2,
  1240. "DelayMillionSeconds": 0,
  1241. "Floor": 0,
  1242. "FloorWarning": 0,
  1243. "Index": 8,
  1244. "Inhibit": 1,
  1245. "Running_D": 100,
  1246. "Running_I": 100,
  1247. "Running_P": 100,
  1248. "SetPoint": 0,
  1249. "SetpointDownRate": 0,
  1250. "SetpointUpRate": 3
  1251. },
  1252. {
  1253. "ActiveTuneSet": 1,
  1254. "Caps": 10,
  1255. "CapsWarning": 5,
  1256. "ChannelMode": 2,
  1257. "DelayMillionSeconds": 0,
  1258. "Floor": 0,
  1259. "FloorWarning": 0,
  1260. "Index": 9,
  1261. "Inhibit": 1,
  1262. "Running_D": 100,
  1263. "Running_I": 100,
  1264. "Running_P": 100,
  1265. "SetPoint": 0,
  1266. "SetpointDownRate": 0,
  1267. "SetpointUpRate": 3
  1268. },
  1269. {
  1270. "ActiveTuneSet": 1,
  1271. "Caps": 10,
  1272. "CapsWarning": 5,
  1273. "ChannelMode": 2,
  1274. "DelayMillionSeconds": 0,
  1275. "Floor": 0,
  1276. "FloorWarning": 0,
  1277. "Index": 10,
  1278. "Inhibit": 1,
  1279. "Running_D": 100,
  1280. "Running_I": 100,
  1281. "Running_P": 100,
  1282. "SetPoint": 0,
  1283. "SetpointDownRate": 0,
  1284. "SetpointUpRate": 3
  1285. },
  1286. {
  1287. "ActiveTuneSet": 1,
  1288. "Caps": 10,
  1289. "CapsWarning": 5,
  1290. "ChannelMode": 2,
  1291. "DelayMillionSeconds": 0,
  1292. "Floor": 0,
  1293. "FloorWarning": 0,
  1294. "Index": 11,
  1295. "Inhibit": 1,
  1296. "Running_D": 100,
  1297. "Running_I": 100,
  1298. "Running_P": 100,
  1299. "SetPoint": 0,
  1300. "SetpointDownRate": 0,
  1301. "SetpointUpRate": 3
  1302. },
  1303. {
  1304. "ActiveTuneSet": 1,
  1305. "Caps": 10,
  1306. "CapsWarning": 5,
  1307. "ChannelMode": 2,
  1308. "DelayMillionSeconds": 0,
  1309. "Floor": 0,
  1310. "FloorWarning": 0,
  1311. "Index": 12,
  1312. "Inhibit": 1,
  1313. "Running_D": 100,
  1314. "Running_I": 100,
  1315. "Running_P": 100,
  1316. "SetPoint": 0,
  1317. "SetpointDownRate": 0,
  1318. "SetpointUpRate": 3
  1319. },
  1320. {
  1321. "ActiveTuneSet": 1,
  1322. "Caps": 10,
  1323. "CapsWarning": 5,
  1324. "ChannelMode": 2,
  1325. "DelayMillionSeconds": 0,
  1326. "Floor": 0,
  1327. "FloorWarning": 0,
  1328. "Index": 13,
  1329. "Inhibit": 1,
  1330. "Running_D": 100,
  1331. "Running_I": 100,
  1332. "Running_P": 100,
  1333. "SetPoint": 0,
  1334. "SetpointDownRate": 0,
  1335. "SetpointUpRate": 3
  1336. },
  1337. {
  1338. "ActiveTuneSet": 1,
  1339. "Caps": 10,
  1340. "CapsWarning": 5,
  1341. "ChannelMode": 2,
  1342. "DelayMillionSeconds": 0,
  1343. "Floor": 0,
  1344. "FloorWarning": 0,
  1345. "Index": 14,
  1346. "Inhibit": 1,
  1347. "Running_D": 100,
  1348. "Running_I": 100,
  1349. "Running_P": 100,
  1350. "SetPoint": 0,
  1351. "SetpointDownRate": 0,
  1352. "SetpointUpRate": 3
  1353. },
  1354. {
  1355. "ActiveTuneSet": 1,
  1356. "Caps": 10,
  1357. "CapsWarning": 5,
  1358. "ChannelMode": 2,
  1359. "DelayMillionSeconds": 0,
  1360. "Floor": 0,
  1361. "FloorWarning": 0,
  1362. "Index": 15,
  1363. "Inhibit": 1,
  1364. "Running_D": 100,
  1365. "Running_I": 100,
  1366. "Running_P": 100,
  1367. "SetPoint": 0,
  1368. "SetpointDownRate": 0,
  1369. "SetpointUpRate": 3
  1370. },
  1371. {
  1372. "ActiveTuneSet": 1,
  1373. "Caps": 10,
  1374. "CapsWarning": 5,
  1375. "ChannelMode": 2,
  1376. "DelayMillionSeconds": 0,
  1377. "Floor": 0,
  1378. "FloorWarning": 0,
  1379. "Index": 16,
  1380. "Inhibit": 1,
  1381. "Running_D": 100,
  1382. "Running_I": 100,
  1383. "Running_P": 100,
  1384. "SetPoint": 0,
  1385. "SetpointDownRate": 0,
  1386. "SetpointUpRate": 3
  1387. }
  1388. ],
  1389. "Index": 5
  1390. },
  1391. {
  1392. "ChannelConfig": [
  1393. {
  1394. "ActiveTuneSet": 1,
  1395. "Caps": 200,
  1396. "CapsWarning": 195,
  1397. "ChannelMode": 0,
  1398. "DelayMillionSeconds": 0,
  1399. "Floor": 180,
  1400. "FloorWarning": 185,
  1401. "Index": 1,
  1402. "Inhibit": 0,
  1403. "Running_D": 100,
  1404. "Running_I": 100,
  1405. "Running_P": 100,
  1406. "SetPoint": 190,
  1407. "SetpointDownRate": 0,
  1408. "SetpointUpRate": 3
  1409. },
  1410. {
  1411. "ActiveTuneSet": 1,
  1412. "Caps": 200,
  1413. "CapsWarning": 195,
  1414. "ChannelMode": 0,
  1415. "DelayMillionSeconds": 0,
  1416. "Floor": 180,
  1417. "FloorWarning": 185,
  1418. "Index": 2,
  1419. "Inhibit": 0,
  1420. "Running_D": 100,
  1421. "Running_I": 100,
  1422. "Running_P": 100,
  1423. "SetPoint": 190,
  1424. "SetpointDownRate": 0,
  1425. "SetpointUpRate": 3
  1426. },
  1427. {
  1428. "ActiveTuneSet": 1,
  1429. "Caps": 10,
  1430. "CapsWarning": 5,
  1431. "ChannelMode": 2,
  1432. "DelayMillionSeconds": 0,
  1433. "Floor": 0,
  1434. "FloorWarning": 0,
  1435. "Index": 3,
  1436. "Inhibit": 1,
  1437. "Running_D": 100,
  1438. "Running_I": 100,
  1439. "Running_P": 100,
  1440. "SetPoint": 0,
  1441. "SetpointDownRate": 0,
  1442. "SetpointUpRate": 3
  1443. },
  1444. {
  1445. "ActiveTuneSet": 1,
  1446. "Caps": 10,
  1447. "CapsWarning": 5,
  1448. "ChannelMode": 2,
  1449. "DelayMillionSeconds": 0,
  1450. "Floor": 0,
  1451. "FloorWarning": 0,
  1452. "Index": 4,
  1453. "Inhibit": 1,
  1454. "Running_D": 100,
  1455. "Running_I": 100,
  1456. "Running_P": 100,
  1457. "SetPoint": 0,
  1458. "SetpointDownRate": 0,
  1459. "SetpointUpRate": 3
  1460. },
  1461. {
  1462. "ActiveTuneSet": 1,
  1463. "Caps": 190,
  1464. "CapsWarning": 185,
  1465. "ChannelMode": 0,
  1466. "DelayMillionSeconds": 0,
  1467. "Floor": 170,
  1468. "FloorWarning": 175,
  1469. "Index": 5,
  1470. "Inhibit": 0,
  1471. "Running_D": 100,
  1472. "Running_I": 100,
  1473. "Running_P": 100,
  1474. "SetPoint": 180,
  1475. "SetpointDownRate": 0,
  1476. "SetpointUpRate": 3
  1477. },
  1478. {
  1479. "ActiveTuneSet": 1,
  1480. "Caps": 190,
  1481. "CapsWarning": 185,
  1482. "ChannelMode": 0,
  1483. "DelayMillionSeconds": 0,
  1484. "Floor": 170,
  1485. "FloorWarning": 175,
  1486. "Index": 6,
  1487. "Inhibit": 0,
  1488. "Running_D": 100,
  1489. "Running_I": 100,
  1490. "Running_P": 100,
  1491. "SetPoint": 180,
  1492. "SetpointDownRate": 0,
  1493. "SetpointUpRate": 3
  1494. },
  1495. {
  1496. "ActiveTuneSet": 1,
  1497. "Caps": 10,
  1498. "CapsWarning": 5,
  1499. "ChannelMode": 2,
  1500. "DelayMillionSeconds": 0,
  1501. "Floor": 0,
  1502. "FloorWarning": 0,
  1503. "Index": 7,
  1504. "Inhibit": 1,
  1505. "Running_D": 100,
  1506. "Running_I": 100,
  1507. "Running_P": 100,
  1508. "SetPoint": 0,
  1509. "SetpointDownRate": 0,
  1510. "SetpointUpRate": 3
  1511. },
  1512. {
  1513. "ActiveTuneSet": 1,
  1514. "Caps": 10,
  1515. "CapsWarning": 5,
  1516. "ChannelMode": 2,
  1517. "DelayMillionSeconds": 0,
  1518. "Floor": 0,
  1519. "FloorWarning": 0,
  1520. "Index": 8,
  1521. "Inhibit": 1,
  1522. "Running_D": 100,
  1523. "Running_I": 100,
  1524. "Running_P": 100,
  1525. "SetPoint": 0,
  1526. "SetpointDownRate": 0,
  1527. "SetpointUpRate": 3
  1528. },
  1529. {
  1530. "ActiveTuneSet": 1,
  1531. "Caps": 190,
  1532. "CapsWarning": 185,
  1533. "ChannelMode": 0,
  1534. "DelayMillionSeconds": 0,
  1535. "Floor": 170,
  1536. "FloorWarning": 175,
  1537. "Index": 9,
  1538. "Inhibit": 0,
  1539. "Running_D": 100,
  1540. "Running_I": 100,
  1541. "Running_P": 100,
  1542. "SetPoint": 180,
  1543. "SetpointDownRate": 0,
  1544. "SetpointUpRate": 3
  1545. },
  1546. {
  1547. "ActiveTuneSet": 1,
  1548. "Caps": 190,
  1549. "CapsWarning": 185,
  1550. "ChannelMode": 0,
  1551. "DelayMillionSeconds": 0,
  1552. "Floor": 170,
  1553. "FloorWarning": 175,
  1554. "Index": 10,
  1555. "Inhibit": 0,
  1556. "Running_D": 100,
  1557. "Running_I": 100,
  1558. "Running_P": 100,
  1559. "SetPoint": 180,
  1560. "SetpointDownRate": 0,
  1561. "SetpointUpRate": 3
  1562. },
  1563. {
  1564. "ActiveTuneSet": 1,
  1565. "Caps": 190,
  1566. "CapsWarning": 185,
  1567. "ChannelMode": 0,
  1568. "DelayMillionSeconds": 0,
  1569. "Floor": 170,
  1570. "FloorWarning": 175,
  1571. "Index": 11,
  1572. "Inhibit": 0,
  1573. "Running_D": 100,
  1574. "Running_I": 100,
  1575. "Running_P": 100,
  1576. "SetPoint": 180,
  1577. "SetpointDownRate": 0,
  1578. "SetpointUpRate": 3
  1579. },
  1580. {
  1581. "ActiveTuneSet": 1,
  1582. "Caps": 190,
  1583. "CapsWarning": 185,
  1584. "ChannelMode": 0,
  1585. "DelayMillionSeconds": 0,
  1586. "Floor": 170,
  1587. "FloorWarning": 175,
  1588. "Index": 12,
  1589. "Inhibit": 0,
  1590. "Running_D": 100,
  1591. "Running_I": 100,
  1592. "Running_P": 100,
  1593. "SetPoint": 180,
  1594. "SetpointDownRate": 0,
  1595. "SetpointUpRate": 3
  1596. },
  1597. {
  1598. "ActiveTuneSet": 1,
  1599. "Caps": 190,
  1600. "CapsWarning": 185,
  1601. "ChannelMode": 0,
  1602. "DelayMillionSeconds": 0,
  1603. "Floor": 170,
  1604. "FloorWarning": 175,
  1605. "Index": 13,
  1606. "Inhibit": 0,
  1607. "Running_D": 100,
  1608. "Running_I": 100,
  1609. "Running_P": 100,
  1610. "SetPoint": 180,
  1611. "SetpointDownRate": 0,
  1612. "SetpointUpRate": 3
  1613. },
  1614. {
  1615. "ActiveTuneSet": 1,
  1616. "Caps": 190,
  1617. "CapsWarning": 185,
  1618. "ChannelMode": 0,
  1619. "DelayMillionSeconds": 0,
  1620. "Floor": 170,
  1621. "FloorWarning": 175,
  1622. "Index": 14,
  1623. "Inhibit": 0,
  1624. "Running_D": 100,
  1625. "Running_I": 100,
  1626. "Running_P": 100,
  1627. "SetPoint": 180,
  1628. "SetpointDownRate": 0,
  1629. "SetpointUpRate": 3
  1630. },
  1631. {
  1632. "ActiveTuneSet": 1,
  1633. "Caps": 10,
  1634. "CapsWarning": 5,
  1635. "ChannelMode": 0,
  1636. "DelayMillionSeconds": 0,
  1637. "Floor": 0,
  1638. "FloorWarning": 0,
  1639. "Index": 15,
  1640. "Inhibit": 0,
  1641. "Running_D": 100,
  1642. "Running_I": 100,
  1643. "Running_P": 100,
  1644. "SetPoint": 0,
  1645. "SetpointDownRate": 0,
  1646. "SetpointUpRate": 3
  1647. },
  1648. {
  1649. "ActiveTuneSet": 1,
  1650. "Caps": 10,
  1651. "CapsWarning": 5,
  1652. "ChannelMode": 0,
  1653. "DelayMillionSeconds": 0,
  1654. "Floor": 0,
  1655. "FloorWarning": 0,
  1656. "Index": 16,
  1657. "Inhibit": 0,
  1658. "Running_D": 100,
  1659. "Running_I": 100,
  1660. "Running_P": 100,
  1661. "SetPoint": 0,
  1662. "SetpointDownRate": 0,
  1663. "SetpointUpRate": 3
  1664. }
  1665. ],
  1666. "Index": 6
  1667. },
  1668. {
  1669. "ChannelConfig": [
  1670. {
  1671. "ActiveTuneSet": 1,
  1672. "Caps": 190,
  1673. "CapsWarning": 185,
  1674. "ChannelMode": 0,
  1675. "DelayMillionSeconds": 0,
  1676. "Floor": 170,
  1677. "FloorWarning": 175,
  1678. "Index": 1,
  1679. "Inhibit": 0,
  1680. "Running_D": 100,
  1681. "Running_I": 100,
  1682. "Running_P": 100,
  1683. "SetPoint": 180,
  1684. "SetpointDownRate": 0,
  1685. "SetpointUpRate": 3
  1686. },
  1687. {
  1688. "ActiveTuneSet": 1,
  1689. "Caps": 190,
  1690. "CapsWarning": 185,
  1691. "ChannelMode": 0,
  1692. "DelayMillionSeconds": 0,
  1693. "Floor": 170,
  1694. "FloorWarning": 175,
  1695. "Index": 2,
  1696. "Inhibit": 0,
  1697. "Running_D": 100,
  1698. "Running_I": 100,
  1699. "Running_P": 100,
  1700. "SetPoint": 180,
  1701. "SetpointDownRate": 0,
  1702. "SetpointUpRate": 3
  1703. },
  1704. {
  1705. "ActiveTuneSet": 1,
  1706. "Caps": 190,
  1707. "CapsWarning": 185,
  1708. "ChannelMode": 0,
  1709. "DelayMillionSeconds": 0,
  1710. "Floor": 170,
  1711. "FloorWarning": 175,
  1712. "Index": 3,
  1713. "Inhibit": 0,
  1714. "Running_D": 100,
  1715. "Running_I": 100,
  1716. "Running_P": 100,
  1717. "SetPoint": 180,
  1718. "SetpointDownRate": 0,
  1719. "SetpointUpRate": 3
  1720. },
  1721. {
  1722. "ActiveTuneSet": 1,
  1723. "Caps": 190,
  1724. "CapsWarning": 185,
  1725. "ChannelMode": 0,
  1726. "DelayMillionSeconds": 0,
  1727. "Floor": 170,
  1728. "FloorWarning": 175,
  1729. "Index": 4,
  1730. "Inhibit": 0,
  1731. "Running_D": 100,
  1732. "Running_I": 100,
  1733. "Running_P": 100,
  1734. "SetPoint": 180,
  1735. "SetpointDownRate": 0,
  1736. "SetpointUpRate": 3
  1737. },
  1738. {
  1739. "ActiveTuneSet": 1,
  1740. "Caps": 190,
  1741. "CapsWarning": 185,
  1742. "ChannelMode": 0,
  1743. "DelayMillionSeconds": 0,
  1744. "Floor": 170,
  1745. "FloorWarning": 175,
  1746. "Index": 5,
  1747. "Inhibit": 0,
  1748. "Running_D": 100,
  1749. "Running_I": 100,
  1750. "Running_P": 100,
  1751. "SetPoint": 180,
  1752. "SetpointDownRate": 0,
  1753. "SetpointUpRate": 3
  1754. },
  1755. {
  1756. "ActiveTuneSet": 1,
  1757. "Caps": 190,
  1758. "CapsWarning": 185,
  1759. "ChannelMode": 0,
  1760. "DelayMillionSeconds": 0,
  1761. "Floor": 170,
  1762. "FloorWarning": 175,
  1763. "Index": 6,
  1764. "Inhibit": 0,
  1765. "Running_D": 100,
  1766. "Running_I": 100,
  1767. "Running_P": 100,
  1768. "SetPoint": 180,
  1769. "SetpointDownRate": 0,
  1770. "SetpointUpRate": 3
  1771. },
  1772. {
  1773. "ActiveTuneSet": 1,
  1774. "Caps": 190,
  1775. "CapsWarning": 185,
  1776. "ChannelMode": 0,
  1777. "DelayMillionSeconds": 0,
  1778. "Floor": 170,
  1779. "FloorWarning": 175,
  1780. "Index": 7,
  1781. "Inhibit": 0,
  1782. "Running_D": 100,
  1783. "Running_I": 100,
  1784. "Running_P": 100,
  1785. "SetPoint": 180,
  1786. "SetpointDownRate": 0,
  1787. "SetpointUpRate": 3
  1788. },
  1789. {
  1790. "ActiveTuneSet": 1,
  1791. "Caps": 190,
  1792. "CapsWarning": 185,
  1793. "ChannelMode": 0,
  1794. "DelayMillionSeconds": 0,
  1795. "Floor": 170,
  1796. "FloorWarning": 175,
  1797. "Index": 8,
  1798. "Inhibit": 0,
  1799. "Running_D": 100,
  1800. "Running_I": 100,
  1801. "Running_P": 100,
  1802. "SetPoint": 180,
  1803. "SetpointDownRate": 0,
  1804. "SetpointUpRate": 3
  1805. },
  1806. {
  1807. "ActiveTuneSet": 1,
  1808. "Caps": 190,
  1809. "CapsWarning": 185,
  1810. "ChannelMode": 0,
  1811. "DelayMillionSeconds": 0,
  1812. "Floor": 170,
  1813. "FloorWarning": 175,
  1814. "Index": 9,
  1815. "Inhibit": 0,
  1816. "Running_D": 100,
  1817. "Running_I": 100,
  1818. "Running_P": 100,
  1819. "SetPoint": 180,
  1820. "SetpointDownRate": 0,
  1821. "SetpointUpRate": 3
  1822. },
  1823. {
  1824. "ActiveTuneSet": 1,
  1825. "Caps": 190,
  1826. "CapsWarning": 185,
  1827. "ChannelMode": 0,
  1828. "DelayMillionSeconds": 0,
  1829. "Floor": 170,
  1830. "FloorWarning": 175,
  1831. "Index": 10,
  1832. "Inhibit": 0,
  1833. "Running_D": 100,
  1834. "Running_I": 100,
  1835. "Running_P": 100,
  1836. "SetPoint": 180,
  1837. "SetpointDownRate": 0,
  1838. "SetpointUpRate": 3
  1839. },
  1840. {
  1841. "ActiveTuneSet": 1,
  1842. "Caps": 190,
  1843. "CapsWarning": 185,
  1844. "ChannelMode": 0,
  1845. "DelayMillionSeconds": 0,
  1846. "Floor": 170,
  1847. "FloorWarning": 175,
  1848. "Index": 11,
  1849. "Inhibit": 0,
  1850. "Running_D": 100,
  1851. "Running_I": 100,
  1852. "Running_P": 100,
  1853. "SetPoint": 180,
  1854. "SetpointDownRate": 0,
  1855. "SetpointUpRate": 3
  1856. },
  1857. {
  1858. "ActiveTuneSet": 1,
  1859. "Caps": 190,
  1860. "CapsWarning": 185,
  1861. "ChannelMode": 0,
  1862. "DelayMillionSeconds": 0,
  1863. "Floor": 170,
  1864. "FloorWarning": 175,
  1865. "Index": 12,
  1866. "Inhibit": 0,
  1867. "Running_D": 100,
  1868. "Running_I": 100,
  1869. "Running_P": 100,
  1870. "SetPoint": 180,
  1871. "SetpointDownRate": 0,
  1872. "SetpointUpRate": 3
  1873. },
  1874. {
  1875. "ActiveTuneSet": 1,
  1876. "Caps": 190,
  1877. "CapsWarning": 185,
  1878. "ChannelMode": 0,
  1879. "DelayMillionSeconds": 0,
  1880. "Floor": 170,
  1881. "FloorWarning": 175,
  1882. "Index": 13,
  1883. "Inhibit": 0,
  1884. "Running_D": 100,
  1885. "Running_I": 100,
  1886. "Running_P": 100,
  1887. "SetPoint": 180,
  1888. "SetpointDownRate": 0,
  1889. "SetpointUpRate": 3
  1890. },
  1891. {
  1892. "ActiveTuneSet": 1,
  1893. "Caps": 10,
  1894. "CapsWarning": 5,
  1895. "ChannelMode": 2,
  1896. "DelayMillionSeconds": 0,
  1897. "Floor": 0,
  1898. "FloorWarning": 0,
  1899. "Index": 14,
  1900. "Inhibit": 1,
  1901. "Running_D": 100,
  1902. "Running_I": 100,
  1903. "Running_P": 100,
  1904. "SetPoint": 0,
  1905. "SetpointDownRate": 0,
  1906. "SetpointUpRate": 3
  1907. },
  1908. {
  1909. "ActiveTuneSet": 1,
  1910. "Caps": 10,
  1911. "CapsWarning": 5,
  1912. "ChannelMode": 2,
  1913. "DelayMillionSeconds": 0,
  1914. "Floor": 0,
  1915. "FloorWarning": 0,
  1916. "Index": 15,
  1917. "Inhibit": 1,
  1918. "Running_D": 100,
  1919. "Running_I": 100,
  1920. "Running_P": 100,
  1921. "SetPoint": 0,
  1922. "SetpointDownRate": 0,
  1923. "SetpointUpRate": 3
  1924. },
  1925. {
  1926. "ActiveTuneSet": 1,
  1927. "Caps": 10,
  1928. "CapsWarning": 5,
  1929. "ChannelMode": 2,
  1930. "DelayMillionSeconds": 0,
  1931. "Floor": 0,
  1932. "FloorWarning": 0,
  1933. "Index": 16,
  1934. "Inhibit": 1,
  1935. "Running_D": 100,
  1936. "Running_I": 100,
  1937. "Running_P": 100,
  1938. "SetPoint": 0,
  1939. "SetpointDownRate": 0,
  1940. "SetpointUpRate": 3
  1941. }
  1942. ],
  1943. "Index": 7
  1944. },
  1945. {
  1946. "ChannelConfig": [
  1947. {
  1948. "ActiveTuneSet": 1,
  1949. "Caps": 190,
  1950. "CapsWarning": 185,
  1951. "ChannelMode": 0,
  1952. "DelayMillionSeconds": 0,
  1953. "Floor": 170,
  1954. "FloorWarning": 175,
  1955. "Index": 1,
  1956. "Inhibit": 0,
  1957. "Running_D": 100,
  1958. "Running_I": 100,
  1959. "Running_P": 100,
  1960. "SetPoint": 180,
  1961. "SetpointDownRate": 0,
  1962. "SetpointUpRate": 3
  1963. },
  1964. {
  1965. "ActiveTuneSet": 1,
  1966. "Caps": 190,
  1967. "CapsWarning": 185,
  1968. "ChannelMode": 0,
  1969. "DelayMillionSeconds": 0,
  1970. "Floor": 170,
  1971. "FloorWarning": 175,
  1972. "Index": 2,
  1973. "Inhibit": 0,
  1974. "Running_D": 100,
  1975. "Running_I": 100,
  1976. "Running_P": 100,
  1977. "SetPoint": 180,
  1978. "SetpointDownRate": 0,
  1979. "SetpointUpRate": 3
  1980. },
  1981. {
  1982. "ActiveTuneSet": 1,
  1983. "Caps": 190,
  1984. "CapsWarning": 185,
  1985. "ChannelMode": 0,
  1986. "DelayMillionSeconds": 0,
  1987. "Floor": 170,
  1988. "FloorWarning": 175,
  1989. "Index": 3,
  1990. "Inhibit": 0,
  1991. "Running_D": 100,
  1992. "Running_I": 100,
  1993. "Running_P": 100,
  1994. "SetPoint": 180,
  1995. "SetpointDownRate": 0,
  1996. "SetpointUpRate": 3
  1997. },
  1998. {
  1999. "ActiveTuneSet": 1,
  2000. "Caps": 190,
  2001. "CapsWarning": 185,
  2002. "ChannelMode": 0,
  2003. "DelayMillionSeconds": 0,
  2004. "Floor": 170,
  2005. "FloorWarning": 175,
  2006. "Index": 4,
  2007. "Inhibit": 0,
  2008. "Running_D": 100,
  2009. "Running_I": 100,
  2010. "Running_P": 100,
  2011. "SetPoint": 180,
  2012. "SetpointDownRate": 0,
  2013. "SetpointUpRate": 3
  2014. },
  2015. {
  2016. "ActiveTuneSet": 1,
  2017. "Caps": 190,
  2018. "CapsWarning": 185,
  2019. "ChannelMode": 0,
  2020. "DelayMillionSeconds": 0,
  2021. "Floor": 170,
  2022. "FloorWarning": 175,
  2023. "Index": 5,
  2024. "Inhibit": 0,
  2025. "Running_D": 100,
  2026. "Running_I": 100,
  2027. "Running_P": 100,
  2028. "SetPoint": 180,
  2029. "SetpointDownRate": 0,
  2030. "SetpointUpRate": 3
  2031. },
  2032. {
  2033. "ActiveTuneSet": 1,
  2034. "Caps": 190,
  2035. "CapsWarning": 185,
  2036. "ChannelMode": 0,
  2037. "DelayMillionSeconds": 0,
  2038. "Floor": 170,
  2039. "FloorWarning": 175,
  2040. "Index": 6,
  2041. "Inhibit": 0,
  2042. "Running_D": 100,
  2043. "Running_I": 100,
  2044. "Running_P": 100,
  2045. "SetPoint": 180,
  2046. "SetpointDownRate": 0,
  2047. "SetpointUpRate": 3
  2048. },
  2049. {
  2050. "ActiveTuneSet": 1,
  2051. "Caps": 190,
  2052. "CapsWarning": 185,
  2053. "ChannelMode": 0,
  2054. "DelayMillionSeconds": 0,
  2055. "Floor": 170,
  2056. "FloorWarning": 175,
  2057. "Index": 7,
  2058. "Inhibit": 0,
  2059. "Running_D": 100,
  2060. "Running_I": 100,
  2061. "Running_P": 100,
  2062. "SetPoint": 180,
  2063. "SetpointDownRate": 0,
  2064. "SetpointUpRate": 3
  2065. },
  2066. {
  2067. "ActiveTuneSet": 1,
  2068. "Caps": 190,
  2069. "CapsWarning": 185,
  2070. "ChannelMode": 0,
  2071. "DelayMillionSeconds": 0,
  2072. "Floor": 170,
  2073. "FloorWarning": 175,
  2074. "Index": 8,
  2075. "Inhibit": 0,
  2076. "Running_D": 100,
  2077. "Running_I": 100,
  2078. "Running_P": 100,
  2079. "SetPoint": 180,
  2080. "SetpointDownRate": 0,
  2081. "SetpointUpRate": 3
  2082. },
  2083. {
  2084. "ActiveTuneSet": 1,
  2085. "Caps": 190,
  2086. "CapsWarning": 185,
  2087. "ChannelMode": 0,
  2088. "DelayMillionSeconds": 0,
  2089. "Floor": 170,
  2090. "FloorWarning": 175,
  2091. "Index": 9,
  2092. "Inhibit": 0,
  2093. "Running_D": 100,
  2094. "Running_I": 100,
  2095. "Running_P": 100,
  2096. "SetPoint": 180,
  2097. "SetpointDownRate": 0,
  2098. "SetpointUpRate": 3
  2099. },
  2100. {
  2101. "ActiveTuneSet": 1,
  2102. "Caps": 190,
  2103. "CapsWarning": 185,
  2104. "ChannelMode": 0,
  2105. "DelayMillionSeconds": 0,
  2106. "Floor": 170,
  2107. "FloorWarning": 175,
  2108. "Index": 10,
  2109. "Inhibit": 0,
  2110. "Running_D": 100,
  2111. "Running_I": 100,
  2112. "Running_P": 100,
  2113. "SetPoint": 180,
  2114. "SetpointDownRate": 0,
  2115. "SetpointUpRate": 3
  2116. },
  2117. {
  2118. "ActiveTuneSet": 1,
  2119. "Caps": 190,
  2120. "CapsWarning": 185,
  2121. "ChannelMode": 0,
  2122. "DelayMillionSeconds": 0,
  2123. "Floor": 170,
  2124. "FloorWarning": 175,
  2125. "Index": 11,
  2126. "Inhibit": 0,
  2127. "Running_D": 100,
  2128. "Running_I": 100,
  2129. "Running_P": 100,
  2130. "SetPoint": 180,
  2131. "SetpointDownRate": 0,
  2132. "SetpointUpRate": 3
  2133. },
  2134. {
  2135. "ActiveTuneSet": 1,
  2136. "Caps": 190,
  2137. "CapsWarning": 185,
  2138. "ChannelMode": 0,
  2139. "DelayMillionSeconds": 0,
  2140. "Floor": 170,
  2141. "FloorWarning": 175,
  2142. "Index": 12,
  2143. "Inhibit": 0,
  2144. "Running_D": 100,
  2145. "Running_I": 100,
  2146. "Running_P": 100,
  2147. "SetPoint": 180,
  2148. "SetpointDownRate": 0,
  2149. "SetpointUpRate": 3
  2150. },
  2151. {
  2152. "ActiveTuneSet": 1,
  2153. "Caps": 10,
  2154. "CapsWarning": 5,
  2155. "ChannelMode": 2,
  2156. "DelayMillionSeconds": 0,
  2157. "Floor": 0,
  2158. "FloorWarning": 0,
  2159. "Index": 13,
  2160. "Inhibit": 1,
  2161. "Running_D": 0,
  2162. "Running_I": 0,
  2163. "Running_P": 0,
  2164. "SetPoint": 0,
  2165. "SetpointDownRate": 0,
  2166. "SetpointUpRate": 3
  2167. },
  2168. {
  2169. "ActiveTuneSet": 1,
  2170. "Caps": 10,
  2171. "CapsWarning": 5,
  2172. "ChannelMode": 2,
  2173. "DelayMillionSeconds": 0,
  2174. "Floor": 0,
  2175. "FloorWarning": 0,
  2176. "Index": 14,
  2177. "Inhibit": 1,
  2178. "Running_D": 0,
  2179. "Running_I": 0,
  2180. "Running_P": 0,
  2181. "SetPoint": 0,
  2182. "SetpointDownRate": 0,
  2183. "SetpointUpRate": 3
  2184. },
  2185. {
  2186. "ActiveTuneSet": 1,
  2187. "Caps": 10,
  2188. "CapsWarning": 5,
  2189. "ChannelMode": 2,
  2190. "DelayMillionSeconds": 0,
  2191. "Floor": 0,
  2192. "FloorWarning": 0,
  2193. "Index": 15,
  2194. "Inhibit": 1,
  2195. "Running_D": 0,
  2196. "Running_I": 0,
  2197. "Running_P": 0,
  2198. "SetPoint": 0,
  2199. "SetpointDownRate": 0,
  2200. "SetpointUpRate": 3
  2201. },
  2202. {
  2203. "ActiveTuneSet": 1,
  2204. "Caps": 10,
  2205. "CapsWarning": 5,
  2206. "ChannelMode": 2,
  2207. "DelayMillionSeconds": 0,
  2208. "Floor": 0,
  2209. "FloorWarning": 0,
  2210. "Index": 16,
  2211. "Inhibit": 1,
  2212. "Running_D": 0,
  2213. "Running_I": 0,
  2214. "Running_P": 0,
  2215. "SetPoint": 0,
  2216. "SetpointDownRate": 0,
  2217. "SetpointUpRate": 3
  2218. }
  2219. ],
  2220. "Index": 8
  2221. }
  2222. ]
  2223. }