-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
1397 lines (1261 loc) · 28.8 KB
/
config.yaml
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
meta:
keyboard: &keyboard_name One Up Chuck
author: chad@transtrum.net
version: &version v1.1
repository: &repo https://github.com/ctranstrum/chuck
# Depending on where you are ordering from, uncomment or edit one of these:
# order_num_template: &order_text JLCJLCJLCJLC # for ordering from JLCpcb.com
# order_num_template: &order_text WayWayWay # for ordering from PCBway.com
order_num_template: &order_text "" # remove the order number text completely
units:
dx: u
dy: u
hdx: dx / 2
hdy: dy / 2
knob_height: 15
knob_diameter: 25
# how far to drop the outside edge of the knob, if knob diameter is larger than 21
knob_skirt: 2
mirrored_distance: 1.5 dx
points:
zones:
matrix:
# Shift the PCB down and to the right to get it on the sheet in kicad
anchor.shift: [50, -100]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
key:
autobind: .5
tags: [key, switch]
columns:
pinky:
key:
cpdst: CP0
splay: -10
mirror.cpdst: CP5
rows:
bottom:
cpsrc: CP1
bind: [0, 45, 0, 0]
tags: [key, switch, low_bumper]
home:
cpsrc: CP2
tags: [key, switch]
shared: pinky_bottom
mirror.shared: mirror_pinky_bottom
top:
orient: -5
shift: [3, 3]
cpsrc: CP3
tags: [key, switch, high_bumper]
bind: [0, 4]
ring:
key:
stagger: 2/3 dx
spread: 1.05 dx
splay: -5
cpdst: CP0
mirror.cpdst: CP5
rows:
bottom:
cpsrc: CP4
tags: [key, switch, return]
home:
cpsrc: CP5
tags: [key, switch]
shared: ring_bottom
mirror:
cpsrc: CP0
shared: mirror_ring_bottom
top:
cpdst: CP1
cpsrc: CP0
mirror.cpdst: CP4
tags: [key, switch]
middle:
key:
stagger: hdx
spread: 1.04 dx
splay: -5
cpdst: CP1
mirror.cpdst: CP4
rows:
bottom:
cpsrc: CP2
tags: [key, switch, return]
shared: index_bottom
mirror.shared: mirror_index_bottom
home:
cpsrc: CP3
top:
cpsrc: CP4
tags: [key, switch, high_bumper]
bind: [0, 4]
shared: middle_home
mirror:
cpsrc: CP1
shared: mirror_middle_home
index:
key:
stagger: -hdx
splay: -2.5
cpdst: CP2
mirror.cpdst: CP3
rows:
bottom:
cpdst: CP1
cpsrc: CP5
mirror.cpdst: CP4
home:
cpsrc: CP0
top:
cpsrc: CP1
tags: [key, switch]
shared: index_home
mirror.shared: mirror_index_home
inner:
key:
stagger: 2/3 hdx
cpdst: CP2
mirror.cpdst: CP3
rows:
bottom:
cpsrc: CP3
mirror.cpsrc: CP2
tags: [key, switch, return]
home:
cpsrc: CP4
tags: [key, switch]
shared: inner_bottom
mirror.shared: mirror_inner_bottom
thumbs:
mirror:
ref: matrix_inner_home
distance: mirrored_distance
anchor: matrix_index_bottom
columns.thumb.rows.spot:
tags: [thumb, switch]
splay: -20
shift: [39.5, -10.5]
bind: [7, 0, 0, 25]
cpdst: CP2
cpsrc: CP5
mirror.cpdst: CP3
encoder:
anchor:
aggregate.parts: [thumbs_thumb_spot, mirror_thumbs_thumb_spot]
shift: [0, dx]
key:
tags: [encoder]
bind: [25, 6, 25.3, 6]
mcu:
key.tags: [mcu]
anchor:
# top middle left
aggregate.parts: [matrix_middle_top, mirror_matrix_middle_top]
shift: [-21, 7.45]
power:
key.tags: [power]
anchor:
aggregate.parts: [matrix_middle_top, mirror_matrix_middle_top]
shift: [28, 15.8]
reset:
key:
tags: [reset]
asym: clone
anchor:
ref: matrix_pinky_top
shift: [hdx / 3, hdy + 4]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
battery:
anchor:
aggregate.parts: [matrix_middle_top, mirror_matrix_middle_top]
shift: [4, -8]
key.tags: [battery]
palm_bumper:
key.tags: [bumper]
anchor:
ref: matrix_index_bottom
shift: [0, -17]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
thumb_bumper:
key.tags: [bumper]
anchor:
ref: encoder
shift: [0, -1.7 dy]
center_bumper:
key.tags: [bumper]
anchor:
ref: encoder
shift: [0, 1.9 dy]
pinky_screw:
key.tags: [screw]
anchor:
ref: matrix_pinky_home
shift: [-hdx / 2, hdy + 1.6]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
low_screw:
key.tags: [screw]
anchor:
ref: matrix_pinky_bottom
shift: [hdy + 2, -hdy + 2]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
middle_home_screw:
key.tags: [screw]
anchor:
ref: matrix_middle_home
shift: [-hdx - 1.5, hdy]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
middle_top_screw:
key.tags: [screw]
anchor:
ref: matrix_middle_top
shift: [0, hdy + 4]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
thumb_screw:
key.tags: [screw]
anchor:
ref: thumbs_thumb_spot
shift: [-hdx - 2, -hdy + 3]
mirror:
ref: matrix_inner_home
distance: mirrored_distance
center_bottom_screw:
key.tags: [screw]
anchor:
ref: encoder
shift: [0, -1.3 dy]
center_top_screw:
key.tags: [screw]
anchor:
ref: battery
shift: [-4, 22]
outlines:
_top_bridge:
- what: rectangle
where:
aggregate.parts: [matrix_middle_top, mirror_matrix_middle_top]
shift: [0, -7.05]
size: [95, 50]
_keys_surround:
- what: rectangle
where: [key, encoder]
bound: true
size: [dx + 4, dy + 4]
corner: 2
fillet: 2
_thumbs_surround:
- what: rectangle
where: thumb
bound: true
size: [1.5 dx + 4, dy + 4]
corner: 4
fillet: 2
outline_shapes_builder:
- _top_bridge
- ^_keys_surround
- ^_thumbs_surround
_basic_outline_shape:
- _top_bridge
- _keys_surround
- _thumbs_surround
board_outline:
- what: outline
name: _basic_outline_shape
fillet: 2
_xiao_visualizer:
- what: rectangle
where: mcu
size: [17.8, 21]
corner: 2
- what: rectangle
where: mcu
size: [8, 2]
adjust.shift: [0, 11.5]
_xiao_light_guide:
- what: circle
where: mcu
radius: 0.95
adjust.shift: [6, 7.5]
_xiao_cutout:
- what: rectangle
where: mcu
size: [14, 22]
corner: 1
_xiao_bottom_cutout:
- what: rectangle
where: mcu
size: [14, 25]
adjust.shift: [0, -4]
_xiao_cutout_wall:
- what: rectangle
where: mcu
size: [19, 21.5]
corner: 1
_xiao_usb:
- what: rectangle
where: mcu
size: [9.5, 6.5]
adjust.shift: [0, 7.25]
_xiao_chip:
- what: rectangle
where: mcu
size: [13, 12]
adjust.shift: [0, -2]
_power_pcb_holes:
- what: circle
where: power
radius: 0.45
adjust.shift: [-1.5, 0]
- what: circle
where: power
radius: 0.45
adjust.shift: [1.5, 0]
_power_visualizer:
- what: rectangle
where: power
size: [8, 3.9]
- what: rectangle
where: power
size: 1.3
adjust.shift: [1.5, 2.6]
- -_power_pcb_holes
_power_cutout:
- what: rectangle
where: power
size: [9, 4.7]
adjust.shift: [0, -0.2]
_reset_pcb_holes:
- what: circle
where: reset
radius: 0.375
adjust.shift: [0, 1.375]
- what: circle
where: reset
radius: 0.375
adjust.shift: [0, -1.375]
_reset_visualizer:
- what: rectangle
where: reset
size: [6.3, 3.6]
adjust.resist: true
- what: rectangle
where: reset
size: [2.55, 0.9]
adjust:
shift: [0, 2.05]
resist: true
- -_reset_pcb_holes
_reset_cutout:
- what: rectangle
where: reset
size: [7.3, 4.5]
adjust:
resist: true
shift: [0, -0.25]
_battery_cutout:
- what: rectangle
where: battery
size: [23, 33]
corner: 1
_battery_wire_cutout:
- _battery_cutout
- what: circle
where: battery
radius: 7.5
adjust.shift: [11, 11]
_encoder_knob_1:
- what: circle
where: encoder
radius: knob_diameter / 2 - 1
_encoder_knob_2:
- what: circle
where: encoder
radius: knob_diameter / 2 - 0.8
_encoder_knob_3:
- what: circle
where: encoder
radius: knob_diameter / 2 - 0.6
_encoder_knob_4:
- what: circle
where: encoder
radius: knob_diameter / 2 - 0.4
_encoder_knob_5:
- what: circle
where: encoder
radius: knob_diameter / 2 - 0.2
_encoder_knob:
- what: circle
where: encoder
radius: knob_diameter / 2
_encoder_knob_skirt:
- what: circle
where: encoder
radius: 10.5
_encoder_stem:
- what: circle
where: encoder
radius: 3
- what: rectangle
where: encoder
size: 3.1
adjust.shift: [0, 3.1]
operation: subtract
_encoder_stem_opening_1:
- what: outline
name: _encoder_stem
expand: 0.1
_encoder_stem_opening_2:
- what: outline
name: _encoder_stem
expand: 0.2
_keycaps:
- what: rectangle
where: key
size: 18
corner: 1
- what: rectangle
where: thumb
size: [27, 18]
corner: 1
top_down_view:
- board_outline
- _xiao_visualizer
- _power_visualizer
- _reset_visualizer
- -_keycaps
- -_encoder_knob
- -_xiao_light_guide
_encoder_plate_cutout:
- what: rectangle
where: encoder
size: [12.4, 13.2]
- what: rectangle
where: encoder
size: [6.1, 1.2]
adjust.shift: [0, -7.2]
_encoder_plate_cutout_expanded:
- what: outline
name: _encoder_plate_cutout
expand: 1
_diode:
- what: rectangle
size: [1.65, 2.7]
- what: rectangle
size: [0.6, 3.9]
_diodes:
- what: outline
name: _diode
where: switch
adjust.shift: [5, -1]
_diodes_cutout:
- what: rectangle
where: switch
size: [2.2, 5.2]
adjust.shift: [5, -1]
_return_diodes:
- what: outline
name: _diode
where: return
adjust:
shift: [0, -0.6 dy]
rotate: 90
- what: outline
name: _diode
where: return
adjust:
shift: [0, -0.75 dy]
rotate: 90
_return_diodes_cutout:
- what: rectangle
where: return
size: 5.2
adjust.shift: [0, -0.675 dy]
_switches_plate_cutout:
- what: rectangle
where: switch
size: 14
corner: 1
- _encoder_plate_cutout
_switches_clip_cutout:
- what: rectangle
where: switch
size: [14.7, 14]
corner: 1
# Ugh, I don't have exact measurements, so this is maybe close-ish?
_glp_socket:
- what: rectangle
size: [4.04, 4.35]
adjust.shift: [4.8, 4.7]
- what: rectangle
size: [1.75, 1.74]
adjust.shift: [7.65, 4.7]
- what: rectangle
size: [5.94, 4.35]
adjust.shift: [-1.85, 5.75]
- what: rectangle
size: [1.75, 1.74]
adjust.shift: [-5.65, 5.75]
- what: rectangle
size: [4.2, 3.8]
adjust:
rotate: -30
shift: [1.95, 5.2]
- what: rectangle
size: 1.5
adjust.shift: [0, 8]
operation: subtract
_glp_socket_expanded:
- what: outline
name: _glp_socket
expand: 1
_socket_visualizer:
- what: outline
name: _glp_socket
where: switch
adjust.resist: true
_socket_cutout:
- what: outline
name: _glp_socket_expanded
where: switch
adjust.resist: true
_socket_post_holes:
- what: circle
where: switch
radius: 2.55
# This is only needed for visualization of the pcb_outline
_socket_pcb_holes:
- _socket_post_holes
- what: circle
where: switch
radius: 1.5
adjust:
resist: true
shift: [-2.6, 5.75]
- what: circle
where: switch
radius: 1.5
adjust:
resist: true
shift: [4.4, 4.7]
_encoder_pcb_holes:
# This is just an approximation of the encoder mounting holes
- what: circle
where: encoder
radius: 1.15
adjust.shift: [-5.6, 0]
- what: circle
where: encoder
radius: 1.15
adjust.shift: [5.6, 0]
- what: circle
where: encoder
radius: 0.8
adjust.shift: [-2.5, -7.5]
- what: circle
where: encoder
radius: 0.8
adjust.shift: [0, -7.5]
- what: circle
where: encoder
radius: 0.8
adjust.shift: [2.5, -7.5]
_encoder_bottom_cutout:
- what: circle
where: encoder
radius: 2
adjust.shift: [-5.6, 0]
- what: circle
where: encoder
radius: 2
adjust.shift: [5.6, 0]
- what: rectangle
where: encoder
size: [9, 4]
adjust.shift: [0, -7.2]
_screw_shaft:
- what: circle
where: screw
radius: 1.2
_countersink1:
- what: outline
name: _screw_shaft
expand: 1
_countersink2:
- what: outline
name: _screw_shaft
expand: 0.8
_countersink3:
- what: outline
name: _screw_shaft
expand: 0.6
_countersink4:
- what: outline
name: _screw_shaft
expand: 0.4
_countersink5:
- what: outline
name: _screw_shaft
expand: 0.2
pcb_outline:
- board_outline
- -_xiao_cutout
- -_battery_cutout
_hex_nut_angle:
- what: rectangle
size: [2.45, 4.25]
_hex_nut:
- _hex_nut_angle
- what: outline
name: _hex_nut_angle
adjust.rotate: 60
- what: outline
name: _hex_nut_angle
adjust.rotate: -60
_hex_nuts:
- what: outline
name: _hex_nut
where: screw
_bumper:
- what: circle
radius: 3.1
_low_bumper:
- what: outline
name: _bumper
where: low_bumper
adjust.shift: [-7, -7]
_high_bumper:
- what: outline
name: _bumper
where: high_bumper
adjust.shift: [-7, 11]
_bumpers:
- what: outline
name: _bumper
where: bumper
_all_bumpers:
- _low_bumper
- _high_bumper
- _bumpers
top_plate:
- board_outline
- -_switches_plate_cutout
- ^_switches_clip_cutout
- ^_encoder_plate_cutout_expanded
- ^_battery_cutout
- -_xiao_light_guide
- ^_xiao_usb
- ^_xiao_chip
- ^_hex_nuts
component_visualization:
- board_outline
- ^_xiao_cutout
- ^_switches_plate_cutout
- ^_switches_clip_cutout
- ^_socket_visualizer
- ^_socket_pcb_holes
- ^_keycaps
- -_encoder_knob
- ^_xiao_visualizer
- ^_xiao_light_guide
- ^_power_visualizer
- ^_power_cutout
- ^_reset_visualizer
- ^_reset_cutout
- ^_battery_wire_cutout
- ^_hex_nuts
- ^_screw_shaft
- ^_all_bumpers
- ^_diodes
- ^_diodes_cutout
- ^_return_diodes
- ^_return_diodes_cutout
# There is probably a better way to do this, but:
# try to select everything outside of the center,
# so we can remove it and be left with the center...
_dovetail_negative_space:
- what: rectangle
where: /^m.*_pinky/
size: 1.6 dx + 2
- what: rectangle
where: /^m.*_ring/
size: 1.6 dx + 2
- what: rectangle
where: /middle_home$/
size: [dx, 3 dy]
- what: rectangle
where: /^m.*_middle_top$/
size: [dx, dy]
adjust.shift: [-0.5dx, 0]
- what: rectangle
where: /index_home/
size: [dx, 3 dy]
corner: 3
- what: rectangle
where: /index_home/
size: [dx, 3 dy]
adjust.shift: [-0.5 dx, 0]
- what: rectangle
where: /^m.*_bottom/
size: [dx, 3 dy]
- what: rectangle
where: /^m.*_bottom/
size: [dx, 3 dy]
adjust.shift: [0, -2 dy]
- what: rectangle
where: /thumb_spot/
size: [dx, dy]
- what: rectangle
where: /thumb_spot/
size: [dx, dy]
adjust.shift: [0, -0.5 dy]
_dovetail:
- board_outline
- -_dovetail_negative_space
_dovetail_1:
- what: outline
name: _dovetail
expand: 0.2
- ~board_outline
_dovetail_2:
- what: outline
name: _dovetail
expand: 0.4
- ~board_outline
_dovetail_3:
- what: outline
name: _dovetail
expand: 0.6
- ~board_outline
_dovetail_4:
- what: outline
name: _dovetail
expand: 0.8
- ~board_outline
_left_half:
- what: rectangle
where: matrix_middle_bottom
size: [115, 150]
adjust.rotate: 20
_right_half:
- what: rectangle
where: mirror_matrix_middle_bottom
size: [115, 150]
adjust.rotate: 20
dovetail_visualizer:
- board_outline
- ^_dovetail
- ^_left_half
- ^_right_half
cases:
_countersunk_screw:
- what: outline
name: _countersink1
extrude: 0.2
- what: outline
name: _countersink2
extrude: 0.2
shift: [0, 0, 0.2]
- what: outline
name: _countersink3
extrude: 0.2
shift: [0, 0, 0.4]
- what: outline
name: _countersink4
extrude: 0.2
shift: [0, 0, 0.6]
- what: outline
name: _countersink5
extrude: 0.2
shift: [0, 0, 0.8]
- what: outline
name: _screw_shaft
extrude: 2
shift: [0, 0, 1]
encoder_knob:
- what: outline
name: _encoder_knob_1
extrude: 0.2
- what: outline
name: _encoder_knob_2
extrude: 0.2
shift: [0, 0, 0.2]
- what: outline
name: _encoder_knob_3
extrude: 0.2
shift: [0, 0, 0.4]
- what: outline
name: _encoder_knob_4
extrude: 0.2
shift: [0, 0, 0.6]
- what: outline
name: _encoder_knob_5
extrude: 0.2
shift: [0, 0, 0.8]
- what: outline
name: _encoder_knob
extrude: knob_height - 2
shift: [0, 0, 1]
- what: outline
name: _encoder_knob_5
extrude: 0.2
shift: [0, 0, knob_height - 1]
- what: outline
name: _encoder_knob_4
extrude: 0.2
shift: [0, 0, knob_height - 0.8]
- what: outline
name: _encoder_knob_3
extrude: 0.2
shift: [0, 0, knob_height - 0.6]
- what: outline
name: _encoder_knob_2
extrude: 0.2
shift: [0, 0, knob_height - 0.4]
- what: outline
name: _encoder_knob_1
extrude: 0.2
shift: [0, 0, knob_height - 0.2]
- what: outline
name: _encoder_stem
extrude: 2.25 + knob_skirt
shift: [0, 0, knob_height - 2.65 - knob_skirt]
operation: subtract
- what: outline
name: _encoder_stem_opening_1
extrude: 0.2
shift: [0, 0, knob_height - 0.4 - knob_skirt]
operation: subtract
- what: outline
name: _encoder_stem_opening_2
extrude: 0.2
shift: [0, 0, knob_height - 0.2 - knob_skirt]
operation: subtract
- what: outline
name: _encoder_knob_skirt
extrude: knob_skirt
shift: [0, 0, knob_height - knob_skirt]
operation: subtract
bottom_case:
- what: outline
name: board_outline
extrude: 3
- what: outline
name: _socket_cutout
extrude: 2
shift: [0, 0, 1]
operation: subtract
- what: outline
name: _encoder_bottom_cutout
extrude: 2
shift: [0, 0, 1]
operation: subtract
- what: outline
name: _all_bumpers
extrude: 0.5
operation: subtract
- what: outline
name: _diodes_cutout
extrude: 1.4
shift: [0, 0, 1.6]
operation: subtract
- what: outline
name: _return_diodes_cutout
extrude: 1.2
shift: [0, 0, 1.8]
operation: subtract
- what: outline
name: _xiao_bottom_cutout
extrude: 2.5
shift: [0, 0, 0.5]
operation: subtract
- what: outline
name: _xiao_cutout_wall
extrude: 1.2
shift: [0, 0, 1.8]
operation: subtract
- what: outline
name: _battery_wire_cutout
extrude: 2.1
shift: [0, 0, 0.9]
operation: subtract
- what: outline
name: _reset_cutout
extrude: 1.8
shift: [0, 0, 1.2]
operation: subtract