forked from WebControlCNC/WebControl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
defaultwebcontrol.json
1275 lines (1274 loc) · 41.4 KB
/
defaultwebcontrol.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Advanced Settings": [
{
"default": 0,
"desc": "Enable the use of a touch plate to allow for automatic setting of Z-Axis zero. DO NOT ENABLE UNLESS YOU HAVE A TOUCH PLATE!\ndefault setting: disabled",
"key": "touchPlate",
"section": "Advanced Settings",
"title": "Enable Use of Touch Plates",
"type": "bool",
"value": 0
},
{
"default": 10.0,
"desc": "Max depth in millimeters the z axis should plunge in order to find the touch probe\ndefault setting: 10 mm",
"key": "maxTouchProbePlungeDistance",
"section": "Advanced Settings",
"title": "Max Touch Z-axis Plunge",
"type": "string",
"value": "10"
},
{
"default": 8113.73,
"desc": "The number of encoder steps per revolution of the left or right motor\ndefault setting: 8113.73",
"firmwareKey": 12,
"key": "encoderSteps",
"section": "Advanced Settings",
"title": "Encoder Steps per Revolution",
"type": "string",
"value": "8113.73"
},
{
"default": 10,
"desc": "The number of teeth on the gear of the left or right motor\ndefault setting: 10",
"key": "gearTeeth",
"section": "Advanced Settings",
"title": "Gear Teeth",
"type": "string",
"value": "10"
},
{
"default": 6.35,
"desc": "The distance between chain roller centers\ndefault setting: 6.35",
"key": "chainPitch",
"section": "Advanced Settings",
"title": "Chain Pitch",
"type": "string",
"value": "6.35"
},
{
"default": 0,
"desc": "The tolerance adjustment for the left chain length, in percent\ndefault setting: 0",
"key": "leftChainTolerance",
"section": "Advanced Settings",
"title": "Chain Tolerance, Left Chain",
"type": "string",
"value": "0",
"firmwareKey": 40
},
{
"default": 0,
"desc": "The tolerance adjustment for the right chain length, in percent\ndefault setting: 0",
"key": "rightChainTolerance",
"section": "Advanced Settings",
"title": "Chain Tolerance, Right Chain",
"type": "string",
"value": "0",
"firmwareKey": 41
},
{
"default": 5.1685e-6,
"desc": "Elasticity of the Chain [mm/mm/N]\ndefault setting: 5.1685e-6",
"key": "chainElasticity",
"section": "Advanced Settings",
"title": "Chain Elasticity",
"type": "float",
"value": 5.1685e-6,
"firmwareKey": 45
},
{
"default": "Top",
"desc": "On which side of the motor sprockets do the chains leave from to connect to the sled\ndefault setting: Top",
"key": "chainOverSprocket",
"options": [
"Top",
"Bottom"
],
"section": "Advanced Settings",
"title": "Top/Bottom Chain Feed",
"type": "options",
"value": "Bottom"
},
{
"default": 1651,
"desc": "The length in mm that will be extended during chain calibration\ndefault setting: 1651",
"firmwareKey": 11,
"key": "chainExtendLength",
"section": "Advanced Settings",
"title": "Extend Chain Distance",
"type": "string",
"value": "1651"
},
{
"default": 3360,
"desc": "The length in mm of your chains, used to define the kinematics search space\ndefault setting: 3360",
"firmwareKey": 10,
"key": "chainLength",
"section": "Advanced Settings",
"title": "Chain Length",
"type": "string",
"value": "3360"
},
{
"default": 7560.0,
"desc": "The number of encoder steps per revolution of the z-axis\ndefault setting: 7560.0",
"firmwareKey": 20,
"key": "zEncoderSteps",
"section": "Advanced Settings",
"title": "Z-Axis Encoder Steps per Revolution",
"type": "string",
"value": "7560.0"
},
{
"default": "None",
"desc": "How should the spindle start and stop automatically based on gcode? Leave off for none, or set external servo control, or external relay control, active high or low.\ndefault setting: None",
"firmwareKey": 17,
"key": "spindleAutomate",
"options": [
"None",
"Servo",
"Relay_High",
"Relay_Low"
],
"section": "Advanced Settings",
"title": "Spindle Automation",
"type": "options",
"value": "None"
},
{
"default": 800,
"desc": "The maximum feedrate in mm/min that machine is capable of sustaining. Setting this value too high will cause movements to start before the prior movement finishes.\ndefault setting: 800",
"firmwareKey": 15,
"key": "maxFeedrate",
"section": "Advanced Settings",
"title": "Max Feedrate",
"type": "string",
"value": "800"
},
{
"default": 0.0,
"desc": "The X coordinate of the home position\ndefault setting: 0.0",
"key": "homeX",
"section": "Advanced Settings",
"title": "Home Position X Coordinate",
"type": "string",
"value": "0.0"
},
{
"default": 0.0,
"desc": "The X coordinate of the home position\ndefault setting: 0.0",
"key": "homeY",
"section": "Advanced Settings",
"title": "Home Position Y Coordinate",
"type": "string",
"value": "0.0"
},
{
"default": 0,
"desc": "Truncate floating point numbers at the specified number of decimal places\ndefault setting: 0",
"key": "truncate",
"section": "Advanced Settings",
"title": "Truncate Floating Point Numbers",
"type": "bool",
"value": 0
},
{
"default": 4,
"desc": "If truncate floating point numbers is enabled, the number of digits after the decimal place to preserve\ndefault setting: 4",
"key": "digits",
"section": "Advanced Settings",
"title": "Floating Point Precision",
"type": "string",
"value": "4"
},
{
"default": "Triangular",
"desc": "Switch between trapezoidal and triangular kinematics\ndefault setting: Triangular",
"key": "kinematicsType",
"options": [
"Quadrilateral",
"Triangular"
],
"section": "Advanced Settings",
"title": "Kinematics Type",
"type": "options",
"value": "Triangular"
},
{
"default": 139.1,
"desc": "The distance between where the chains attach and the center of the router bit in mm\ndefault setting: 140",
"firmwareKey": 8,
"key": "rotationRadius",
"section": "Advanced Settings",
"title": "Rotation Radius for Triangular Kinematics",
"type": "string",
"value": "139.1"
},
{
"default": 0,
"desc": "The scaled value computed by the calibration process to calculate chain sag based on sled weight, chain weight, and workspace angle\ndefault setting: 0",
"firmwareKey": 37,
"key": "chainSagCorrection",
"section": "Advanced Settings",
"title": "Chain Sag Correction Value for Triangular Kinematics",
"type": "string",
"value": "33"
},
{
"default": 0,
"desc": "Enable modifying x,y coordinates during calculations to account for errors determined by optical calibration\ndefault setting: 0",
"firmwareKey": 144,
"key": "enableOpticalCalibration",
"section": "Advanced Settings",
"title": "Use Calibration Error Matrix (Experimental)",
"type": "bool",
"value": 0
},
{
"default": 0,
"desc": "Selects use interpolation of calibration error matrix or curve fit\ndefault setting: 0",
"firmwareKey": 86,
"key": "useInterpolationOrCurve",
"section": "Advanced Settings",
"title": "Use Interpolation (True) or Curve Fit (False) (Experimental)",
"type": "bool",
"value": 0
},
{
"default": 0,
"desc": "Experimental adjustment for top beam tilt in degrees\ndefault setting: 0",
"firmwareKey": 43,
"key": "topBeamTilt",
"section": "Advanced Settings",
"title": "Top Beam Tilt (Experimental)",
"type": "string",
"value": "0"
},
{
"default": 0,
"desc": "Enable using custom values for the positional PID controller. Turning this off will return to the default values\ndefault setting: 0",
"key": "enablePosPIDValues",
"section": "Advanced Settings",
"title": "Enable Custom Positional PID Values",
"type": "bool",
"value": 0
},
{
"default": 1300,
"desc": "The proportional constant for the position PID controller\ndefault setting: 1300",
"key": "KpPos",
"section": "Advanced Settings",
"title": "Kp Position",
"type": "string",
"value": "1300"
},
{
"default": 0,
"desc": "The integral constant for the position PID controller\ndefault setting: 0",
"key": "KiPos",
"section": "Advanced Settings",
"title": "Ki Position",
"type": "string",
"value": "0"
},
{
"default": 34,
"desc": "The derivative constant for the position PID controller\ndefault setting: 34",
"key": "KdPos",
"section": "Advanced Settings",
"title": "Kd Position",
"type": "string",
"value": "34"
},
{
"default": 1300,
"desc": "The proportional constant for the position Z-Axis PID controller\ndefault setting: 1300",
"key": "KpPosZ",
"section": "Advanced Settings",
"title": "Kp Position Z-Axis",
"type": "string",
"value": "1300"
},
{
"default": 0,
"desc": "The integral constant for the position Z-Axis PID controller\ndefault setting: 0",
"key": "KiPosZ",
"section": "Advanced Settings",
"title": "Ki Position Z-Axis",
"type": "string",
"value": "0"
},
{
"default": 34,
"desc": "The derivative constant for the position Z-Axis PID controller\ndefault setting: 34",
"key": "KdPosZ",
"section": "Advanced Settings",
"title": "Kd Position Z-Axis",
"type": "string",
"value": "34"
},
{
"default": 1,
"desc": "The ratio of Proportional on Error (1) to Proportional on Measure (0)\ndefault setting: 1",
"key": "propWeight",
"section": "Advanced Settings",
"title": "Proportional Weighting",
"type": "string",
"value": "1"
},
{
"default": 0,
"desc": "Enable using custom values for the Velocity PID controller. Turning this off will return to the default values\ndefault setting: 0",
"key": "enableVPIDValues",
"section": "Advanced Settings",
"title": "Enable Custom Velocity PID Values",
"type": "bool",
"value": 0
},
{
"default": 5,
"desc": "The proportional constant for the velocity PID controller\ndefault setting: 5",
"key": "KpV",
"section": "Advanced Settings",
"title": "Kp Velocity",
"type": "string",
"value": "5"
},
{
"default": 0,
"desc": "The integral constant for the velocity PID controller\ndefault setting: 0",
"key": "KiV",
"section": "Advanced Settings",
"title": "Ki Velocity",
"type": "string",
"value": "0"
},
{
"default": 0.28,
"desc": "The derivative constant for the velocity PID controller\ndefault setting: 0.28",
"key": "KdV",
"section": "Advanced Settings",
"title": "Kd Velocity",
"type": "string",
"value": "0.28"
},
{
"default": 5,
"desc": "The proportional constant for the Z-axis velocity PID controller\ndefault setting: 5",
"key": "KpVZ",
"section": "Advanced Settings",
"title": "Kp Velocity Z-Axis",
"type": "string",
"value": "5"
},
{
"default": 0,
"desc": "The integral constant for the Z-axis velocity PID controller\ndefault setting: 0",
"key": "KiVZ",
"section": "Advanced Settings",
"title": "Ki Velocity Z-Axis",
"type": "string",
"value": "0"
},
{
"default": 0.28,
"desc": "The derivative constant for the Z-axis velocity PID controller\ndefault setting: 0.28",
"key": "KdVZ",
"section": "Advanced Settings",
"title": "Kd Velocity Z-Axis",
"type": "string",
"value": "0.28"
},
{
"default": 1,
"desc": "The ratio of Proportional on Error (1) to Proportional on Measure (0)\ndefault setting: 1",
"key": "propWeightZ",
"section": "Advanced Settings",
"title": "Proportional Weighting for Z-Axis",
"type": "string",
"value": "1"
},
{
"default": "490Hz",
"desc": "The PWM frequence used for motor speed control\ndefault setting: 490Hz",
"key": "fPWM",
"options": [
"490Hz",
"4,100Hz",
"31,000Hz"
],
"section": "Advanced Settings",
"title": "PWM frequency for motor control",
"type": "options",
"value": "490Hz"
},
{
"default": 2.0,
"desc": "If the position of the sled varies from the expected position by more than this amount, cutting wil be stopped. Program must be restarted to take effect.\ndefault setting: 2.0",
"firmwareKey": 42,
"key": "positionErrorLimit",
"section": "Advanced Settings",
"title": "Position Error Limit",
"type": "string",
"value": "2.0"
}
],
"Computed Settings": [
{
"firmwareKey": 7,
"key": "kinematicsTypeComputed",
"type": "string",
"value": "2"
},
{
"firmwareKey": 13,
"key": "distPerRot",
"type": "string",
"value": "63.5"
},
{
"firmwareKey": 21,
"key": "KpPosMain",
"type": "string",
"value": 1300
},
{
"firmwareKey": 22,
"key": "KiPosMain",
"type": "string",
"value": 0
},
{
"firmwareKey": 23,
"key": "KdPosMain",
"type": "string",
"value": 34
},
{
"firmwareKey": 24,
"key": "propWeightMain",
"type": "string",
"value": 1
},
{
"firmwareKey": 29,
"key": "KpPosZ",
"type": "string",
"value": 1300
},
{
"firmwareKey": 30,
"key": "KiPosZ",
"type": "string",
"value": 0
},
{
"firmwareKey": 31,
"key": "KdPosZ",
"type": "string",
"value": 34
},
{
"firmwareKey": 32,
"key": "propWeightZ",
"type": "string",
"value": 1
},
{
"firmwareKey": 25,
"key": "KpVMain",
"type": "string",
"value": 5
},
{
"firmwareKey": 26,
"key": "KiVMain",
"type": "string",
"value": 0
},
{
"firmwareKey": 27,
"key": "KdVMain",
"type": "string",
"value": 0.28
},
{
"firmwareKey": 33,
"key": "KpVZ",
"type": "string",
"value": 5
},
{
"firmwareKey": 34,
"key": "KiVZ",
"type": "string",
"value": 0
},
{
"firmwareKey": 35,
"key": "KdVZ",
"type": "string",
"value": 0.28
},
{
"firmwareKey": 38,
"key": "chainOverSprocketComputed",
"type": "string",
"value": 2
},
{
"firmwareKey": 39,
"key": "fPWMComputed",
"type": "string",
"value": 3
},
{
"default": 1.0,
"key": "distToMove",
"type": "float",
"value": 1.0
},
{
"default": 0.1,
"key": "distToMoveZ",
"type": "float",
"value": 0.1
},
{
"default": "INCHES",
"key": "units",
"type": "string",
"value": "INCHES"
},
{
"default": 0.02,
"key": "tolerance",
"type": "float",
"value": 0.02
},
{
"default": "INCHES",
"key": "unitsZ",
"type": "string",
"value": "INCHES"
},
{
"default": ".",
"key": "lastSelectedDirectory",
"type": "string",
"value": "."
},
{
"default": ".",
"key": "lastSelectedBoardDirectory",
"type": "string",
"value": "."
}
],
"Maslow Settings": [
{
"default": "",
"desc": "Select the COM port to connect to machine\ndefault setting: ",
"key": "COMport",
"section": "Maslow Settings",
"title": "Serial Connection",
"type": "string",
"value": ""
},
{
"default": 2978.4,
"desc": "The horizontal distance between the center of the motor shafts in MM.\ndefault setting: 2978.4",
"firmwareKey": 2,
"key": "motorSpacingX",
"section": "Maslow Settings",
"title": "Distance Between Motors",
"type": "string",
"value": "2978.4"
},
{
"default": 2438.4,
"desc": "The width of the machine working area (normally 8 feet).\ndefault setting: 2438.4",
"firmwareKey": 0,
"key": "bedWidth",
"section": "Maslow Settings",
"title": "Work Area Width in MM",
"type": "string",
"value": "2438.4"
},
{
"default": 1219.2,
"desc": "The Height of the machine working area (normally 4 feet).\ndefault setting: 1219.2",
"firmwareKey": 1,
"key": "bedHeight",
"section": "Maslow Settings",
"title": "Work Area Height in MM",
"type": "string",
"value": "1219.2"
},
{
"default": 463,
"desc": "The vertical distance from the edge of the work area to the level of the motors.\ndefault setting: 463",
"firmwareKey": 3,
"key": "motorOffsetY",
"section": "Maslow Settings",
"title": "Motor Offset Height in MM",
"type": "string",
"value": "463"
},
{
"default": 310,
"desc": "The horizontal distance between the points where the chains mount to the sled.\ndefault setting: 310",
"firmwareKey": 4,
"key": "sledWidth",
"section": "Maslow Settings",
"title": "Distance Between Sled Mounting Points",
"type": "string",
"value": "310"
},
{
"default": 97.9,
"desc": "Weight of sled [N].\ndefault setting: 97.9",
"firmwareKey": 46,
"key": "sledWeight",
"section": "Maslow Settings",
"title": "Sled Weight",
"type": "float",
"value": 97.9
},
{
"default": 139,
"desc": "The vertical distance between where the chains mount on the sled to the cutting tool.\ndefault setting: 139",
"firmwareKey": 5,
"key": "sledHeight",
"section": "Maslow Settings",
"title": "Vertical Distance Sled Mounts to Cutter",
"type": "string",
"value": "139"
},
{
"default": 79,
"desc": "How far below the cutting bit is the center of gravity. This can be found by resting the sled on a round object and observing where it balances.\ndefault setting: 79",
"firmwareKey": 6,
"key": "sledCG",
"section": "Maslow Settings",
"title": "Center Of Gravity",
"type": "string",
"value": "79"
},
{
"default": 0,
"desc": "Does the machine have an automatic z-axis?\ndefault setting: 0",
"firmwareKey": 16,
"key": "zAxis",
"section": "Maslow Settings",
"title": "z-axis installed",
"type": "bool",
"value": 0
},
{
"default": 3.17,
"desc": "The number of mm moved per rotation of the z-axis\ndefault setting: 3.17",
"firmwareKey": 19,
"key": "zDistPerRot",
"section": "Maslow Settings",
"title": "Z-Axis Pitch",
"type": "string",
"value": "3.17"
},
{
"default": "",
"desc": "The path to the open file\\ndefault setting: your home directory",
"key": "openFile",
"section": "Maslow Settings",
"title": "Open File",
"type": "string",
"value": ""
},
{
"default": "",
"desc": "User defined gcode bound to the Macro 1 button\ndefault setting: ",
"key": "macro1",
"section": "Maslow Settings",
"title": "Macro 1",
"type": "string",
"value": ""
},
{
"default": "Macro 1",
"desc": "User defined title for the Macro 1 button\ndefault setting: Macro 1",
"key": "macro1_title",
"section": "Maslow Settings",
"title": "Macro 1 Title",
"type": "string",
"value": "Macro 1"
},
{
"default": "",
"desc": "User defined gcode bound to the Macro 2 button\ndefault setting: ",
"key": "macro2",
"section": "Maslow Settings",
"title": "Macro 2",
"type": "string",
"value": ""
},
{
"default": "Macro 2",
"desc": "User defined title for the Macro 2 button\ndefault setting: Macro 2",
"key": "macro2_title",
"section": "Maslow Settings",
"title": "Macro 2 Title",
"type": "string",
"value": "Macro 2"
},
{
"default": 5,
"desc": "The vertical distance above the work area to raise the z-axis for safe travel. Used by 'Home', 'Return to Center' and 'z-Axis' settings.\ndefault setting: 5",
"key": "zAxisSafeHeight",
"section": "Maslow Settings",
"title": "Z-Axis Safe Travel Height in MM",
"type": "string",
"value": "5"
},
{
"default": 0,
"desc": "Buffer gcode on arduino to increase execution speed. Requres restart to take effect. Experimental.\ndefault setting: 0",
"key": "bufferOn",
"section": "Maslow Settings",
"title": "Buffer Gcode",
"type": "bool",
"value": 0
},
{
"default": "",
"desc": "The path to the open board file\\ndefault setting: your home directory",
"key": "openBoardFile",
"section": "Maslow Settings",
"title": "Open Board File",
"type": "string",
"value": ""
}
],
"Optical Calibration Settings": [
{
"default": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
"firmwareKey": 85,
"key": "xyErrorArray",
"type": "string",
"value": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
},
{
"default": "0",
"firmwareKey": 87,
"key": "calX0",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 88,
"key": "calX1",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 89,
"key": "calX2",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 90,
"key": "calX3",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 91,
"key": "calX4",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 92,
"key": "calX5",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 93,
"key": "calY0",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 94,
"key": "calY1",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 95,
"key": "calY2",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 96,
"key": "calY3",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 97,
"key": "calY4",
"type": "string",
"value": "0"
},
{
"default": "0",
"firmwareKey": 98,
"key": "calY5",
"type": "string",
"value": "0"
},
{
"default": "0",
"key": "opticalCenterX",
"type": "string",
"value": "0"
},
{
"default": "0",
"key": "opticalCenterY",
"type": "string",
"value": "0"
},
{
"default": "1.0",
"key": "scaleX",
"type": "string",
"value": "1.0"
},
{
"default": "1.0",
"key": "scaleY",
"type": "string",
"value": "1.0"
},
{
"default": 5,
"key": "gaussianBlurValue",
"type": "int",
"value": 5
},
{
"default": 50.0,
"key": "cannyLowValue",
"type": "float",
"value": 50.0
},
{
"default": 100.0,
"key": "cannyHighValue",
"type": "float",
"value": 100.0
},
{
"default": 0,
"key": "autoScanDirection",
"type": "int",
"value": 0
},
{
"default": 0.6,
"key": "markerX",
"type": "float",
"value": 0.6
},
{
"default": 0.6,
"key": "markerY",
"type": "float",
"value": 0.6
},
{
"default": -15,
"key": "tlX",
"type": "int",
"value": -15
},
{
"default": 7,
"key": "tlY",
"type": "int",
"value": 7
},
{
"default": 15,
"key": "brX",
"type": "int",
"value": 15
},
{
"default": -7,
"key": "brY",
"type": "int",
"value": -7
},
{
"default": "Full Area",
"key": "calibrationExtents",
"type": "string",
"value": "Full Area"
} ,
{
"default": 0.125,
"key": "positionTolerance",
"type": "float",
"value": 0.125
}
],
"WebControl Settings": [
{
"default": 0,
"desc": "When pressing the diagonal buttons in the main screen, use the distance to move as the total amount, not the amount for X and Y independently\ndefault setting: 0",
"key": "diagonalMove",
"section": "WebControl Settings",
"title": "Diagonal Move Method",
"type": "bool",
"value": 0
},
{
"default": 0,
"desc": "Enable on-screen reporting of actual sled position computed from chain lengths reported by controller. MAY CAUSE WEBCONTROL TO SLOW DOWN!\ndefault setting: disabled",
"key": "computedPosition",
"section": "WebControl Settings",
"title": "Computed Sled Position",
"type": "bool",
"value": 0
},
{
"default": 0,
"desc": "Timeout logging after specified seconds of user and gcode processing activity, 0 value disables timeout\ndefault setting: 0",
"key": "loggingTimeout",
"section": "WebControl Settings",
"title": "Logger Idle Timeout",
"type": "float",
"value": 0
},
{
"default": ".nc, .ngc, .text, .gcode",
"desc": "Valid file extensions for Ground Control to open. Comma separated list.\ndefault setting: .nc, .ngc, .text, .gcode",
"key": "validExtensions",
"section": "WebControl Settings",
"title": "Valid File Extensions",
"type": "string",
"value": ".nc, .ngc, .text, .gcode"
},
{
"default": 0,
"desc": "Use 3D render with orbital controls in lieu of standard 2D rendering with pan/zoom\ndefault setting: False",
"key": "enable3D",
"section": "WebControl Settings",
"title": "Enable 3D Display",
"type": "bool",
"value": 0
},
{
"default": 5000,
"desc": "Web interface Port Number used to access WebControl from browser. Requires restart to change.\ndefault setting: 5000",
"key": "webPort",
"section": "WebControl Settings",
"title": "Web Port Number",
"type": "int",
"value": 5000
},
{
"default": 0,
"desc": "Enable experimental releases to appear in release list\ndefault setting: No",
"key": "experimentalReleases",
"section": "WebControl Settings",
"title": "Enable Experimental Releases",