-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrush-main-board.kicad_pcb
19293 lines (19223 loc) · 792 KB
/
crush-main-board.kicad_pcb
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
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(property "SHEETTOTAL" "6")
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "/SCL_T")
(net 4 "Net-(D1-K)")
(net 5 "unconnected-(U1-5V-Pad55)")
(net 6 "PWM14")
(net 7 "+5V")
(net 8 "PWM15")
(net 9 "PWM22")
(net 10 "PWM33")
(net 11 "PWM36")
(net 12 "PWM37")
(net 13 "PWM23")
(net 14 "PWM24")
(net 15 "PWM25")
(net 16 "PWM28")
(net 17 "PWM29")
(net 18 "DIO30")
(net 19 "DIO31")
(net 20 "DIO32")
(net 21 "DIO34")
(net 22 "DIO35")
(net 23 "A{slash}DIO38")
(net 24 "A{slash}DIO39")
(net 25 "A{slash}DIO40")
(net 26 "A{slash}DIO41")
(net 27 "SCL_3V3")
(net 28 "SCL_5V")
(net 29 "SDA_3V3")
(net 30 "SDA_5V")
(net 31 "UART_RX")
(net 32 "UART_TX")
(net 33 "PWM2")
(net 34 "PWM3")
(net 35 "PWM4")
(net 36 "PWM5")
(net 37 "PWM6")
(net 38 "PWM7")
(net 39 "PWM8")
(net 40 "PWM9")
(net 41 "SPI_CS")
(net 42 "SPI_SDO")
(net 43 "SPI_SDI")
(net 44 "unconnected-(U1-3V3-Pad15)")
(net 45 "unconnected-(U1-D--Pad56)")
(net 46 "/SDA_T")
(net 47 "SPI_SCK")
(net 48 "A{slash}DIO16")
(net 49 "A{slash}DIO17")
(net 50 "A{slash}DIO20")
(net 51 "A{slash}DIO21")
(net 52 "unconnected-(U1-3V3-Pad46)")
(net 53 "unconnected-(U1-VUSB-Pad49)")
(net 54 "unconnected-(U1-VBAT-Pad50)")
(net 55 "unconnected-(U1-3V3-Pad51)")
(net 56 "unconnected-(U1-GND-Pad52)")
(net 57 "unconnected-(U1-PROGRAM-Pad53)")
(net 58 "unconnected-(U1-ON_OFF-Pad54)")
(net 59 "unconnected-(U1-R+-Pad60)")
(net 60 "unconnected-(U1-LED-Pad61)")
(net 61 "unconnected-(U1-T--Pad62)")
(net 62 "unconnected-(U1-T+-Pad63)")
(net 63 "unconnected-(U1-GND-Pad64)")
(net 64 "unconnected-(U1-R--Pad65)")
(net 65 "unconnected-(U1-D--Pad66)")
(net 66 "unconnected-(U1-D+-Pad67)")
(net 67 "PWM5_T")
(net 68 "PWM4_T")
(net 69 "PWM3_T")
(net 70 "PWM2_T")
(net 71 "PWM9_T")
(net 72 "PWM8_T")
(net 73 "PWM7_T")
(net 74 "PWM6_T")
(net 75 "unconnected-(U1-D+-Pad57)")
(net 76 "BATT")
(net 77 "unconnected-(U2-NC-Pad7)")
(net 78 "unconnected-(U3-NC-Pad7)")
(net 79 "GND_T")
(net 80 "+3V3_T")
(net 81 "unconnected-(U5-~{Alert}-Pad8)")
(net 82 "/+RELAY")
(net 83 "Net-(Q3-D)")
(net 84 "unconnected-(U6-~{Alert}-Pad8)")
(net 85 "A{slash}DIO26")
(net 86 "Kill")
(net 87 "BATT_T")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 04b277f4-98f9-4d9f-be65-7151058ba1a8)
(at 102.0572 63.5293 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2b96fb00-ba29-4fca-a3fe-4eda6bbf46db")
(attr smd)
(fp_text reference "C7" (at 0.9359 1.778 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d1db4ec-a32b-4ec4-b4e2-07ec030225c7)
)
(fp_text value "0u1" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef4a2275-c3bd-4064-8427-545c69cbe8e8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d031962e-23f4-4b7b-81be-bb659adf3fd9)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0cea0902-9cf9-49bf-84d0-3af99c826fe7))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f89c446d-8d12-4c45-ac90-abddf9689c06))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e242b798-a7a0-4c69-a578-08a2c30758e7))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee92404b-b4c9-4933-8d62-5ca67de93b0d))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c474118d-e6a7-4b9c-bca3-bea24614a296))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ec2fd22-bab7-4104-875d-311d65745b5b))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d7a0d93-0702-43bf-b5d1-8ce6e66da47b))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9ebb9d9-d032-4603-9d2c-51a31bb0a60a))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d31d9191-b97d-4fbb-9e5a-9d5f78b0b876))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 087a3b9e-c38f-4a47-b655-aadf62cc0030))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 79 "GND_T") (pintype "passive") (tstamp 8de24cd4-4094-4e2f-a11a-eac1c15d5aa4))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 80 "+3V3_T") (pintype "passive") (tstamp 605341de-1620-480a-ae75-a652d6e22389))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crush_Mainboard_Footprints:Teensy41" (layer "F.Cu")
(tstamp 0d83915d-58a8-4bc7-8d00-9ccd36be0021)
(at 50.6476 56.5216 -90)
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(path "/4aa96338-d3c0-4bdf-8b94-1e4ce1de8eab")
(attr through_hole)
(fp_text reference "U1" (at 0 -10.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 141a4b95-6647-4cc1-acf9-1d15c011f1b7)
)
(fp_text value "Teensy4.1" (at 0 10.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d56f486-b18f-4503-8d9e-0b39e3b8718f)
)
(fp_text user "USB" (at -26.67 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e448e5e-684d-484c-b2d4-d57e9b0606fa)
)
(fp_text user "Micro SD" (at 24.13 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45f9cdeb-362d-4a32-8090-98c86ffa8d2f)
)
(fp_text user "USB Host" (at -18.4658 2.4892 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c21cd0e-3ff5-4aef-8b45-c6e53313e96f)
)
(fp_text user "Ethernet" (at -12.065 -3.2766) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62ee0502-d60b-488e-bc06-291a361449ee)
)
(fp_line (start -31.75 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e2b50907-b4da-41ac-8a63-f68d0c854ae1))
(fp_line (start -31.75 3.81) (end -31.75 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1476f247-ed7e-4f38-b2b4-cd50ed6aa608))
(fp_line (start -30.48 -8.89) (end 30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e4bd9b37-2ca9-47ba-b7b8-8ecf3bcda0a9))
(fp_line (start -30.48 3.81) (end -31.75 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2abb0e72-04a0-4e54-9ae6-cd3722eeb6a8))
(fp_line (start -30.48 8.89) (end -30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cf95d55d-9119-4188-9cf4-9949b4b9ced3))
(fp_line (start -25.4 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1a783857-6566-47f3-a097-16deeb517b77))
(fp_line (start -25.4 3.81) (end -30.48 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b90f5f72-7696-4716-a48b-13417514ce6b))
(fp_line (start -25.4 3.81) (end -25.4 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e938a3cc-4f8d-49d4-a3bd-28e9f8a13a8f))
(fp_line (start -24.1808 3.2992) (end -21.6408 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e6b4d051-ec1e-4779-8a7e-9f9c3ec54231))
(fp_line (start -24.1808 3.2992) (end -11.4808 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 598cc4c3-0f40-41a0-a72b-c20ac94fd9ec))
(fp_line (start -24.1808 5.8392) (end -24.1808 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8333ef71-8419-4495-9328-a7a0aa22c5d7))
(fp_line (start -21.6408 3.2992) (end -21.6408 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 994b5e9a-59c3-4444-ade8-03e4658fd20b))
(fp_line (start -17.25 -6.3516) (end -17.25 -6.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a52a75fb-c1a2-4443-952a-05f174a0bdd0))
(fp_line (start -17.25 -6.1016) (end -17.25 -0.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 515c7685-78bf-4053-81f7-8a95efef77d1))
(fp_line (start -17.25 -0.1016) (end -13.25 -0.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d241ff46-34be-425a-9bb2-6fc970caa8b8))
(fp_line (start -13.25 -6.3516) (end -17.25 -6.3516)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 181cbf9b-7df3-4583-8b24-3acd070fe7dc))
(fp_line (start -13.25 -0.1016) (end -13.25 -6.3516)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d6c10ba6-e20a-4dea-ba0f-1c8cd25c466a))
(fp_line (start -11.4808 3.2992) (end -11.4808 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bf83f919-e0aa-4337-84ab-55dc39bad039))
(fp_line (start -11.4808 5.8392) (end -24.1808 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8065db32-d18e-4150-9d68-72411b13f5ed))
(fp_line (start -7.62 -6.35) (end -7.62 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9963e50c-637a-4220-b7a9-2e178888a668))
(fp_line (start -7.62 6.35) (end 5.08 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 177fc881-4b3d-4bcb-bae2-19e781d1489e))
(fp_line (start 5.08 -6.35) (end -7.62 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3a6a406e-d634-41e2-9a31-73941d05366f))
(fp_line (start 5.08 6.35) (end 5.08 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a39e6d40-158d-4cfa-a8a6-0bf1e9fc9004))
(fp_line (start 10.16 -1.27) (end 13.97 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8eb739f6-00a5-4d7d-83b0-152c6a257c0b))
(fp_line (start 10.16 1.27) (end 10.16 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8f5476d7-f33f-4d2f-aed8-66f0cdff713c))
(fp_line (start 13.97 -1.27) (end 13.97 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dc91d17b-bd8b-4681-bdb6-73b042b6599c))
(fp_line (start 13.97 1.27) (end 10.16 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 14ebda47-aef0-4e45-939d-7a5603f1e097))
(fp_line (start 17.78 -6.35) (end 17.78 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5aecf307-ab5e-4ed9-b8bc-9fbc73f67266))
(fp_line (start 17.78 6.35) (end 30.48 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8932b54c-4dba-4d29-9045-01ebc135957d))
(fp_line (start 29.21 -5.08) (end 29.21 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3595d8a3-5d5e-49e8-af6d-311eea030a64))
(fp_line (start 29.21 5.08) (end 30.48 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bdbc38d5-7bcd-4f79-aca6-95bf139d6828))
(fp_line (start 30.48 -8.89) (end 30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 73394ec1-d23b-48f4-b608-7e4a345ff9c1))
(fp_line (start 30.48 -6.35) (end 17.78 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 27c1e331-9954-4734-8401-4c835456602b))
(fp_line (start 30.48 -5.08) (end 29.21 -5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4e4c28cf-e5a3-4ba4-ae2c-8aa60ce89a98))
(fp_line (start 30.48 8.89) (end -30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fac1223c-b8cb-4270-9d23-1bee51209fa0))
(fp_circle (center 12.065 0) (end 12.7 -0.635)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1bc3e12b-66da-46b9-b339-9f0dff4214be))
(fp_poly
(pts
(xy 0.911 -0.688)
(xy 0.657 -0.434)
(xy 0.403 -0.815)
(xy 0.657 -1.069)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp f034888b-19c7-4176-b34a-f312ce0d2f4c))
(fp_poly
(pts
(xy 1.292 -0.18)
(xy 1.038 0.074)
(xy 0.784 -0.307)
(xy 1.038 -0.561)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 879023d9-b480-42be-a79f-d374fb696dc7))
(fp_poly
(pts
(xy 1.673 -0.561)
(xy 1.419 -0.307)
(xy 1.165 -0.688)
(xy 1.419 -0.942)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp d2de34f7-350b-4c46-a005-99f4f9d474db))
(fp_poly
(pts
(xy 1.673 0.328)
(xy 1.419 0.582)
(xy 1.165 0.201)
(xy 1.419 -0.053)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 7fb328f9-373e-4f3a-9aa2-4472fd6a0ca6))
(fp_poly
(pts
(xy 2.054 -0.053)
(xy 1.8 0.201)
(xy 1.546 -0.18)
(xy 1.8 -0.434)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 9c600b17-994d-4a8a-a51b-a4f9d8711da3))
(fp_poly
(pts
(xy 2.435 0.455)
(xy 2.181 0.709)
(xy 1.927 0.328)
(xy 2.181 0.074)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 9c794784-3337-44a8-b97e-45f298dc1c24))
(fp_poly
(pts
(xy 2.816 0.074)
(xy 2.562 0.328)
(xy 2.308 -0.053)
(xy 2.562 -0.307)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp c6bf528e-cc70-451e-9476-c50284fa95e4))
(fp_poly
(pts
(xy 3.197 -0.307)
(xy 2.943 -0.053)
(xy 2.689 -0.434)
(xy 2.943 -0.688)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e429af1d-b501-4aa5-98f6-dbc13d7e6037))
(pad "1" thru_hole rect (at -29.21 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e790c713-94b0-4024-8417-69a7f1d3ec13))
(pad "2" thru_hole circle (at -26.67 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 31 "UART_RX") (pinfunction "0_RX1_CRX2_CS1") (pintype "bidirectional") (tstamp f07ecdeb-ed02-4976-b9de-ed7f267f38f0))
(pad "3" thru_hole circle (at -24.13 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 32 "UART_TX") (pinfunction "1_TX1_CTX2_MISO1") (pintype "bidirectional") (tstamp f672b44b-0b60-4b88-9a2a-bd35015740f0))
(pad "4" thru_hole circle (at -21.59 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 33 "PWM2") (pinfunction "2_OUT2") (pintype "bidirectional") (tstamp 350c5af8-3e89-4a6d-a250-8c76073f9c43))
(pad "5" thru_hole circle (at -19.05 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 34 "PWM3") (pinfunction "3_LRCLK2") (pintype "bidirectional") (tstamp daadacde-e861-4d7c-9011-40d6c737cbd0))
(pad "6" thru_hole circle (at -16.51 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 35 "PWM4") (pinfunction "4_BCLK2") (pintype "bidirectional") (tstamp 77b579bf-0fb0-4dae-900b-fbb1d4117c44))
(pad "7" thru_hole circle (at -13.97 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 36 "PWM5") (pinfunction "5_IN2") (pintype "bidirectional") (tstamp 2da18450-6436-4c9a-9d46-83cae450969b))
(pad "8" thru_hole circle (at -11.43 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 37 "PWM6") (pinfunction "6_OUT1D") (pintype "bidirectional") (tstamp 051ab868-350d-46e5-9af2-a522fc976cb0))
(pad "9" thru_hole circle (at -8.89 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 38 "PWM7") (pinfunction "7_RX2_OUT1A") (pintype "bidirectional") (tstamp 49fdf50e-9f86-4241-ae9f-5521a446a920))
(pad "10" thru_hole circle (at -6.35 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 39 "PWM8") (pinfunction "8_TX2_IN1") (pintype "bidirectional") (tstamp 51761fb8-bb02-4763-9329-b97f777d0b02))
(pad "11" thru_hole circle (at -3.81 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 40 "PWM9") (pinfunction "9_OUT1C") (pintype "bidirectional") (tstamp 9aff0c07-7990-4f2a-937a-6ae55bd5bbb8))
(pad "12" thru_hole circle (at -1.27 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 41 "SPI_CS") (pinfunction "10_CS_MQSR") (pintype "bidirectional") (tstamp 15945847-2d9b-481b-ad2a-d8da0535faab))
(pad "13" thru_hole circle (at 1.27 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 42 "SPI_SDO") (pinfunction "11_MOSI_CTX1") (pintype "bidirectional") (tstamp 0f53a8fa-740d-48fd-80c9-c60559125002))
(pad "14" thru_hole circle (at 3.81 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 43 "SPI_SDI") (pinfunction "12_MISO_MQSL") (pintype "bidirectional") (tstamp c0227230-8b33-463f-96be-dceecc1544ca))
(pad "15" thru_hole circle (at 6.35 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(U1-3V3-Pad15)") (pinfunction "3V3") (pintype "power_in+no_connect") (tstamp 109323d5-35de-46b7-9bea-3bd7218b2565))
(pad "16" thru_hole circle (at 8.89 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 14 "PWM24") (pinfunction "24_A10_TX6_SCL2") (pintype "bidirectional") (tstamp f5de8c2c-6695-4774-a6ac-dd335f38f5f6))
(pad "17" thru_hole circle (at 11.43 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 15 "PWM25") (pinfunction "25_A11_RX6_SDA2") (pintype "bidirectional") (tstamp c90d7b76-2708-42ac-a05d-31c151a0e00d))
(pad "18" thru_hole circle (at 13.97 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 85 "A{slash}DIO26") (pinfunction "26_A12_MOSI1") (pintype "bidirectional") (tstamp c1e45498-76cc-4287-b260-edd1c478fdbe))
(pad "19" thru_hole circle (at 16.51 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 86 "Kill") (pinfunction "27_A13_SCK1") (pintype "bidirectional") (tstamp 74b6f674-3306-4d5d-8703-85cf5893601c))
(pad "20" thru_hole circle (at 19.05 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 16 "PWM28") (pinfunction "28_RX7") (pintype "bidirectional") (tstamp c33ad5de-5059-480f-879b-26933edbcc1e))
(pad "21" thru_hole circle (at 21.59 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 17 "PWM29") (pinfunction "29_TX7") (pintype "bidirectional") (tstamp 2e5b3fa1-b632-457b-98a3-9e403d05095e))
(pad "22" thru_hole circle (at 24.13 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 18 "DIO30") (pinfunction "30_CRX3") (pintype "bidirectional") (tstamp 9225d32d-5d8e-48ef-b988-f5dcc983c4b9))
(pad "23" thru_hole circle (at 26.67 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 19 "DIO31") (pinfunction "31_CTX3") (pintype "bidirectional") (tstamp 49be75c5-249d-4ea3-8053-cd238698919f))
(pad "24" thru_hole circle (at 29.21 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 20 "DIO32") (pinfunction "32_OUT1B") (pintype "bidirectional") (tstamp 7e4ee645-f982-4573-af90-fd432bc2717e))
(pad "25" thru_hole circle (at 29.21 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 10 "PWM33") (pinfunction "33_MCLK2") (pintype "bidirectional") (tstamp 50d6aaef-52d4-4d8c-aba2-767382bbdc04))
(pad "26" thru_hole circle (at 26.67 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 21 "DIO34") (pinfunction "34_RX8") (pintype "bidirectional") (tstamp ca7215fb-0162-4daf-a139-cf919f83f42d))
(pad "27" thru_hole circle (at 24.13 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 22 "DIO35") (pinfunction "35_TX8") (pintype "bidirectional") (tstamp cbe4ff6d-51fb-4fec-95ef-8eaf984b0865))
(pad "28" thru_hole circle (at 21.59 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 11 "PWM36") (pinfunction "36_CS") (pintype "bidirectional") (tstamp b4d3748b-20c6-429d-abf2-4bf818216006))
(pad "29" thru_hole circle (at 19.05 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 12 "PWM37") (pinfunction "37_CS") (pintype "bidirectional") (tstamp 2415ea1f-b4a8-48f8-ad22-00b757b2d931))
(pad "30" thru_hole circle (at 16.51 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 23 "A{slash}DIO38") (pinfunction "38_CS1_IN1") (pintype "bidirectional") (tstamp d47edf1c-7c6d-4b49-a4f3-3e6a5b3f1067))
(pad "31" thru_hole circle (at 13.97 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 24 "A{slash}DIO39") (pinfunction "39_MISO1_OUT1A") (pintype "bidirectional") (tstamp c65c5b94-02f2-4e8e-8913-74b15fc69cda))
(pad "32" thru_hole circle (at 11.43 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 25 "A{slash}DIO40") (pinfunction "40_A16") (pintype "bidirectional") (tstamp 81a16f62-9dd4-4a78-b6f3-42065762033e))
(pad "33" thru_hole circle (at 8.89 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 26 "A{slash}DIO41") (pinfunction "41_A17") (pintype "bidirectional") (tstamp e7f66da3-5a1b-4819-9741-9fe2f547bf7b))
(pad "34" thru_hole circle (at 6.35 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 19b6ac9d-08b4-4530-9bb3-280c51a3a42e))
(pad "35" thru_hole circle (at 3.81 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 47 "SPI_SCK") (pinfunction "13_SCK_LED") (pintype "bidirectional") (tstamp ae332088-9775-41d7-b82c-2d9c952f43e0))
(pad "36" thru_hole circle (at 1.27 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "PWM14") (pinfunction "14_A0_TX3_SPDIF_OUT") (pintype "bidirectional") (tstamp af853977-9d52-47b8-8d12-96c17e8cadcb))
(pad "37" thru_hole circle (at -1.27 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "PWM15") (pinfunction "15_A1_RX3_SPDIF_IN") (pintype "bidirectional") (tstamp 79fede83-ead4-40ea-9c57-8a03e632cebc))
(pad "38" thru_hole circle (at -3.81 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 48 "A{slash}DIO16") (pinfunction "16_A2_RX4_SCL1") (pintype "bidirectional") (tstamp a898af8a-2c38-419c-b943-05437fa2bf77))
(pad "39" thru_hole circle (at -6.35 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 49 "A{slash}DIO17") (pinfunction "17_A3_TX4_SDA1") (pintype "bidirectional") (tstamp 6a29c0d2-3260-4746-a27c-54da70f02e1f))
(pad "40" thru_hole circle (at -8.89 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 29 "SDA_3V3") (pinfunction "18_A4_SDA") (pintype "bidirectional") (tstamp 56ab01b3-8d95-42ad-86ab-10528fda6a3e))
(pad "41" thru_hole circle (at -11.43 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 27 "SCL_3V3") (pinfunction "19_A5_SCL") (pintype "bidirectional") (tstamp 4e022b3d-5780-4f43-b842-6962e5915fd1))
(pad "42" thru_hole circle (at -13.97 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 50 "A{slash}DIO20") (pinfunction "20_A6_TX5_LRCLK1") (pintype "bidirectional") (tstamp 34deb96e-618e-4c39-af3a-76b0a84aebf7))
(pad "43" thru_hole circle (at -16.51 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 51 "A{slash}DIO21") (pinfunction "21_A7_RX5_BCLK1") (pintype "bidirectional") (tstamp a878ee24-c616-4c5f-87dd-fb6c9410a37a))
(pad "44" thru_hole circle (at -19.05 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 9 "PWM22") (pinfunction "22_A8_CTX1") (pintype "bidirectional") (tstamp 77d3b8c1-86fd-4d59-a544-5b54baf63a2a))
(pad "45" thru_hole circle (at -21.59 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 13 "PWM23") (pinfunction "23_A9_CRX1_MCLK1") (pintype "bidirectional") (tstamp b81e25a9-f1c8-46e2-a7b9-62474d8472dd))
(pad "46" thru_hole circle (at -24.13 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 52 "unconnected-(U1-3V3-Pad46)") (pinfunction "3V3") (pintype "output+no_connect") (tstamp 18df564b-d111-49d8-be15-63d0a28e89d2))
(pad "47" thru_hole circle (at -26.67 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "output") (tstamp e9fd5cad-e486-4c6f-9ee3-919832bca51b))
(pad "48" thru_hole circle (at -29.21 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 4 "Net-(D1-K)") (pinfunction "VIN") (pintype "power_in") (tstamp 159cb0b5-ae6b-4fd5-af46-865014fbf4b2))
(pad "49" thru_hole circle (at -26.67 -5.08 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 53 "unconnected-(U1-VUSB-Pad49)") (pinfunction "VUSB") (pintype "power_out+no_connect") (tstamp 6279bc2a-5b13-4058-8755-ecbac6f7c824))
(pad "50" thru_hole circle (at 16.51 5.08 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 54 "unconnected-(U1-VBAT-Pad50)") (pinfunction "VBAT") (pintype "power_in+no_connect") (tstamp d2d60299-4e2d-437c-b17f-fa656eb7460c))
(pad "51" thru_hole circle (at 16.51 2.54 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 55 "unconnected-(U1-3V3-Pad51)") (pinfunction "3V3") (pintype "power_in+no_connect") (tstamp b7d27a05-9a14-4be2-b514-f56499a3f301))
(pad "52" thru_hole circle (at 16.51 0 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 56 "unconnected-(U1-GND-Pad52)") (pinfunction "GND") (pintype "input+no_connect") (tstamp c85b1ff1-6f9f-44e2-a3fa-0bf93440e904))
(pad "53" thru_hole circle (at 16.51 -2.54 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 57 "unconnected-(U1-PROGRAM-Pad53)") (pinfunction "PROGRAM") (pintype "input+no_connect") (tstamp c466f4bf-057c-42af-ba2e-b49ffe018f5b))
(pad "54" thru_hole circle (at 16.51 -5.08 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 58 "unconnected-(U1-ON_OFF-Pad54)") (pinfunction "ON_OFF") (pintype "input+no_connect") (tstamp dbc278a1-3e9b-4588-a0ed-1a26997825f5))
(pad "55" thru_hole rect (at -22.9108 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 5 "unconnected-(U1-5V-Pad55)") (pinfunction "5V") (pintype "power_out+no_connect") (tstamp f7a8d25a-40ba-4192-a078-73cb8758fa66))
(pad "56" thru_hole circle (at -20.3708 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 45 "unconnected-(U1-D--Pad56)") (pinfunction "D-") (pintype "bidirectional+no_connect") (tstamp 84b048f3-6049-41d4-8af4-57d2ac38b4f7))
(pad "57" thru_hole circle (at -17.8308 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 75 "unconnected-(U1-D+-Pad57)") (pinfunction "D+") (pintype "bidirectional+no_connect") (tstamp 4e6ff06f-de93-493b-93de-288a22f946b2))
(pad "58" thru_hole circle (at -15.2908 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d0c16553-afbe-44b7-9108-2591486d9a1f))
(pad "59" thru_hole circle (at -12.7508 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2f760f94-dfd1-4ae1-8742-80a425e376d8))
(pad "60" thru_hole rect (at -16.24 -5.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 59 "unconnected-(U1-R+-Pad60)") (pinfunction "R+") (pintype "bidirectional+no_connect") (tstamp e95483c0-622b-4fb1-b1ea-c3c42dc32faf))
(pad "61" thru_hole circle (at -16.24 -3.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 60 "unconnected-(U1-LED-Pad61)") (pinfunction "LED") (pintype "bidirectional+no_connect") (tstamp cf05596a-603b-4a1f-b270-acd73af80e33))
(pad "62" thru_hole circle (at -16.24 -1.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 61 "unconnected-(U1-T--Pad62)") (pinfunction "T-") (pintype "bidirectional+no_connect") (tstamp 6554fbc8-8e53-4102-81ee-2a1ad0a1ccaa))
(pad "63" thru_hole circle (at -14.24 -1.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 62 "unconnected-(U1-T+-Pad63)") (pinfunction "T+") (pintype "bidirectional+no_connect") (tstamp 053c5671-2326-4179-90c5-d0a0af9b66f2))
(pad "64" thru_hole circle (at -14.24 -3.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 63 "unconnected-(U1-GND-Pad64)") (pinfunction "GND") (pintype "power_in+no_connect") (tstamp 3c807929-3020-4802-9139-565e5cdcd1f8))
(pad "65" thru_hole circle (at -14.24 -5.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 64 "unconnected-(U1-R--Pad65)") (pinfunction "R-") (pintype "bidirectional+no_connect") (tstamp e529d995-76d9-4262-9027-b1be224d3e84))
(pad "66" thru_hole circle (at -28.48 -1.27 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 65 "unconnected-(U1-D--Pad66)") (pinfunction "D-") (pintype "bidirectional+no_connect") (tstamp b08f7dcd-4036-480f-a2b3-6d1599d26054))
(pad "67" thru_hole circle (at -28.48 1.27 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 66 "unconnected-(U1-D+-Pad67)") (pinfunction "D+") (pintype "bidirectional+no_connect") (tstamp f31b6262-583a-4b15-85c7-92430fbcb4ab))
(model "${KICAD_USER_DIR}/teensy.pretty/Teensy_4.1_Assembly.STEP"
(offset (xyz 0 0 0.762))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.7mm_Pad_Via" (layer "F.Cu")
(tstamp 197f247a-b0e7-4f0a-98ea-a61e29fc060a)
(at 107.95 19.05)
(descr "Mounting Hole 3.7mm")
(tags "mounting hole 3.7mm")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/524cf99e-d745-4a66-bcef-fd3383ee55d1")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81986d5a-c947-48d1-8031-54fae1f36ffd)
)
(fp_text value "MountingHole_Pad" (at 0 4.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d5e1bad-1f63-4708-a106-6c2894547669)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1c85eb7-eae1-49b3-8700-315a485cad53)
)
(fp_circle (center 0 0) (end 3.7 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 18fbddcc-b9a6-4d0e-8268-424dfcb703ad))
(fp_circle (center 0 0) (end 3.95 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ef16a103-906f-43a4-90c5-3e1bb7540b05))
(pad "1" thru_hole circle (at -2.775 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 7c426dfc-4133-4bde-96a3-4b08e1b6e797))
(pad "1" thru_hole circle (at -1.962221 -1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp a556c6ca-1d1c-4cfa-a452-be90e6744521))
(pad "1" thru_hole circle (at -1.962221 1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp b5751b26-0150-4232-9c33-50f160453b18))
(pad "1" thru_hole circle (at 0 -2.775) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 1a3d9eca-dde4-41f3-9de4-a1193d9e536c))
(pad "1" thru_hole circle (at 0 0) (size 7.4 7.4) (drill 3.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 7a96797e-3e6c-4eb1-b826-1cab2a6f5d63))
(pad "1" thru_hole circle (at 0 2.775) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp d5a0f596-41fc-472a-8405-f7cc03fca03d))
(pad "1" thru_hole circle (at 1.962221 -1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 5fb58694-a8bc-4072-a9cc-8e670cf09dee))
(pad "1" thru_hole circle (at 1.962221 1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 3386425b-4328-4f7f-aa37-651effab2368))
(pad "1" thru_hole circle (at 2.775 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp ee771821-198c-4cb4-9b6c-c8e15247f06b))
)
(footprint "Crush_Mainboard_Footprints:3x4_Header" (layer "F.Cu")
(tstamp 1bc577cf-f98b-4555-bdf2-a49b4877584c)
(at 30.988 17.018)
(property "MANUFACTURER" "")
(property "PARTREV" "")
(property "STANDARD" "")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(path "/c9196071-ec30-462c-8fb1-1f927ebedde3")
(attr through_hole)
(fp_text reference "J8" (at -6.388 -3.018) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 235f0476-4846-4fbe-ad66-7619350e16cd)
)
(fp_text value "3x4 Header" (at 0 5.334) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e390ab34-9421-42a7-88ce-8916db326c2e)
)
(fp_line (start -4.826 -3.556) (end 4.826 -3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f026bcf6-a5da-4fd4-8eb8-fc5b5dd1cda3))
(fp_line (start -4.826 3.556) (end -4.826 -3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95b2fa8f-16c0-4ce3-ad2e-52eab49238b9))
(fp_line (start 4.826 -3.556) (end 4.826 3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc329735-b543-44b4-b75e-477e2437b4ae))
(fp_line (start 4.826 3.556) (end -4.826 3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30599cdc-282a-41ce-97a1-a8ddef22a4bd))
(fp_line (start -5.08 -3.81) (end 5.08 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e833e435-34c2-407a-a39b-6c187701b050))
(fp_line (start -5.08 3.81) (end -5.08 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5265449-9503-4f70-9b0f-b218cf537b30))
(fp_line (start 5.08 -3.81) (end 5.08 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87ecf41a-1bc3-427b-9655-6b15eb94a25e))
(fp_line (start 5.08 3.81) (end -5.08 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41ed4a93-66ee-4df2-94a5-95cbf31e841b))
(fp_circle (center -5.73 2.54) (end -5.63 2.54)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 8777fa7e-04b3-4b73-8c51-2964c164be2b))
(pad "01" thru_hole rect (at -3.81 2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 48 "A{slash}DIO16") (pinfunction "01") (pintype "passive") (tstamp f5e9b7cb-2db1-4706-a1d3-fd8822eea0a6))
(pad "02" thru_hole circle (at -3.81 0) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "02") (pintype "passive") (tstamp d9cd412e-0d1e-41d7-8c72-3248d3b791d2))
(pad "03" thru_hole circle (at -3.81 -2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "03") (pintype "passive") (tstamp 2dfa0c2a-5153-4310-9aca-3862116529c9))
(pad "04" thru_hole circle (at -1.27 2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 49 "A{slash}DIO17") (pinfunction "04") (pintype "passive") (tstamp 5043cdfa-3898-4e92-b3f5-ae66d51e7b85))
(pad "05" thru_hole circle (at -1.27 0) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "05") (pintype "passive") (tstamp 22ff6f5c-220d-439f-968b-d76aeea6d7bd))
(pad "06" thru_hole circle (at -1.27 -2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "06") (pintype "passive") (tstamp 1cdaba86-e268-49d9-8766-0d14879cfb28))
(pad "07" thru_hole circle (at 1.27 2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 50 "A{slash}DIO20") (pinfunction "07") (pintype "passive") (tstamp c89aa7a3-366a-4582-b9ac-baa53176b61c))
(pad "08" thru_hole circle (at 1.27 0) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "08") (pintype "passive") (tstamp aafd042a-6c4b-40a2-bf9e-c258c0f09dbc))
(pad "09" thru_hole circle (at 1.27 -2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "09") (pintype "passive") (tstamp 2d7828a7-d8f2-4d8e-a48f-78aab183e421))
(pad "10" thru_hole circle (at 3.81 2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 51 "A{slash}DIO21") (pinfunction "10") (pintype "passive") (tstamp b615be23-88f2-47d9-aae0-f53452f8e495))
(pad "11" thru_hole circle (at 3.81 0) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "11") (pintype "passive") (tstamp b3f178a2-3e73-41b0-811f-42af55609657))
(pad "12" thru_hole circle (at 3.81 -2.54) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "12") (pintype "passive") (tstamp c26d5a22-074c-4a5a-b058-b61229e14af9))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 221b5309-4753-41ad-8d84-34f53ac60bd5)
(at 96.52 33.5495 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4e52a533-3046-45e6-9cdb-0d6f6b9536b9")
(attr smd)
(fp_text reference "C2" (at 0.2755 1.778 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d5e8e8e-30f0-4061-b2ce-b4fdfb6589af)
)
(fp_text value "0u1" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9a969bf-807b-4a63-b7b9-a51e15ce3104)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 55a130e6-2b77-4773-9ffd-34e6c2312cb3)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fae6c869-9742-4f8f-835f-d2d79e2a5e73))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dd974b2-e39c-4ccd-b398-99dd39d29e02))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d84b4ec4-21de-4ec2-9b91-e0357d1822ac))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45231d22-f88f-4462-89a3-2556d1e2a7bd))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0197e440-0df7-47f6-9957-8c8f2de71874))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef931a15-f9c3-4cbc-ba05-fa7950f5b5eb))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9bb3a32-f2a9-4b11-86d3-1b0de147adba))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b2401b5-91ef-4b8d-bfd2-3d050953d0a3))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dc416c4-336c-4cf2-a18f-d640bf408ff5))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 870cd33e-5844-45ff-8b5c-d179f1aab790))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 79 "GND_T") (pintype "passive") (tstamp fc06c948-c0c6-4e72-bd6d-823749e13081))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 80 "+3V3_T") (pintype "passive") (tstamp 67bb546e-e4f6-475d-a9cc-4b6bf8aa0528))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 26b35973-31db-4c0d-9de2-fe11c4f3980a)
(at 22.4028 69.5452)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "relay_killswitch.kicad_sch")
(property "Sheetname" "Relay Killswitch")
(property "ki_description" "0.5A Id, 50V Vds, N-Channel MOSFET, SOT-23")
(property "ki_keywords" "N-Channel MOSFET")
(path "/0e721f5c-da80-471e-ad5a-644eccf6c541/faaee3de-fa4b-4e3f-840b-f730f6f87df9")
(attr smd)
(fp_text reference "Q3" (at 0 2.4892) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp adc3cd6e-b4e6-4d67-b937-bf3c4dff34f2)
)
(fp_text value "BSN20" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6eb1a8b-9f8b-4660-8f28-fc622966a6c5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp a0310f50-9110-4ca8-8eb5-28e60b417be5)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89781385-1bdf-4aa3-9abf-e3a5ed6b05c1))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6178cf33-5fe4-4ffa-ba59-9381e8fbec98))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d104fa75-b9ca-442c-bbe5-d963afad528a))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74c4fd63-23f0-4fa2-99f8-c9fecb3284d9))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95c6a152-7de0-4142-86ed-71591f0c6444))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 141fc9f1-b05f-424f-ae80-f721471ff88f))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f06cd89-85b2-4b65-89a9-addc4e209933))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c7853a8-4ea6-4818-8325-6472c45d1d05))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c44fc1c-0425-4c5a-aa2f-8ffd95ffd5f2))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7aecff1f-0ee9-44cc-82da-8cb9ec174ce9))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ec1aae4-1f1b-421e-8aa2-c332b9688090))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c549c614-ef7b-40b4-8a24-716de7ca7b93))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3dd089d-7863-4742-ba2f-77fc9f62c2a4))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "G") (pintype "input") (tstamp 6ad22751-aea1-4cb4-ac06-2a0e8502eadf))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 85 "A{slash}DIO26") (pinfunction "S") (pintype "passive") (tstamp c27b788c-e047-407a-a29d-89d591ffe20e))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 83 "Net-(Q3-D)") (pinfunction "D") (pintype "passive") (tstamp d8de632e-f713-4c19-ac9d-a3f6195c108d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 27ba3618-9a0d-40fb-9a3e-03e4f670fc50)
(at 19.6365 69.5281 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "relay_killswitch.kicad_sch")
(property "Sheetname" "Relay Killswitch")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/0e721f5c-da80-471e-ad5a-644eccf6c541/7e867c78-1f58-4d23-9bdc-beaaed86b94a")
(attr smd)
(fp_text reference "R7" (at -2.2689 -0.0231 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3526913-da33-4ff7-8a11-5e13db5443d1)
)
(fp_text value "2k4" (at 0 1.43 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bb664e8-9a98-42a0-b4d3-a2593713c86c)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 24ae0562-fb8e-4d51-8a30-3c6e81e34253)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a95dcc65-8771-4f15-b814-20a6ea33d27c))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01f0f588-cbb4-49f1-81bb-29ba862d999f))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1f3af04-58e2-4f16-bb08-68bc03e26578))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da14cd60-d023-4855-90ce-d8cfafb6d797))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce81f745-dd92-4e56-a6e6-c205ada21692))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c336757c-538b-4709-851b-1f53c79d239e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0506a264-5510-4514-b239-83b444cc988c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ecf09e3-588e-4501-a39a-69c7f5009b81))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3f58555-3b99-4eb0-84d3-f490a3c6e633))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe3847b5-6a7a-4c44-a9d4-877fd27a7739))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 7f9993ce-f392-4f6a-85d3-745f2e980d56))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 85 "A{slash}DIO26") (pintype "passive") (tstamp a67e21e4-1766-48a5-9dd5-898ac399ba25))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crush_Mainboard_Footprints:3x3_Header" (layer "F.Cu")
(tstamp 2eb0371f-e5ce-4de3-8826-16ee826323cc)
(at 52.578 129.032 180)
(property "MANUFACTURER" "")
(property "PARTREV" "")
(property "STANDARD" "")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(path "/635edfc6-9af9-4c99-b42c-00088e8940a1")
(attr through_hole)
(fp_text reference "J11" (at -1.635 -4.826) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b706b04-6363-4e43-bcda-f96cd1b6ee4c)
)
(fp_text value "3x3 Header" (at 0 5.334) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2b9f035-8eef-4900-aa16-ce8751c587e3)
)
(fp_line (start -3.556 -3.556) (end 3.556 -3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fecf9e47-cd77-4781-b018-72e2ced5df7a))
(fp_line (start -3.556 3.556) (end -3.556 -3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 567f6823-a283-4823-bb36-ed01fa44eb7b))
(fp_line (start 3.556 -3.556) (end 3.556 3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8ddc1e0-33ea-4c64-9602-80f14555ccf2))
(fp_line (start 3.556 3.556) (end -3.556 3.556)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0a8c0f1-aabc-4289-aa77-c289b630323f))
(fp_line (start -3.81 -3.81) (end 3.81 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b706068b-e36e-4d72-b27f-6ca4a8b6e0d7))
(fp_line (start -3.81 3.81) (end -3.81 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 993ba1d3-4a61-4a9c-b93b-a52f27c1c69f))
(fp_line (start 3.81 -3.81) (end 3.81 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24847cf1-2726-4731-af10-14a6e99081f3))
(fp_line (start 3.81 3.81) (end -3.81 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba484b25-b2c6-47bb-9423-c2b5d49cdd20))
(fp_circle (center -4.46 2.54) (end -4.36 2.54)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 8cbd4242-9310-4dc9-b21e-d57e396cfe84))
(pad "01" thru_hole rect (at -2.54 2.54 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 10 "PWM33") (pinfunction "01") (pintype "passive") (tstamp 26962c67-64ee-4217-9b6f-05163ba7e078))
(pad "02" thru_hole circle (at -2.54 0 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "02") (pintype "passive") (tstamp 58341b36-ff07-46d5-88eb-df41c5da9363))
(pad "03" thru_hole circle (at -2.54 -2.54 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "03") (pintype "passive") (tstamp 751ce3e0-fc18-4845-aaaa-cc00553e9099))
(pad "04" thru_hole circle (at 0 2.54 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 11 "PWM36") (pinfunction "04") (pintype "passive") (tstamp d21bceca-cf59-4aff-9879-75206c338953))
(pad "05" thru_hole circle (at 0 0 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "05") (pintype "passive") (tstamp f58c00b8-a2eb-4329-b4d5-086382cbfd3f))
(pad "06" thru_hole circle (at 0 -2.54 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "06") (pintype "passive") (tstamp 57ca199e-daea-4a2d-a03d-22f8785d6432))
(pad "07" thru_hole circle (at 2.54 2.54 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 12 "PWM37") (pinfunction "07") (pintype "passive") (tstamp 020353ea-3651-4c98-82b6-fa7b8ce9b1d4))
(pad "08" thru_hole circle (at 2.54 0 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "08") (pintype "passive") (tstamp 6c7a6870-e534-4240-8ffd-b2fe31513c3b))
(pad "09" thru_hole circle (at 2.54 -2.54 180) (size 1.37 1.37) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "09") (pintype "passive") (tstamp 99fb71c1-309e-4095-aa49-34c514b26f6b))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 301ba419-3b4c-4a9f-ba15-b5b7aaa0f988)
(at 92.7901 60.8584 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/6f409fdd-6acb-4cd3-8405-259ddd0cbe07")
(attr smd)
(fp_text reference "C6" (at 0 1.8288 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 616724f2-2c3c-4343-9669-c4cea2b511c8)
)
(fp_text value "0u1" (at 0 1.68 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f4a3b9f-f85f-44d5-a080-47dc95aa6839)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ae3a919c-5df5-4bb0-8802-1f542fa395db)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e91c7f2-b230-4df0-b2c9-0cb6c40d357d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a51a544-2eb7-4821-bf04-6fceed186030))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c1e528b-9fcd-45ee-a3ff-aee202dd6d90))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2bf7c08-2d62-4be6-8d07-9cff1997fa8d))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb0643ee-cc86-4f14-8b90-01c279cb4329))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8cf53af-9358-497f-afa5-9ae1ddcc8cf4))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4aa3d54-52f1-46af-a1a4-2cf5c1895129))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b26fa5b4-9925-4787-9dc7-7bf4752ce115))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 42808ee7-3860-4241-975b-839caadd742b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51a2c6c0-296e-42c4-81fb-31db70ab8b38))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 79 "GND_T") (pintype "passive") (tstamp cfd3af61-dee4-461c-88a1-61e1e86a724f))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 80 "+3V3_T") (pintype "passive") (tstamp 81e6d8b8-fbba-4756-85f7-0c95a23dd10e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.7mm_Pad_Via" (layer "F.Cu")
(tstamp 30561f14-152f-4ebb-b2af-dd4eb2a9d60a)
(at 107.95 127)
(descr "Mounting Hole 3.7mm")
(tags "mounting hole 3.7mm")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/f28d3e86-a834-42a5-95cd-01cf702345b8")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -4.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 917aac25-006d-424c-8c69-fd5d7b5415dc)
)
(fp_text value "MountingHole_Pad" (at 0 4.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c832df0b-0a15-4382-8917-8e25a342fb69)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6f0be74-446e-4f0f-8514-41a43a28995c)
)
(fp_circle (center 0 0) (end 3.7 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 5fe2f995-8e9f-43d9-9f07-de808644c013))
(fp_circle (center 0 0) (end 3.95 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e4aca68b-a5dc-42ae-905b-ee61ae898cd0))
(pad "1" thru_hole circle (at -2.775 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 7e1067a2-d147-4288-b0bf-7ada13665b59))
(pad "1" thru_hole circle (at -1.962221 -1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 07b7ce7e-81e9-41df-8811-472f5279f0db))
(pad "1" thru_hole circle (at -1.962221 1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp af2f6460-0930-4273-8a01-0917f586c968))
(pad "1" thru_hole circle (at 0 -2.775) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp e082e3e4-3981-4126-8520-ce5976d7f457))
(pad "1" thru_hole circle (at 0 0) (size 7.4 7.4) (drill 3.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp be4b57b7-3cd2-4a41-942a-5fc0f4e80fb0))
(pad "1" thru_hole circle (at 0 2.775) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp f85dbaed-4ed9-4da0-a8e1-d05b1f84c6ac))
(pad "1" thru_hole circle (at 1.962221 -1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 14662a97-f151-4034-a9f1-e299bdad6bc1))
(pad "1" thru_hole circle (at 1.962221 1.962221) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp 29d7ff74-6854-484a-8796-b89e7a86bae9))
(pad "1" thru_hole circle (at 2.775 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (zone_connect 2) (tstamp ee45f3a2-11ee-46bc-bfc5-d7a8fa794265))
)
(footprint "MountingHole:MountingHole_3.7mm_Pad_Via" (layer "F.Cu")
(tstamp 30826eef-f82b-43ec-a636-c85f3239fc7d)
(at 19.05 127)
(descr "Mounting Hole 3.7mm")
(tags "mounting hole 3.7mm")
(property "Sheetfile" "crush-main-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/39f968c8-a373-49c8-ad35-7cb6f23a27b6")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))