-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkp3sExpander.kicad_pcb
6386 lines (6371 loc) · 255 KB
/
kp3sExpander.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 20211014) (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)
)
(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)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "SPI2_NSS")
(net 3 "VCC")
(net 4 "SPI2_SCK")
(net 5 "SPI2_MOSI")
(net 6 "SPI2_MISO")
(net 7 "PD13")
(net 8 "PC6")
(net 9 "PD4")
(net 10 "PD5")
(net 11 "PD11")
(net 12 "PD7")
(net 13 "PD10")
(net 14 "PD9")
(net 15 "PD8")
(net 16 "PE15")
(net 17 "PE14")
(net 18 "PE13")
(net 19 "PE12")
(net 20 "PE11")
(net 21 "PE10")
(net 22 "PE9")
(net 23 "PE8")
(net 24 "PE7")
(net 25 "PD1")
(net 26 "PD0")
(net 27 "PD15")
(net 28 "PD14")
(net 29 "3V3")
(net 30 "PC5_BEEPER")
(net 31 "INT")
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x14_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 61D70EE1) (tstamp 0041033f-e7de-413c-9f78-59c554b8a0fb)
(at 122 58.42)
(descr "Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 2x14 2.54mm double row")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/462c89bc-d84c-443d-9798-5f65e0963468")
(attr through_hole)
(fp_text reference "J2" (at 0.3772 -2.3876) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 105537bd-7efa-47b8-b470-01dd4fa19426)
)
(fp_text value "Conn_02x14_Odd_Even" (at -5.65 35.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 563c559a-5e79-420c-9cff-0c7b9fe3ac9c)
)
(fp_line (start -1.49 32.66) (end -1.05 32.66) (layer "F.SilkS") (width 0.12) (tstamp 0661f1e3-a57a-4a75-b8dd-9a28441e057d))
(fp_line (start -1.49 25.76) (end -1.05 25.76) (layer "F.SilkS") (width 0.12) (tstamp 0ffd0657-b8b3-42fe-959a-da1e96461cb2))
(fp_line (start -1.49 19.96) (end -1.05 19.96) (layer "F.SilkS") (width 0.12) (tstamp 129d4903-8fd4-434e-87d5-89f20b2f5dfb))
(fp_line (start -1.49 5.44) (end -1.05 5.44) (layer "F.SilkS") (width 0.12) (tstamp 27a93007-bf7b-4524-bd4b-5dc0c2703001))
(fp_line (start 1.11 -1.33) (end 1.11 0) (layer "F.SilkS") (width 0.12) (tstamp 2828d2fa-5040-451e-8899-27c97bd634d0))
(fp_line (start -1.49 13.06) (end -1.05 13.06) (layer "F.SilkS") (width 0.12) (tstamp 2be2d22e-c5df-463d-aa48-f33cc17ffeb1))
(fp_line (start -1.49 4.72) (end -1.05 4.72) (layer "F.SilkS") (width 0.12) (tstamp 2d63f959-939c-45d0-bd8a-293a62d5780b))
(fp_line (start -1.49 15.6) (end -1.05 15.6) (layer "F.SilkS") (width 0.12) (tstamp 2d94effa-0bef-415e-978d-17d1d64762aa))
(fp_line (start -1.49 14.88) (end -1.05 14.88) (layer "F.SilkS") (width 0.12) (tstamp 3c3acc0d-0b40-48c6-aec7-cd7c6d6ba5b1))
(fp_line (start -1.49 22.5) (end -1.05 22.5) (layer "F.SilkS") (width 0.12) (tstamp 3c8cfe28-bf2f-49d1-8ca5-b5b67dc7012d))
(fp_line (start -1.49 2.9) (end -1.05 2.9) (layer "F.SilkS") (width 0.12) (tstamp 3d1219af-cda2-4584-9628-aecd6de4af1b))
(fp_line (start -1.49 0.36) (end -1.11 0.36) (layer "F.SilkS") (width 0.12) (tstamp 4a64f70c-4a25-4dca-92d6-592e81c4c49f))
(fp_line (start -1.49 12.34) (end -1.05 12.34) (layer "F.SilkS") (width 0.12) (tstamp 538c16fa-0679-40d6-a441-257629db64ae))
(fp_line (start -1.49 18.14) (end -1.05 18.14) (layer "F.SilkS") (width 0.12) (tstamp 6b3f6bef-4213-4cc5-b76f-8e00c345058a))
(fp_line (start -1.49 9.8) (end -1.05 9.8) (layer "F.SilkS") (width 0.12) (tstamp 7ccbb3a5-654b-4eeb-b8b5-a7f7ad4c8e9f))
(fp_line (start -1.49 7.98) (end -1.05 7.98) (layer "F.SilkS") (width 0.12) (tstamp 7eca083c-09d2-435b-af6a-f59d7da247bb))
(fp_line (start -1.49 30.12) (end -1.05 30.12) (layer "F.SilkS") (width 0.12) (tstamp 7fcffdbd-4117-48c1-93ae-368c841b140b))
(fp_line (start -1.49 27.58) (end -1.05 27.58) (layer "F.SilkS") (width 0.12) (tstamp 95c93a20-0b95-46a0-a3b1-f255d06841f9))
(fp_line (start -1.49 10.52) (end -1.05 10.52) (layer "F.SilkS") (width 0.12) (tstamp 9f757e7d-9e34-41d3-9577-a7345f131ef9))
(fp_line (start -1.49 17.42) (end -1.05 17.42) (layer "F.SilkS") (width 0.12) (tstamp a07f27c2-b488-481d-a56f-5ded3bf8ab22))
(fp_line (start -1.49 28.3) (end -1.05 28.3) (layer "F.SilkS") (width 0.12) (tstamp b45355a8-6a1c-4911-b475-0ffe1631a0ac))
(fp_line (start -1.49 20.68) (end -1.05 20.68) (layer "F.SilkS") (width 0.12) (tstamp bdc1ef1b-de62-4bba-a094-41793e8c8c19))
(fp_line (start -1.49 7.26) (end -1.05 7.26) (layer "F.SilkS") (width 0.12) (tstamp bf77c7d9-88ff-4ffb-ba39-846088d9d6ee))
(fp_line (start -1.49 25.04) (end -1.05 25.04) (layer "F.SilkS") (width 0.12) (tstamp c9ce16f2-ae81-4840-ac74-826771754078))
(fp_line (start -1.49 2.18) (end -1.05 2.18) (layer "F.SilkS") (width 0.12) (tstamp d2124e1b-ce93-48c9-804a-94e81c5954dc))
(fp_line (start -1.49 33.38) (end -1.05 33.38) (layer "F.SilkS") (width 0.12) (tstamp d4878b39-fe51-4666-9959-0f2475c6fb84))
(fp_line (start -1.49 -0.36) (end -1.11 -0.36) (layer "F.SilkS") (width 0.12) (tstamp da9d24b7-346d-4eba-98d3-ae205918be23))
(fp_line (start 0 -1.33) (end 1.11 -1.33) (layer "F.SilkS") (width 0.12) (tstamp de7d238c-2231-4ff0-bfa5-5b1b54cbcd61))
(fp_line (start -1.49 23.22) (end -1.05 23.22) (layer "F.SilkS") (width 0.12) (tstamp f37cd94c-d2bb-46fb-81cc-451a601fdb70))
(fp_line (start -1.49 30.84) (end -1.05 30.84) (layer "F.SilkS") (width 0.12) (tstamp f90af0bc-5755-4e2b-9ad7-df58f69d02bd))
(fp_line (start -13.05 34.85) (end 1.8 34.85) (layer "F.CrtYd") (width 0.05) (tstamp 057e1f99-c83d-4005-9855-fc0ebf4a64fa))
(fp_line (start 1.8 -1.75) (end -13.05 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0996d6c5-b991-4798-a2e6-f3fbb7effbaf))
(fp_line (start -13.05 -1.75) (end -13.05 34.85) (layer "F.CrtYd") (width 0.05) (tstamp 394de549-2153-4118-a70c-2cf6675f7927))
(fp_line (start 1.8 34.85) (end 1.8 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3ce7d1c5-6125-4e1f-8456-d33c6a2ab0d4))
(fp_line (start 0 15.54) (end 0 14.94) (layer "F.Fab") (width 0.1) (tstamp 1eb61aa9-6da1-4798-a086-4a74d7eea0c1))
(fp_line (start 0 33.32) (end 0 32.72) (layer "F.Fab") (width 0.1) (tstamp 47fdbf7e-38f9-4fd7-99a6-de4078d1a65b))
(fp_line (start 0 7.92) (end 0 7.32) (layer "F.Fab") (width 0.1) (tstamp 4f9d0ed5-f10a-48f7-9890-d8f7780962b1))
(fp_line (start 0 18.08) (end 0 17.48) (layer "F.Fab") (width 0.1) (tstamp 96934109-1c7d-4964-898f-7aa79cdfd7b5))
(fp_line (start 0 5.38) (end 0 4.78) (layer "F.Fab") (width 0.1) (tstamp 981752d9-9b05-459b-ae6c-ec700bccbed8))
(fp_line (start 0 20.62) (end 0 20.02) (layer "F.Fab") (width 0.1) (tstamp a21dbdab-500c-4b77-a276-9b382810c707))
(fp_line (start 0 13) (end 0 12.4) (layer "F.Fab") (width 0.1) (tstamp a56f1b88-ff04-48a8-ab98-baa129b0d6aa))
(fp_line (start 0 0.3) (end 0 -0.3) (layer "F.Fab") (width 0.1) (tstamp a9396233-2988-4fcc-ae65-3290d37dd63c))
(fp_line (start 0 30.78) (end 0 30.18) (layer "F.Fab") (width 0.1) (tstamp af4b99ee-b9fc-4f66-b6a2-41a088689fbe))
(fp_line (start 0 23.16) (end 0 22.56) (layer "F.Fab") (width 0.1) (tstamp c2d78d5e-ac30-4395-8235-c290d6afc603))
(fp_line (start 0 28.24) (end 0 27.64) (layer "F.Fab") (width 0.1) (tstamp c68159e1-8b44-4f56-a069-37611a86addf))
(fp_line (start 0 25.7) (end 0 25.1) (layer "F.Fab") (width 0.1) (tstamp e3442de8-9ca5-43dd-ad5d-e6b881ac700b))
(fp_line (start 0 10.46) (end 0 9.86) (layer "F.Fab") (width 0.1) (tstamp f52e8c03-6740-4545-9b00-7af85ca7f9bb))
(fp_line (start 0 2.84) (end 0 2.24) (layer "F.Fab") (width 0.1) (tstamp fd605fc9-cca3-4538-82d6-6c23d210ade0))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "SPI2_SCK") (pinfunction "Pin_1") (pintype "passive") (tstamp 4ddcee61-2c9a-44bd-9638-4018f25d7d97))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "SPI2_NSS") (pinfunction "Pin_2") (pintype "passive") (tstamp b7c25b7b-132f-489e-aa1f-c0bc41d89f04))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "SPI2_MOSI") (pinfunction "Pin_3") (pintype "passive") (tstamp 8e5fa50c-262e-47cd-a190-1c245b19ff93))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "SPI2_MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 7fdef218-6a64-4038-bcae-aa9de136d43c))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "PC5_BEEPER") (pinfunction "Pin_5") (pintype "passive") (tstamp 211a0da5-c851-4434-9120-ed05d002205a))
(pad "6" thru_hole oval (at -2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "INT") (pinfunction "Pin_6") (pintype "passive") (tstamp df4162ce-8340-41d7-93f2-1cf419cb95c8))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "PC6") (pinfunction "Pin_7") (pintype "passive") (tstamp 89507691-30fb-4f98-9ec1-1b903564bb9a))
(pad "8" thru_hole oval (at -2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "PD13") (pinfunction "Pin_8") (pintype "passive") (tstamp dc2c8292-4927-47c0-b726-06b485456a4a))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "PD5") (pinfunction "Pin_9") (pintype "passive") (tstamp c390cfdf-e9e3-4623-b0ca-f851dd3ded5f))
(pad "10" thru_hole oval (at -2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "PD4") (pinfunction "Pin_10") (pintype "passive") (tstamp d68932e2-6735-4229-b317-e8cffddd0ab2))
(pad "11" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "PD7") (pinfunction "Pin_11") (pintype "passive") (tstamp ccb8d4a5-6c04-4214-8a93-a82da8cb20d8))
(pad "12" thru_hole oval (at -2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "PD11") (pinfunction "Pin_12") (pintype "passive") (tstamp d9632275-c998-48e8-946d-05879b0793eb))
(pad "13" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "PD9") (pinfunction "Pin_13") (pintype "passive") (tstamp 74957951-f69a-4325-91f6-8d6f635dda91))
(pad "14" thru_hole oval (at -2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "PD10") (pinfunction "Pin_14") (pintype "passive") (tstamp 834ff83d-3db9-47b9-ae27-5cb38c94b6ba))
(pad "15" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "PE15") (pinfunction "Pin_15") (pintype "passive") (tstamp 1b715c4f-9664-45c5-a3f0-e94d3e408e41))
(pad "16" thru_hole oval (at -2.54 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "PD8") (pinfunction "Pin_16") (pintype "passive") (tstamp daa888ed-f856-4900-a834-bf78b7d08738))
(pad "17" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "PE13") (pinfunction "Pin_17") (pintype "passive") (tstamp 8414148e-1bbd-4e04-a998-83324a63c720))
(pad "18" thru_hole oval (at -2.54 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "PE14") (pinfunction "Pin_18") (pintype "passive") (tstamp 720f660c-bcc7-4f22-8440-9946d77b046c))
(pad "19" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "PE11") (pinfunction "Pin_19") (pintype "passive") (tstamp 4c6fb14a-f0c3-41d1-98d4-976439a1a844))
(pad "20" thru_hole oval (at -2.54 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "PE12") (pinfunction "Pin_20") (pintype "passive") (tstamp 71a53963-69e2-43f8-b14e-02854758d8f9))
(pad "21" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "PE9") (pinfunction "Pin_21") (pintype "passive") (tstamp d8af19d8-6c46-4487-8b13-e535781bb4e7))
(pad "22" thru_hole oval (at -2.54 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "PE10") (pinfunction "Pin_22") (pintype "passive") (tstamp 7c776a17-a2ba-4811-befd-0267d346a257))
(pad "23" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "PE7") (pinfunction "Pin_23") (pintype "passive") (tstamp 288d7b37-8a6c-43cf-b4e1-32fa853b7317))
(pad "24" thru_hole oval (at -2.54 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "PE8") (pinfunction "Pin_24") (pintype "passive") (tstamp 919e5dd6-41c9-4041-9198-5c393d733dd4))
(pad "25" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "PD0") (pinfunction "Pin_25") (pintype "passive") (tstamp 385530ef-1953-4c82-9430-c923dcace3fe))
(pad "26" thru_hole oval (at -2.54 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "PD1") (pinfunction "Pin_26") (pintype "passive") (tstamp 1bda2056-fd24-4859-ba37-f29727fe908d))
(pad "27" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "PD14") (pinfunction "Pin_27") (pintype "passive") (tstamp e1ed50ad-4742-48a5-bc72-8efe700932e3))
(pad "28" thru_hole oval (at -2.54 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "PD15") (pinfunction "Pin_28") (pintype "passive") (tstamp 3cf9a0fe-1e6d-4519-af0a-237356a70b80))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x14_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 14dc4333-7baf-4541-9628-cf7c2d5a1495)
(at 103.5 96.5)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/41fc605d-4371-4fc8-ab4d-ee3bb0a68876")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27c4978a-2231-4bb7-bb35-e9301b587623)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aca6779d-cfd0-45d0-b17d-60dd6bd00311)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60b89c17-3ebe-4892-94b8-c7fb9e074c8c)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp a4e9a030-90a7-4093-9c92-7d01fe32bea2))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0f9791a9-be73-411f-82f6-c5554cedfdc1))
(pad "1" thru_hole circle locked (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp cc4e4a4b-2049-496a-bbfb-200000aa2f3a))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 71ce4451-2d9f-4eb5-8f4c-07e0dd215a44)
(at 103.5 53.5)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/399d85f6-cd8f-492c-9c61-92929c7b03e3")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32960417-e3f5-42d9-b2c1-3dc2df6a8e15)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc0c57d5-922e-4a2e-9e22-081ca6c8e6cf)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7610efc5-ebf5-4bf7-815c-b7cfba1a6df4)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp baebd298-dd45-4f9f-9b28-932c5f6872b4))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3a554c3d-8932-4c1e-bdda-48a0be801bd1))
(pad "1" thru_hole circle locked (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 32313dc1-d724-4b71-8d92-9030c03462a4))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 61D72E55) (tstamp 770382e4-adea-4584-91c2-cb4d17ed7ad5)
(at 133.35 58.42 90)
(descr "Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x06 2.54mm double row")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/12f4b8de-6ca7-4ff3-9e1f-f4593a5920d7")
(attr through_hole)
(fp_text reference "J3" (at -2.159 -0.127 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ddc0a450-62da-44f1-8d2a-cd11cc45df9b)
)
(fp_text value "Conn_02x06_Odd_Even" (at 5.655 14.97 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c695eec8-0fc2-4794-9e92-136600237634)
)
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 92e51780-1b62-4de4-876e-1cbf983e2431))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp cb08fed1-06bd-43a0-ba30-dd258fbdaeca))
(fp_line (start 13.1 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 032aa1a3-4dee-478e-a35e-73b3e4d52ac4))
(fp_line (start -1.8 14.5) (end 13.1 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 52da22f4-7685-4718-8014-4c0e245f8436))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 9e24295b-4cdc-4041-8cb7-dc9097bbaa1e))
(fp_line (start 13.1 14.5) (end 13.1 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a092d9d2-488a-4bd4-82d8-d2f5413ec9b8))
(fp_line (start -0.32 7.3) (end 4.04 7.3) (layer "F.Fab") (width 0.1) (tstamp 070ed117-51c9-4b06-a0fe-fce49f877de2))
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer "F.Fab") (width 0.1) (tstamp 16a2d487-8ebc-4c9f-b15d-b1899a7343ff))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 29b0cd29-5fb0-4d8b-8b32-68527494b8bc))
(fp_line (start -0.32 12.38) (end 4.04 12.38) (layer "F.Fab") (width 0.1) (tstamp 2e188bff-34cf-4050-87a4-e4c39eccfecd))
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer "F.Fab") (width 0.1) (tstamp 2e35aebd-838e-4cf9-8269-3ca63c1c2f23))
(fp_line (start -0.32 0.32) (end 4.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 39236a3e-c895-49a0-a47a-36c7ecafa538))
(fp_line (start -0.32 2.22) (end 4.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 3cc2db8d-c4db-475c-8b6a-3d273e35f4c2))
(fp_line (start -0.32 9.84) (end 4.04 9.84) (layer "F.Fab") (width 0.1) (tstamp 41dd1783-6e8c-467f-989c-fcfb18cb7cfa))
(fp_line (start -0.32 7.94) (end 4.04 7.94) (layer "F.Fab") (width 0.1) (tstamp 50ca1238-148f-4afc-8785-704472571fe0))
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer "F.Fab") (width 0.1) (tstamp 53fb7cb4-28ba-4586-b026-fc4c0c52093c))
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp 67035dcc-9969-45fb-9dac-b2c087dbb42e))
(fp_line (start -0.32 13.02) (end 4.04 13.02) (layer "F.Fab") (width 0.1) (tstamp 67fd0919-fdd3-4b4d-a1d7-5789b86ad9ca))
(fp_line (start -0.32 4.76) (end 4.04 4.76) (layer "F.Fab") (width 0.1) (tstamp 6c650119-3ca0-4c9e-8fa5-0002ff332bfc))
(fp_line (start -0.32 2.86) (end 4.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 9f654573-9bb0-4173-8182-2ddc5150d99f))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp a7fb4670-93ba-45d6-a1a8-e58dc4a868bd))
(fp_line (start -0.32 5.4) (end 4.04 5.4) (layer "F.Fab") (width 0.1) (tstamp b230163a-f333-4cb6-9fda-f1101f75fb0c))
(fp_line (start -0.32 10.48) (end 4.04 10.48) (layer "F.Fab") (width 0.1) (tstamp cf8f4696-df27-46e4-9ca8-c266535fc72c))
(fp_line (start -0.32 -0.32) (end 4.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp d7ae4985-3b43-4bf3-a8d8-c9af28fe6079))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 321f8e6f-068a-407b-b04e-f7affad93c2d))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 51b7dcbb-afe3-48c0-9a0f-f6059dfd5e76))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_3") (pintype "passive") (tstamp 62ea599a-1fd9-4b96-a691-f2003105cd1e))
(pad "4" thru_hole oval (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp ee67e05f-627e-45a0-bcae-2db884541eaf))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_5") (pintype "passive") (tstamp cd806a6f-f8a9-491e-880c-2d13cc84b81a))
(pad "6" thru_hole oval (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 9d3d38ae-a8a5-4416-b511-ca7436d9a0a7))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_7") (pintype "passive") (tstamp 8c26b1ce-7905-420c-94f2-f4ee6e84c498))
(pad "8" thru_hole oval (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp eab33dd4-f27c-4388-a5bb-39c5732ee77e))
(pad "9" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_9") (pintype "passive") (tstamp 7c4038c2-ab49-4615-8e90-11b64732b41a))
(pad "10" thru_hole oval (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp 4c8a3676-2f6c-4e20-ae29-880454ecc21c))
(pad "11" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_11") (pintype "passive") (tstamp c9a6b415-b8ff-47dc-b956-272cc94ec852))
(pad "12" thru_hole oval (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp 0e8372a7-8009-4842-a083-14e91deccbbd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 86260a19-c0af-43da-b4f9-5dd237644c93)
(at 176.5 96.5)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/5f502b09-63cb-46ac-a803-a353adca1ad9")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19fc4ca5-1a28-4586-8cd3-df1475332678)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbe8564c-66f2-4224-9b11-bad0283fbb96)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 972abb8b-a1ab-4a5f-8821-a24d90da4170)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 5056e871-99d9-43eb-906d-5abe79266aae))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2aea3dcd-2a2e-4db7-9521-e916b895b97c))
(pad "1" thru_hole circle locked (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp d97bad62-2c9d-4291-8a06-442e93969ac1))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 61D72E6D) (tstamp a8b006bd-ea2a-46df-a7d3-dfb3e29c97e9)
(at 146.558 91.44 -90)
(descr "Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x06 2.54mm double row")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/bc632d0a-3a87-4416-9b9b-52866ba737a6")
(attr through_hole)
(fp_text reference "J4" (at -2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3546c973-36bc-4d5d-b823-ffb7ecee1ff8)
)
(fp_text value "Conn_02x06_Odd_Even" (at 5.655 14.97 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9069c5f0-0f3d-4b74-b322-75fb4a5b113b)
)
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 3545b61d-9b65-4f21-9836-35e715bf0176))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp a0261c3f-a4ea-4e70-99b7-72c8dc7061ba))
(fp_line (start 13.1 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 26a2940f-d35a-4798-82ac-e95ee62915b2))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 287b1776-a033-4f39-a2b2-6aa5c162acdc))
(fp_line (start -1.8 14.5) (end 13.1 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 8762f742-cb8b-4f13-86c2-3f2fb2a08a60))
(fp_line (start 13.1 14.5) (end 13.1 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp cee88e69-ec16-4410-846a-8d3cc08168b5))
(fp_line (start -0.32 10.48) (end 4.04 10.48) (layer "F.Fab") (width 0.1) (tstamp 08992c73-0c16-4254-9442-299d8ff2522e))
(fp_line (start -0.32 4.76) (end 4.04 4.76) (layer "F.Fab") (width 0.1) (tstamp 29537399-f3b9-4a6b-8dc9-a08b66ada457))
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer "F.Fab") (width 0.1) (tstamp 3140f392-6d0e-4ee5-a5e7-023d221c49ff))
(fp_line (start -0.32 2.86) (end 4.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 4416ee81-22ce-463c-b046-fce19515743a))
(fp_line (start -0.32 0.32) (end 4.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 447e4e28-b939-4e9d-aafb-84338600ae25))
(fp_line (start -0.32 13.02) (end 4.04 13.02) (layer "F.Fab") (width 0.1) (tstamp 4743f2ce-4153-4134-9949-dcb8228ed6d2))
(fp_line (start -0.32 2.22) (end 4.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 6b16fa36-900a-4f23-b0e4-a71ec6a4e3f7))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 6daa8a62-c111-4a13-a352-33a4e75b2b7d))
(fp_line (start -0.32 12.38) (end 4.04 12.38) (layer "F.Fab") (width 0.1) (tstamp 6db28ccb-71d4-419f-a333-4a584119062a))
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp 89294950-2f26-48a4-a415-4d4cd8128865))
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer "F.Fab") (width 0.1) (tstamp a2183ce6-124b-4593-b88e-26b9900ecf79))
(fp_line (start -0.32 9.84) (end 4.04 9.84) (layer "F.Fab") (width 0.1) (tstamp ad347454-2576-4bec-8458-3dde65331f59))
(fp_line (start -0.32 7.94) (end 4.04 7.94) (layer "F.Fab") (width 0.1) (tstamp b514090f-694e-4f30-8e43-9d7b5cd45d82))
(fp_line (start -0.32 -0.32) (end 4.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp cb20bc02-3b2b-48d9-9b37-2bbfb8ccb793))
(fp_line (start -0.32 5.4) (end 4.04 5.4) (layer "F.Fab") (width 0.1) (tstamp d1171673-171a-403a-afb1-d2e02cea1ff9))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp d70a4d13-b995-433d-af91-a6342da2aa36))
(fp_line (start -0.32 7.3) (end 4.04 7.3) (layer "F.Fab") (width 0.1) (tstamp d95f528e-ce90-44ea-b3c0-d0440b0877d6))
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer "F.Fab") (width 0.1) (tstamp fd21d77f-6b64-445a-890c-8f4ce49ba233))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 44b69ac7-6dc9-4dd9-be0b-6da89e700f45))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "3V3") (pinfunction "Pin_2") (pintype "passive") (tstamp d457ad69-4290-435c-8f86-df946197857d))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 1d3ba3f1-b9ae-4424-bae2-a14d82883305))
(pad "4" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 217c6a12-31cb-46ab-ba7e-1acba1dc19a3))
(pad "5" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp baeaca34-a388-4fb6-81fe-1a7294d4426f))
(pad "6" thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "3V3") (pinfunction "Pin_6") (pintype "passive") (tstamp 0a231302-441a-41b5-9f5e-aeb083585cea))
(pad "7" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 19d62ff8-971e-4ecd-919b-bdf4ea2d6097))
(pad "8" thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "3V3") (pinfunction "Pin_8") (pintype "passive") (tstamp aeb87568-3208-4720-9c87-1c4c9e7c7d90))
(pad "9" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 45e583d9-6699-4707-8d23-253a07a48073))
(pad "10" thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "3V3") (pinfunction "Pin_10") (pintype "passive") (tstamp 80186714-a56d-4959-b4cd-89c54a0bc392))
(pad "11" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp 94ccb849-2e2d-48b6-817b-d83f2768abcb))
(pad "12" thru_hole oval (at 2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "3V3") (pinfunction "Pin_12") (pintype "passive") (tstamp 71e041a1-a8bd-44ff-8619-db7c294975a7))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "kp3sExpander:FPC_32" (layer "F.Cu")
(tedit 61D72C4F) (tstamp d42167cf-9a23-433b-bf2f-1cdd794d3c5d)
(at 153.586 74.676 90)
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/9be71b4b-976f-45e7-97ed-42fe4498c1b0")
(attr smd)
(fp_text reference "J1" (at 0.127 4.699 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55c0a88b-4a9d-4d22-bb7a-52ef9a758c49)
)
(fp_text value "Conn_01x33_Female" (at -5.969 4.699 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0211136c-5141-4c90-9c3a-dff82452e628)
)
(fp_line (start -20.71 0.81) (end -16 0.81) (layer "F.SilkS") (width 0.12) (tstamp 0796cfe8-39eb-42d3-a19a-b0fb138f888e))
(fp_line (start 20.71 0.81) (end 16 0.81) (layer "F.SilkS") (width 0.12) (tstamp 0f8936ac-fbe3-4a16-876d-c51139b0e79d))
(fp_line (start -16 3.37) (end -20.71 3.37) (layer "F.SilkS") (width 0.12) (tstamp 144e4091-a716-4502-b3f7-cfa74259a80d))
(fp_line (start 20.71 3.37) (end 20.71 0.81) (layer "F.SilkS") (width 0.12) (tstamp 32f555ab-fd48-4a1c-a644-853b77636265))
(fp_line (start -16 -1.18) (end 16 -1.18) (layer "F.SilkS") (width 0.12) (tstamp 78385e58-07a5-45ec-90c7-0ee357fd8c48))
(fp_line (start 16 0.81) (end 16 -1.18) (layer "F.SilkS") (width 0.12) (tstamp 99826412-0ab2-488c-b891-5b7ba8aa39f9))
(fp_line (start -16 1.18) (end -16 3.37) (layer "F.SilkS") (width 0.12) (tstamp a0c25ffa-c162-49a6-ae78-ace6cd3cc08c))
(fp_line (start -16 0.81) (end -16 -1.18) (layer "F.SilkS") (width 0.12) (tstamp adf7b71b-d1d1-4a96-a452-ef835486b1fc))
(fp_line (start -16 1.18) (end 16 1.18) (layer "F.SilkS") (width 0.12) (tstamp be1ef914-2c72-40ea-8cf8-cbd3fd8ce29b))
(fp_line (start -20.71 3.37) (end -20.71 0.81) (layer "F.SilkS") (width 0.12) (tstamp cea89d37-c6e8-4e7f-b59e-60f679a3d914))
(fp_line (start 16 1.18) (end 16 3.37) (layer "F.SilkS") (width 0.12) (tstamp f7ad27ec-86fc-436e-b780-930660cc0e1f))
(fp_line (start 16 3.37) (end 20.71 3.37) (layer "F.SilkS") (width 0.12) (tstamp fc9c3bd9-5a7e-4864-a350-248f1572a903))
(fp_line (start 20.95 -1.4) (end 20.95 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 0a11d3b1-cff2-4dd0-8b2a-82bd9eef6608))
(fp_line (start -20.95 -1.4) (end -20.95 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 5e8e04f5-793d-4475-9f63-0df325ea0137))
(fp_line (start -20.95 -1.4) (end 20.95 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp acf6f4e6-b10f-48de-8e5b-db0785ae88d2))
(fp_line (start -20.95 3.6) (end 20.95 3.6) (layer "F.CrtYd") (width 0.05) (tstamp e6ea734d-d0aa-4ecc-9286-41ad8e758aaa))
(pad "1" smd rect (at -15.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 5e95f62f-763d-414f-9972-9290245d1d41))
(pad "2" smd rect (at -14.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 212f5c7e-fb2d-48c4-bbc6-5c9fe132929b))
(pad "3" smd rect (at -13.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "PD14") (pinfunction "Pin_3") (pintype "passive") (tstamp 0ba658cf-6198-402c-ac53-33bf1edc2b2c))
(pad "4" smd rect (at -12.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "PD15") (pinfunction "Pin_4") (pintype "passive") (tstamp 1cd66a6b-90c5-4519-a036-d369a54846b7))
(pad "5" smd rect (at -11.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "PD0") (pinfunction "Pin_5") (pintype "passive") (tstamp c991ca93-a9a9-461b-b21d-9c76bd751d81))
(pad "6" smd rect (at -10.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "PD1") (pinfunction "Pin_6") (pintype "passive") (tstamp a99c1797-f1a2-4551-954d-6c5df642534c))
(pad "7" smd rect (at -9.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "PE7") (pinfunction "Pin_7") (pintype "passive") (tstamp a6ee3789-52a7-41ba-acd4-29132a479006))
(pad "8" smd rect (at -8.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "PE8") (pinfunction "Pin_8") (pintype "passive") (tstamp 8ae9965b-f2e1-479c-936f-14a1ce0cc0b6))
(pad "9" smd rect (at -7.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "PE9") (pinfunction "Pin_9") (pintype "passive") (tstamp c99e6d80-f2a9-415e-92b3-df98c4f485fa))
(pad "10" smd rect (at -6.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "PE10") (pinfunction "Pin_10") (pintype "passive") (tstamp d0c2b49f-5c84-4339-a102-0bc70aca51aa))
(pad "11" smd rect (at -5.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "PE11") (pinfunction "Pin_11") (pintype "passive") (tstamp 31fece89-653c-4f72-b9cf-4117bd7336ea))
(pad "12" smd rect (at -4.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "PE12") (pinfunction "Pin_12") (pintype "passive") (tstamp 4314e83f-121a-4d8c-a935-d0b5d1bfcb4e))
(pad "13" smd rect (at -3.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "PE13") (pinfunction "Pin_13") (pintype "passive") (tstamp 3bebe6b0-922d-4e85-84e5-4b391a4363bf))
(pad "14" smd rect (at -2.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "PE14") (pinfunction "Pin_14") (pintype "passive") (tstamp cf44b827-8781-4277-a54e-14a778009356))
(pad "15" smd rect (at -1.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "PE15") (pinfunction "Pin_15") (pintype "passive") (tstamp 44d709bd-a0a0-423d-bd87-ef80d484d645))
(pad "16" smd rect (at -0.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "PD8") (pinfunction "Pin_16") (pintype "passive") (tstamp 9779ce16-3c39-4fea-b79d-9c628c9fd4f0))
(pad "17" smd rect (at 0.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "PD9") (pinfunction "Pin_17") (pintype "passive") (tstamp 57bccaa9-e3b9-4be9-9f3c-3d9580e3575e))
(pad "18" smd rect (at 1.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "PD10") (pinfunction "Pin_18") (pintype "passive") (tstamp a705d1b9-0012-4ee0-b933-f84cde10ffd9))
(pad "19" smd rect (at 2.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "PD7") (pinfunction "Pin_19") (pintype "passive") (tstamp 5bddf6f9-e7de-4c67-b717-730073347674))
(pad "20" smd rect (at 3.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "PD11") (pinfunction "Pin_20") (pintype "passive") (tstamp 1c28aaf7-3b83-438f-b9e8-6b27a9f47479))
(pad "21" smd rect (at 4.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "PD5") (pinfunction "Pin_21") (pintype "passive") (tstamp 804b4498-d855-44e0-81fb-3d1f259fd670))
(pad "22" smd rect (at 5.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "PD4") (pinfunction "Pin_22") (pintype "passive") (tstamp 17ada901-d5aa-4a98-8f71-5835729509c3))
(pad "23" smd rect (at 6.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "PC6") (pinfunction "Pin_23") (pintype "passive") (tstamp f5e19f87-2949-4727-80b7-b16d78bb943c))
(pad "24" smd rect (at 7.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "PD13") (pinfunction "Pin_24") (pintype "passive") (tstamp b771cfd6-2734-4404-b426-84bd1ced0545))
(pad "25" smd rect (at 8.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "SPI2_MISO") (pinfunction "Pin_25") (pintype "passive") (tstamp 76e58a73-0493-41d4-b285-99408974a18b))
(pad "26" smd rect (at 9.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "INT") (pinfunction "Pin_26") (pintype "passive") (tstamp e03f85d6-c966-45af-9404-9f4c7884bd77))
(pad "27" smd rect (at 10.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "SPI2_MOSI") (pinfunction "Pin_27") (pintype "passive") (tstamp ea660f78-c143-4fdc-b071-57ea5027e471))
(pad "28" smd rect (at 11.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "PC5_BEEPER") (pinfunction "Pin_28") (pintype "passive") (tstamp a5854cf2-e796-43de-a974-cf667ad26871))
(pad "29" smd rect (at 12.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "SPI2_SCK") (pinfunction "Pin_29") (pintype "passive") (tstamp 07709ea5-49b6-4891-83be-c5a502cbecfa))
(pad "30" smd rect (at 13.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VCC") (pinfunction "Pin_30") (pintype "passive") (tstamp e7ef05fb-f10e-4ef5-9c96-194be528e216))
(pad "31" smd rect (at 14.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "SPI2_NSS") (pinfunction "Pin_31") (pintype "passive") (tstamp 86ba98da-2c50-4ba6-afff-98374a596d3c))
(pad "32" smd rect (at 15.5 0 90) (size 0.6 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_32") (pintype "passive") (tstamp 563dc978-bc2f-4789-9364-014a6c0c6087))
(pad "33" smd rect (at -19.1 2.15 90) (size 2.5 2.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_33") (pintype "passive") (tstamp b209c77b-2572-4a4e-a684-9c43b6d393e9))
(pad "33" smd rect (at 19.1 2.15 90) (size 2.5 2.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_33") (pintype "passive") (tstamp de71c724-d37a-4fb8-99ad-78b40a6a2e48))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp e4012eb5-9ccd-40b5-8c34-afa171a96c5b)
(at 176.5 53.5)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "kp3sExpander.kicad_sch")
(property "Sheetname" "")
(path "/78eb5c71-593e-4b7d-aeee-72127c3da07e")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96cb522f-679e-44d3-9cee-7339c21a6d60)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 431a3c76-57fc-4bad-9c92-05543daa6f9c)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08381e2a-0e80-4218-98c4-e5d5bfc45979)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp fd2f1fe1-ace2-40eb-8e5c-304684d1016d))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 4d27c546-69b8-415d-ad57-797194b34e8d))
(pad "1" thru_hole circle locked (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 3de6d6a7-c88c-45c0-9274-0970b22aa090))
)
(gr_rect (start 117.856 54.61) (end 130.81 62.23) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 0d16b058-83a7-415d-9b6b-2bf2c4edd028))
(gr_rect (start 132.08 54.483) (end 151.13 59.69) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 36023a53-3022-4b8e-b1b0-31c14e2654a9))
(gr_line (start 151.13 57.0865) (end 132.08 57.0865) (layer "B.SilkS") (width 0.12) (tstamp 40a232d6-dde7-4e4f-9842-26dbc051e7fa))
(gr_line (start 151.638 92.71) (end 132.588 92.71) (layer "B.SilkS") (width 0.12) (tstamp 47d58dd8-e579-40a4-b310-ad1492559d25))
(gr_rect (start 132.588 90.1065) (end 151.638 95.3135) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 5e11e39f-a12e-4e2c-a454-d1e10ddc4933))
(gr_rect (start 109 97.25) (end 171 52.75) (layer "B.SilkS") (width 0.12) (fill none) (tstamp f1499219-02c1-40cb-a183-854ea7c072b3))
(gr_line (start 151.638 92.71) (end 132.588 92.71) (layer "F.SilkS") (width 0.12) (tstamp 1022c09d-80f1-4b15-97ad-1376c01d3e7f))
(gr_rect (start 132.588 95.3135) (end 151.638 90.1065) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 5ec40c8e-aa70-4bdb-86c2-df9810df98d6))
(gr_rect (start 132.08 59.69) (end 151.13 54.483) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a758c4bb-94d9-4684-b84b-05442dca5332))
(gr_line (start 151.13 57.0865) (end 132.08 57.0865) (layer "F.SilkS") (width 0.12) (tstamp e7c45ef7-09bd-4ceb-ba06-21a5673bf632))
(gr_rect (start 117.856 62.23) (end 130.81 54.61) (layer "F.SilkS") (width 0.12) (fill none) (tstamp eda585c0-2732-4932-a9b8-9e82fc143dcc))
(gr_line (start 180 52) (end 180 98) (layer "Edge.Cuts") (width 0.05) (tstamp 24161c95-38ce-4ec5-afaa-5af09414812e))
(gr_arc (start 178 50) (mid 179.414214 50.585786) (end 180 52) (layer "Edge.Cuts") (width 0.05) (tstamp 34fa5cbc-6983-4c83-8a53-367ffce5a937))
(gr_arc (start 101.5 100) (mid 100.43934 99.56066) (end 100 98.5) (layer "Edge.Cuts") (width 0.05) (tstamp 595bdab6-ba8a-4700-9eb8-f97598911c46))
(gr_line (start 100 98.5) (end 100 52) (layer "Edge.Cuts") (width 0.05) (tstamp 5ca16bdb-9d6b-42a1-b6d5-ced6d40dbb40))
(gr_arc (start 180 98) (mid 179.414214 99.414214) (end 178 100) (layer "Edge.Cuts") (width 0.05) (tstamp 6cd4ca54-24cf-4cdf-bda5-58138cb8ca72))
(gr_arc (start 100 52) (mid 100.585786 50.585786) (end 102 50) (layer "Edge.Cuts") (width 0.05) (tstamp d7e2b224-b62c-427b-bb61-19f825a45bc1))
(gr_line (start 178 100) (end 101.5 100) (layer "Edge.Cuts") (width 0.05) (tstamp f0738706-c796-477a-8098-faf24ebd9ee8))
(gr_line (start 102 50) (end 178 50) (layer "Edge.Cuts") (width 0.05) (tstamp f133eb4b-bea7-4a45-8bb5-e8a6319664c0))
(gr_text "SPI2" (at 127.076558 55.750653) (layer "B.SilkS") (tstamp 1f32fd69-b0ff-4851-8287-e5b110358f88)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD13" (at 125.476 66.04) (layer "B.SilkS") (tstamp 2a7bbcab-fc15-4f5b-b8f6-a7cdaacb84c4)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD5" (at 129.159 68.58) (layer "B.SilkS") (tstamp 35d2343f-b7d6-4cb1-9737-ed8a9d1e189c)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE13" (at 129.159 78.74) (layer "B.SilkS") (tstamp 39029047-fb48-4bbe-93f9-3afe7d1720eb)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD15" (at 125.476 91.44) (layer "B.SilkS") (tstamp 3bfc5a9e-9c2d-442f-b6ee-eb7d222cdc76)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD7" (at 129.159 71.12) (layer "B.SilkS") (tstamp 3d169365-9f6f-4736-90ac-3f71c34555f5)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "GND" (at 149.606 55.88) (layer "B.SilkS") (tstamp 40342fd6-2b2b-472b-89cc-54f6a4b1ec4b)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "robin_nano-GPIO-expander v0.1\n9R 2022" (at 169 97 270) (layer "B.SilkS") (tstamp 46411048-26da-4369-ba01-0ac72fcae2e6)
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
)
(gr_text "MISO" (at 125.476 60.96) (layer "B.SilkS") (tstamp 5db85d67-8c8f-40b5-88a8-d7702157031c)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "VCC" (at 149.606 58.42) (layer "B.SilkS") (tstamp 63686939-fd10-4a33-a367-c1fb6435c8ce)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE8" (at 125.476 86.36) (layer "B.SilkS") (tstamp 63bb0e26-a3ab-45a1-8dea-c453b08ba504)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD0" (at 129.159 88.9) (layer "B.SilkS") (tstamp 64fe45d6-ce53-4601-943c-f54c68838871)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD1" (at 125.476 88.9) (layer "B.SilkS") (tstamp 66a78d06-64b3-4fd0-8c1d-dfff7fc6907f)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "INT" (at 125.476 63.5) (layer "B.SilkS") (tstamp 66bf9c76-e9f4-479c-96d8-fbd0246f95f1)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE12" (at 125.476 81.28) (layer "B.SilkS") (tstamp 69967772-4c76-4e10-bfb2-5b70e1c56a52)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD14" (at 129.159 91.44) (layer "B.SilkS") (tstamp 6b918332-58d7-4cf8-9a93-e947dadb2bdb)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PC5" (at 129.159 63.5) (layer "B.SilkS") (tstamp 6bc8db1a-19fd-4ebb-b0d6-d7d2cc4f39f2)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD9" (at 129.159 73.66) (layer "B.SilkS") (tstamp 7496c309-1d2c-4f04-b676-68aeee5ba04d)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE15" (at 129.159 76.2) (layer "B.SilkS") (tstamp 75bb3744-a91c-4e8d-8460-cfe5b4546c2d)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "SCK" (at 129.159 58.42) (layer "B.SilkS") (tstamp 86cb5255-da91-4805-98b4-d9ba50074d60)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE6" (at 129.159 86.36) (layer "B.SilkS") (tstamp 9235847c-80f2-43df-a9f3-360c9c780ce2)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE11" (at 129.159 81.28) (layer "B.SilkS") (tstamp 9a2ad128-294b-4982-ae0a-ee0ecb418820)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE14" (at 125.476 78.74) (layer "B.SilkS") (tstamp 9f059602-7b5f-4d19-9293-7991f24ac557)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "3V3" (at 149.987 93.98) (layer "B.SilkS") (tstamp a0624559-18fb-4a68-9c69-12306fb3bcb5)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "GND" (at 149.987 91.44) (layer "B.SilkS") (tstamp ad61b9d2-1bd4-405f-83ec-35ddef9c942d)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD8" (at 125.476 76.2) (layer "B.SilkS") (tstamp af81f7a4-5c1e-4ea3-827c-38acfeb82fa6)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD11" (at 125.476 71.12) (layer "B.SilkS") (tstamp b5bfa9fc-7ad6-4fb1-bf08-c8fe369e6426)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PE10" (at 125.476 83.82) (layer "B.SilkS") (tstamp b99a43f0-bb1b-4fb6-bdc2-0043a14e9cef)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "MOSI" (at 129.159 60.96) (layer "B.SilkS") (tstamp ba125761-3316-4f13-a904-c7c4d34cf79c)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PC6" (at 129.159 66.04) (layer "B.SilkS") (tstamp cd73fbc6-fbde-46ab-ab10-f77a76c7b418)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PC9" (at 129.159 83.82) (layer "B.SilkS") (tstamp d3805965-63ec-495f-8e39-884a697affaf)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD10" (at 125.476 73.66) (layer "B.SilkS") (tstamp e6032fbe-8545-4012-85f1-35431e12ebaa)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "NSS" (at 125.476 58.42) (layer "B.SilkS") (tstamp f125338e-b4ed-4f70-ae23-d38233e86020)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "PD4" (at 125.476 68.58) (layer "B.SilkS") (tstamp faf7580c-b600-4480-9328-0c0284b85aa9)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "SPI2" (at 127.127 55.753) (layer "F.SilkS") (tstamp 09d4f24e-83a8-4f19-89f5-1a9916b66f71)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PC5" (at 129.159 63.5) (layer "F.SilkS") (tstamp 0f7b19d2-106e-4c3c-a24f-bfd8b4c7d6f1)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD15" (at 125.476 91.44) (layer "F.SilkS") (tstamp 13b59b13-ee49-421f-9c88-e20222c5a035)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD7" (at 129.159 71.12) (layer "F.SilkS") (tstamp 1ba08d75-fc6b-46f2-b187-d0ee80dfffb8)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD4" (at 125.476 68.58) (layer "F.SilkS") (tstamp 1cbee395-ef51-4a16-a1ba-cbc3e4a4fc0e)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD14" (at 129.159 91.44) (layer "F.SilkS") (tstamp 25d7ab9e-29b6-44f8-aa4d-94bd1dd79d08)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE14" (at 125.476 78.74) (layer "F.SilkS") (tstamp 31ab8e32-93a8-4088-afb9-667fcfd90547)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD1" (at 125.476 88.9) (layer "F.SilkS") (tstamp 32544947-489a-4804-80db-767a7b254631)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE13" (at 129.159 78.74) (layer "F.SilkS") (tstamp 342ef066-e26f-40d7-9b06-991f3f6073e8)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE12" (at 125.476 81.28) (layer "F.SilkS") (tstamp 34f87f6a-2153-4076-8da0-99e0e374c862)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE11" (at 129.159 81.28) (layer "F.SilkS") (tstamp 414c4378-4f20-427c-8514-b7fd0dcc6a7c)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD0" (at 129.159 88.9) (layer "F.SilkS") (tstamp 4bac4407-01d4-491e-bae3-2090ed0125d3)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE6" (at 129.159 86.36) (layer "F.SilkS") (tstamp 6cedd722-1c91-4397-afa3-9c519f3265bd)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "SCK" (at 129.159 58.42) (layer "F.SilkS") (tstamp 7755e31f-8a17-4230-9f77-bb003db1bbd5)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PC9" (at 129.159 83.82) (layer "F.SilkS") (tstamp 7b0af8a6-e638-4807-b64b-aebe68f91d2f)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PC6" (at 129.159 66.04) (layer "F.SilkS") (tstamp 9549893c-84bd-4916-8439-dea2a08d04de)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE10" (at 125.476 83.82) (layer "F.SilkS") (tstamp 9bd119a1-3f5e-4d3e-99ad-3842a1f9d5e1)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "MISO" (at 125.476 60.96) (layer "F.SilkS") (tstamp a28bb32d-1b6a-48a3-a01f-d30c43909954)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD5" (at 129.159 68.58) (layer "F.SilkS") (tstamp a603a833-66a6-40fa-bebe-33916d70fa27)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "VCC" (at 149.606 58.42) (layer "F.SilkS") (tstamp ae744b6c-f340-4e25-9031-87b0eefb70c3)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PE15" (at 129.159 76.2) (layer "F.SilkS") (tstamp b11411e4-9d30-4df5-9d5d-0249cfe7796f)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD13" (at 125.476 66.04) (layer "F.SilkS") (tstamp b7e1e0a3-ce89-43cc-8cfc-deff1dc1a413)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "NSS" (at 125.476 58.42) (layer "F.SilkS") (tstamp b9a93be0-5f68-4b92-bdbe-8fc44c653880)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD10" (at 125.476 73.66) (layer "F.SilkS") (tstamp bc48774c-5597-48a4-b9dd-68e2824a927b)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "JLCJLCJLCJLC" (at 167.5 98) (layer "F.SilkS") (tstamp bef3bb41-5dd6-4e07-9e39-f128ef5b94e9)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "PE8" (at 125.476 86.36) (layer "F.SilkS") (tstamp c53efaf2-849a-43d2-a7e9-a7fccc33130e)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "MOSI" (at 129.159 60.96) (layer "F.SilkS") (tstamp d625e67a-8e5f-41cb-a60e-afb2a2272d29)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "INT" (at 125.476 63.5) (layer "F.SilkS") (tstamp de8313c3-5031-4f72-80d9-21bc6b7ba6fc)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD11" (at 125.476 71.12) (layer "F.SilkS") (tstamp e08649d5-ca11-4097-a3a8-92f79f3a3f71)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "3V3" (at 149.987 93.98) (layer "F.SilkS") (tstamp ec40a861-9e50-47bd-beea-0368530bdac1)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "GND" (at 149.606 55.88) (layer "F.SilkS") (tstamp f3094991-c4d8-4852-af7c-36435ce38ea0)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD9" (at 129.159 73.66) (layer "F.SilkS") (tstamp f65caa93-0242-4a1e-bfcc-699121fcf3b6)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "GND" (at 149.987 91.44) (layer "F.SilkS") (tstamp fa06e8ab-d125-496f-b1ea-ac19fad08172)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PD8" (at 125.476 76.2) (layer "F.SilkS") (tstamp fdae1458-0953-452f-86fd-8ffb3f1f3867)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(segment (start 112.014 96.139) (end 111.252 96.139) (width 0.25) (layer "F.Cu") (net 0) (tstamp 0743ad70-c3aa-4d87-8b4e-cc5d52fb95d5))
(segment (start 112.014 95.631) (end 111.252 95.631) (width 0.25) (layer "F.Cu") (net 0) (tstamp 0f8fc27f-630b-4343-ba58-315933dd3aa3))
(segment (start 108.458 98.425) (end 108.458 97.155) (width 0.25) (layer "F.Cu") (net 0) (tstamp 16730711-7f10-43a4-bfc6-446fa858de0e))
(segment (start 112.014 95.123) (end 111.252 95.123) (width 0.25) (layer "F.Cu") (net 0) (tstamp 1e70ee2f-9486-41b8-9a01-dbaaa10cffc6))
(segment (start 110.871 96.139) (end 109.982 96.139) (width 0.25) (layer "F.Cu") (net 0) (tstamp 2af03734-769d-4be2-8727-78cbed8fec04))
(segment (start 109.474 96.139) (end 109.474 97.155) (width 0.25) (layer "F.Cu") (net 0) (tstamp 3325dcee-e044-4ae9-a82c-6bcc1829217a))
(segment (start 109.982 96.139) (end 109.982 97.155) (width 0.25) (layer "F.Cu") (net 0) (tstamp 56ae7ec6-fe23-44e9-ba90-5f368a6a9156))
(segment (start 108.458 97.155) (end 108.458 96.139) (width 0.25) (layer "F.Cu") (net 0) (tstamp 62176864-d0cf-476b-8cca-51d4d8c36c5c))
(segment (start 112.014 95.123) (end 112.014 95.631) (width 0.25) (layer "F.Cu") (net 0) (tstamp 64d20c14-6339-43e0-97cc-635868373a7b))
(segment (start 112.014 95.631) (end 112.014 96.139) (width 0.25) (layer "F.Cu") (net 0) (tstamp 66d1db40-d85a-4eea-9cce-685976c8af55))
(segment (start 108.458 97.155) (end 109.474 97.155) (width 0.25) (layer "F.Cu") (net 0) (tstamp a862cf8b-c453-47c1-8c6a-76db59b415bd))
(segment (start 109.982 97.155) (end 110.871 97.155) (width 0.25) (layer "F.Cu") (net 0) (tstamp fd311845-9fb5-4d5d-a9bb-aed486ea7382))
(segment (start 138.43 55.88) (end 140.97 55.88) (width 0.5) (layer "F.Cu") (net 1) (tstamp 2479f5a8-a586-49f3-a7f9-7d190358ad04))
(segment (start 135.89 55.88) (end 138.43 55.88) (width 0.5) (layer "F.Cu") (net 1) (tstamp 469289e5-1780-4248-8d5f-73a355220a6c))
(segment (start 143.51 55.88) (end 146.05 55.88) (width 0.5) (layer "F.Cu") (net 1) (tstamp 4c11bc08-d4ee-477f-aae0-e83a63b394e9))
(segment (start 148.748 89.25) (end 153.65 89.25) (width 0.5) (layer "F.Cu") (net 1) (tstamp 4c510121-bd41-4396-985b-9c6c6829b666))
(segment (start 146.05 55.88) (end 150.28 55.88) (width 0.5) (layer "F.Cu") (net 1) (tstamp 5802d2ca-091b-4427-b13e-a758697f7f2e))
(segment (start 140.97 55.88) (end 143.51 55.88) (width 0.5) (layer "F.Cu") (net 1) (tstamp 8e897c41-28f1-4ae0-bfb7-1a095ec16a10))
(segment (start 146.558 91.44) (end 148.748 89.25) (width 0.5) (layer "F.Cu") (net 1) (tstamp 910922ae-4a10-4c64-ad3c-948fa2bf5d9a))
(segment (start 150.28 55.88) (end 153.65 59.25) (width 0.5) (layer "F.Cu") (net 1) (tstamp e087ac20-709e-45de-b2bd-2c5a6f54a5c6))
(segment (start 133.35 55.88) (end 135.89 55.88) (width 0.5) (layer "F.Cu") (net 1) (tstamp e47b1d68-2bce-447f-80e7-b848d998f432))
(via (at 124 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 486e42a8-ccd7-4296-b46d-c1c0b1981be4))
(via (at 124.206 55.118) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4d290f63-844a-4f7b-8aec-c610c29b1e2f))
(via (at 145.034 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4ed19592-a5c4-4f6f-8e35-67fef4315ee4))
(via (at 150.241 61.214) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 875404be-e359-458a-af29-1bd3403dd55f))
(via (at 130.302 55.118) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp acee6893-1f8a-43f2-93df-e612d6c0d353))
(via (at 131.318 58.547) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp b4bb129a-27c6-47af-a65b-1d062a176af1))
(via (at 151.511 65.151) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp b9fce689-53c2-4275-98d8-2c8da9bd740a))
(segment (start 146.558 91.44) (end 133.858 91.44) (width 0.5) (layer "B.Cu") (net 1) (tstamp 2570aee6-6e18-4261-b22f-3d8d6a2e1ea5))
(segment (start 133.35 55.88) (end 146.05 55.88) (width 0.5) (layer "B.Cu") (net 1) (tstamp 759bd0f6-2646-44e7-94e8-5efbb41acb61))
(segment (start 128.174511 57.245489) (end 120.634511 57.245489) (width 0.25) (layer "F.Cu") (net 2) (tstamp 10471b72-4fce-4d30-bc81-ff53c2ec57db))
(segment (start 131.179022 60.25) (end 128.174511 57.245489) (width 0.25) (layer "F.Cu") (net 2) (tstamp 15f1846f-4de6-4b40-aca9-79868fb6655b))
(segment (start 153.65 60.25) (end 131.179022 60.25) (width 0.25) (layer "F.Cu") (net 2) (tstamp 8224782f-ee16-4bfd-8717-26e387f40d7a))
(segment (start 120.634511 57.245489) (end 119.46 58.42) (width 0.25) (layer "F.Cu") (net 2) (tstamp cd3ae596-323e-4d16-88dd-2058498128fb))
(segment (start 131.826 56.896) (end 133.35 58.42) (width 0.5) (layer "F.Cu") (net 3) (tstamp 0ba81eb1-6d57-4373-98c2-826cc1f4a67b))
(segment (start 154.686 58.166) (end 153.55527 58.166) (width 0.5) (layer "F.Cu") (net 3) (tstamp 2f2e62bb-4266-42f7-88a2-12f4a78cf5bf))
(segment (start 135.89 58.42) (end 138.43 58.42) (width 0.5) (layer "F.Cu") (net 3) (tstamp 4b5f237c-e9ca-4ec2-b213-bfaa6a0c30ff))
(segment (start 154.785022 61.176) (end 155.194 60.767022) (width 0.5) (layer "F.Cu") (net 3) (tstamp 57925799-096f-4f0c-9ae0-32fa502acff8))
(segment (start 153.586 61.176) (end 154.785022 61.176) (width 0.5) (layer "F.Cu") (net 3) (tstamp 5a51050e-e199-40b8-bfad-c4a4a0c9e9b1))
(segment (start 155.194 60.767022) (end 155.194 58.674) (width 0.5) (layer "F.Cu") (net 3) (tstamp 5f435acf-692b-4a6c-8342-e944366a30e3))
(segment (start 140.97 58.42) (end 143.51 58.42) (width 0.5) (layer "F.Cu") (net 3) (tstamp 60fa5aeb-7164-4d0f-b188-73e1d2e711dd))
(segment (start 149.969759 54.580489) (end 132.811724 54.580489) (width 0.5) (layer "F.Cu") (net 3) (tstamp 6fdb650a-7213-467f-9663-85bbe59467a9))
(segment (start 131.826 55.566213) (end 131.826 56.896) (width 0.5) (layer "F.Cu") (net 3) (tstamp 7aa4ba3f-8ed6-4af4-965a-bf3840b0ba75))
(segment (start 155.194 58.674) (end 154.686 58.166) (width 0.5) (layer "F.Cu") (net 3) (tstamp aaf5592b-ad08-4215-8740-3b95cd581714))
(segment (start 143.51 58.42) (end 146.05 58.42) (width 0.5) (layer "F.Cu") (net 3) (tstamp b7beb8a2-852e-4925-9564-713473a96b8a))
(segment (start 133.35 58.42) (end 135.89 58.42) (width 0.5) (layer "F.Cu") (net 3) (tstamp bad6cf90-4928-47eb-9be4-cbfbc5fde9cc))
(segment (start 153.55527 58.166) (end 149.969759 54.580489) (width 0.5) (layer "F.Cu") (net 3) (tstamp c344f3b1-a245-4731-a14d-b93812f7e797))
(segment (start 132.811724 54.580489) (end 131.826 55.566213) (width 0.5) (layer "F.Cu") (net 3) (tstamp f450b2e0-a097-4933-a59e-c1d61a679d8e))
(segment (start 138.43 58.42) (end 140.97 58.42) (width 0.5) (layer "F.Cu") (net 3) (tstamp fbd68acd-80f2-410c-ad00-7605e5a0db37))
(segment (start 146.05 58.42) (end 133.35 58.42) (width 0.5) (layer "B.Cu") (net 3) (tstamp 8967a184-9ee6-4ceb-8e38-09ca452dd23c))
(segment (start 130.81 60.706) (end 128.524 58.42) (width 0.25) (layer "F.Cu") (net 4) (tstamp ab544ef9-a780-4b0e-80bc-0b28bc689d5c))
(segment (start 128.524 58.42) (end 122 58.42) (width 0.25) (layer "F.Cu") (net 4) (tstamp bb3f45e5-8485-4b69-9af4-0d3fdbee753d))
(segment (start 147.657154 62.25) (end 146.113153 60.706) (width 0.25) (layer "F.Cu") (net 4) (tstamp bc278705-7e60-40ff-9d85-2733025605d9))
(segment (start 146.113153 60.706) (end 130.81 60.706) (width 0.25) (layer "F.Cu") (net 4) (tstamp f5d58812-4d00-4fd5-808a-b9ff11a7623b))
(segment (start 153.65 62.25) (end 147.657154 62.25) (width 0.25) (layer "F.Cu") (net 4) (tstamp f8dcaaa4-9565-46ce-87dd-34d61c197c94))
(segment (start 153.65 64.25) (end 148.385718 64.25) (width 0.25) (layer "F.Cu") (net 5) (tstamp 041c8454-4d6c-4a28-9637-b633ba5d444f))
(segment (start 145.740758 61.60504) (end 122.64504 61.60504) (width 0.25) (layer "F.Cu") (net 5) (tstamp 62b28114-cc26-46db-a6d9-4632403da14d))
(segment (start 148.385718 64.25) (end 145.740758 61.60504) (width 0.25) (layer "F.Cu") (net 5) (tstamp 7ba664c3-180a-418c-9c1a-b43ee87ff255))
(segment (start 122.64504 61.60504) (end 122 60.96) (width 0.25) (layer "F.Cu") (net 5) (tstamp cb0f6b7d-ea2b-4fee-8b37-df0d12e32b10))
(segment (start 120.825489 62.325489) (end 119.46 60.96) (width 0.25) (layer "F.Cu") (net 6) (tstamp 3030aa21-d69f-4f66-95b0-95c4c00b8155))
(segment (start 153.65 66.25) (end 149.75 66.25) (width 0.25) (layer "F.Cu") (net 6) (tstamp 4d139ce4-a8ed-406f-aef6-9ee1c87777f8))
(segment (start 149.75 66.25) (end 145.825489 62.325489) (width 0.25) (layer "F.Cu") (net 6) (tstamp f8af3b96-0e90-463b-bf07-eebb48f14eaa))
(segment (start 145.825489 62.325489) (end 120.825489 62.325489) (width 0.25) (layer "F.Cu") (net 6) (tstamp faf117f6-dcb1-4c92-bcfc-6e719c55b54e))
(segment (start 150.021436 67.25) (end 153.65 67.25) (width 0.25) (layer "F.Cu") (net 7) (tstamp 28064e40-61d2-4c45-abac-a0ac29dbad94))
(segment (start 147.445947 64.674511) (end 150.021436 67.25) (width 0.25) (layer "F.Cu") (net 7) (tstamp 552bc9d2-bb74-424f-a3a6-3e5e9a9e466e))
(segment (start 119.46 66.04) (end 120.825489 64.674511) (width 0.25) (layer "F.Cu") (net 7) (tstamp b7c2bc5b-eef0-4e7d-9024-96a9c6a38dfd))
(segment (start 120.825489 64.674511) (end 147.445947 64.674511) (width 0.25) (layer "F.Cu") (net 7) (tstamp e7411656-ec02-4823-a388-a00e3d6bfbac))
(segment (start 148.175718 66.04) (end 150.385718 68.25) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2be16256-74c3-47df-8fa9-cae9fe28b4fe))
(segment (start 150.385718 68.25) (end 153.65 68.25) (width 0.25) (layer "F.Cu") (net 8) (tstamp 64fe5a89-265b-4754-b07a-8d79309df08b))
(segment (start 122 66.04) (end 148.175718 66.04) (width 0.25) (layer "F.Cu") (net 8) (tstamp d0ab92f0-60b8-4418-8111-de9aac4ec78e))
(segment (start 148.81 67.31) (end 150.75 69.25) (width 0.25) (layer "F.Cu") (net 9) (tstamp 154e52e3-174a-4bc4-b2ca-820dc7df9294))
(segment (start 150.75 69.25) (end 153.65 69.25) (width 0.25) (layer "F.Cu") (net 9) (tstamp 4210d6ef-853d-438a-9cf9-56b3d7b3a88d))
(segment (start 120.73 67.31) (end 148.81 67.31) (width 0.25) (layer "F.Cu") (net 9) (tstamp fb249d71-7c05-4aff-be9f-9b3e041b0f8d))
(segment (start 119.46 68.58) (end 120.73 67.31) (width 0.25) (layer "F.Cu") (net 9) (tstamp ffbb14e9-c002-4f48-9382-1bdedeabf804))
(segment (start 149.351436 68.58) (end 151.021436 70.25) (width 0.25) (layer "F.Cu") (net 10) (tstamp baf28ae7-9a3b-4a2c-8c08-aae809360f80))
(segment (start 151.021436 70.25) (end 153.65 70.25) (width 0.25) (layer "F.Cu") (net 10) (tstamp c8514eb7-7a07-4ffc-a40d-fb220fba7279))
(segment (start 122 68.58) (end 149.351436 68.58) (width 0.25) (layer "F.Cu") (net 10) (tstamp fbf2a0a2-b581-4b94-9e4c-e8d3966511ef))
(segment (start 120.634511 69.945489) (end 150.081207 69.945489) (width 0.25) (layer "F.Cu") (net 11) (tstamp 1b396f17-8669-425b-a8c0-f2eae8668b10))
(segment (start 119.46 71.12) (end 120.634511 69.945489) (width 0.25) (layer "F.Cu") (net 11) (tstamp 4266ce3d-7d9d-47df-8fbe-f0a6c2411338))
(segment (start 150.081207 69.945489) (end 151.385718 71.25) (width 0.25) (layer "F.Cu") (net 11) (tstamp 70f180fd-bf6b-401c-8832-e007d779fa2c))
(segment (start 151.385718 71.25) (end 153.65 71.25) (width 0.25) (layer "F.Cu") (net 11) (tstamp 7838d2d4-82d1-4659-8fd3-f9978a7a6919))
(segment (start 122 71.12) (end 150.62 71.12) (width 0.25) (layer "F.Cu") (net 12) (tstamp 0956514c-8a6b-4a6f-96b3-8531dee51a9b))
(segment (start 151.75 72.25) (end 153.65 72.25) (width 0.25) (layer "F.Cu") (net 12) (tstamp 235a5484-f635-401d-b979-c0e4a0f4129e))
(segment (start 150.62 71.12) (end 151.75 72.25) (width 0.25) (layer "F.Cu") (net 12) (tstamp 75febf91-c0dd-46c3-98a0-2b0a34127c2c))
(segment (start 151.739 73.25) (end 153.65 73.25) (width 0.25) (layer "F.Cu") (net 13) (tstamp 39acf4c6-66ca-4ad2-a0cc-250788523c07))
(segment (start 150.974489 72.485489) (end 151.739 73.25) (width 0.25) (layer "F.Cu") (net 13) (tstamp 3dce5c9e-e327-4427-bf18-58ac04cb3540))
(segment (start 119.46 73.66) (end 120.634511 72.485489) (width 0.25) (layer "F.Cu") (net 13) (tstamp 949c0540-ae6d-43f9-89a3-3640cf09bb0e))
(segment (start 120.634511 72.485489) (end 150.974489 72.485489) (width 0.25) (layer "F.Cu") (net 13) (tstamp eb1f167d-1559-4471-b730-0540904bc57a))
(segment (start 122 73.66) (end 151.212 73.66) (width 0.25) (layer "F.Cu") (net 14) (tstamp 3cf4f1c1-4a96-47f7-bd11-18a042cee724))
(segment (start 151.212 73.66) (end 151.802 74.25) (width 0.25) (layer "F.Cu") (net 14) (tstamp 42c334ab-8611-48d7-a114-19a99f688a0a))
(segment (start 151.802 74.25) (end 153.65 74.25) (width 0.25) (layer "F.Cu") (net 14) (tstamp bdaa4b3d-d97a-4283-9861-024c047936ea))
(segment (start 120.634511 75.025489) (end 153.425489 75.025489) (width 0.25) (layer "F.Cu") (net 15) (tstamp 97bf8cc6-dd1d-4ce0-9dea-cb31c48f600e))
(segment (start 153.425489 75.025489) (end 153.65 75.25) (width 0.25) (layer "F.Cu") (net 15) (tstamp bb712edd-b883-4405-af65-13043b9801ea))
(segment (start 119.46 76.2) (end 120.634511 75.025489) (width 0.25) (layer "F.Cu") (net 15) (tstamp e6ad577f-020b-4d87-ab4f-c29fd323078f))
(segment (start 153.65 76.25) (end 122.05 76.25) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05ae220e-9460-40a2-b4f5-0f1befb6c601))
(segment (start 122.05 76.25) (end 122 76.2) (width 0.25) (layer "F.Cu") (net 16) (tstamp 82cb6fbb-cf99-4437-908e-adbaddccbbb2))
(segment (start 153.525489 77.374511) (end 153.65 77.25) (width 0.25) (layer "F.Cu") (net 17) (tstamp 369347f1-ff98-4f1e-bffc-4c2c9d95a516))
(segment (start 119.46 78.74) (end 120.825489 77.374511) (width 0.25) (layer "F.Cu") (net 17) (tstamp f3b880ae-3e33-413c-84bf-b404eab38f71))
(segment (start 120.825489 77.374511) (end 153.525489 77.374511) (width 0.25) (layer "F.Cu") (net 17) (tstamp ffc0852b-b76e-4cc2-8541-ffb232d3a210))
(segment (start 122.24 78.5) (end 151.75 78.5) (width 0.25) (layer "F.Cu") (net 18) (tstamp 198cbea0-5a44-4557-ac22-256d1aa0a65f))
(segment (start 151.75 78.5) (end 152 78.25) (width 0.25) (layer "F.Cu") (net 18) (tstamp af85a2df-c4f3-4f34-a8c3-94250e78b73c))
(segment (start 152 78.25) (end 153.65 78.25) (width 0.25) (layer "F.Cu") (net 18) (tstamp b2d3aa0f-72b8-47ed-96ff-299e9184c7ad))
(segment (start 122 78.74) (end 122.24 78.5) (width 0.25) (layer "F.Cu") (net 18) (tstamp f7761f2c-2d1d-45a4-b86b-74fa450eb0c3))
(segment (start 120.825489 79.914511) (end 151.085489 79.914511) (width 0.25) (layer "F.Cu") (net 19) (tstamp 462bfe7d-53fa-4e7b-b636-944a96c147f5))
(segment (start 151.085489 79.914511) (end 151.75 79.25) (width 0.25) (layer "F.Cu") (net 19) (tstamp 7098a325-02ac-4adb-bcb8-9b8cb2fef6f1))
(segment (start 151.75 79.25) (end 153.65 79.25) (width 0.25) (layer "F.Cu") (net 19) (tstamp a2691915-c295-48e4-be2c-4e9f381875a5))
(segment (start 119.46 81.28) (end 120.825489 79.914511) (width 0.25) (layer "F.Cu") (net 19) (tstamp c98939a3-c016-4d06-a3ba-d2b84c8aef5f))
(segment (start 122 81.28) (end 150.510564 81.28) (width 0.25) (layer "F.Cu") (net 20) (tstamp 5d6af8e8-7dc2-40e3-b53d-b2cd612e42d2))
(segment (start 150.510564 81.28) (end 151.540564 80.25) (width 0.25) (layer "F.Cu") (net 20) (tstamp ba90e894-b84f-4075-8e0d-5a21089258c5))
(segment (start 151.540564 80.25) (end 153.65 80.25) (width 0.25) (layer "F.Cu") (net 20) (tstamp be9e0d1b-444c-45a6-898b-63ce0ef7a491))
(segment (start 120.634511 82.645489) (end 149.780793 82.645489) (width 0.25) (layer "F.Cu") (net 21) (tstamp 09d2de3d-1ace-47f1-8869-87aa0c0263c7))
(segment (start 151.176282 81.25) (end 153.65 81.25) (width 0.25) (layer "F.Cu") (net 21) (tstamp 2c1e6326-a2c6-4b40-a2c4-e3cf6e065f7d))
(segment (start 119.46 83.82) (end 120.634511 82.645489) (width 0.25) (layer "F.Cu") (net 21) (tstamp 546fc476-3e3b-43e1-a8f8-1ecf3801f2bd))
(segment (start 149.780793 82.645489) (end 151.176282 81.25) (width 0.25) (layer "F.Cu") (net 21) (tstamp b74a073d-348d-4267-9ee6-3d54ae8dc2bc))
(segment (start 150.812 82.25) (end 153.65 82.25) (width 0.25) (layer "F.Cu") (net 22) (tstamp 30bde459-db5b-4727-9750-f315762431fe))
(segment (start 122 83.82) (end 149.242 83.82) (width 0.25) (layer "F.Cu") (net 22) (tstamp 3c02f8ec-702e-4864-a25c-78df600acc0d))
(segment (start 149.242 83.82) (end 150.812 82.25) (width 0.25) (layer "F.Cu") (net 22) (tstamp e9a7e30f-568d-4c7f-9fd2-daa06cad1012))
(segment (start 119.46 86.36) (end 120.634511 85.185489) (width 0.25) (layer "F.Cu") (net 23) (tstamp 7bf0bead-e52a-40e3-9cff-2328494ab7f4))
(segment (start 148.543075 85.185489) (end 150.478564 83.25) (width 0.25) (layer "F.Cu") (net 23) (tstamp a1e5447a-4941-429c-945e-0d23481c0bc0))
(segment (start 150.478564 83.25) (end 153.65 83.25) (width 0.25) (layer "F.Cu") (net 23) (tstamp d42cfa87-a393-431d-b1f9-e6d63d701ffc))
(segment (start 120.634511 85.185489) (end 148.543075 85.185489) (width 0.25) (layer "F.Cu") (net 23) (tstamp df6ad5f4-de15-4501-a705-dbcff656473a))
(segment (start 150.114282 84.25) (end 153.65 84.25) (width 0.25) (layer "F.Cu") (net 24) (tstamp 77dd243a-c9d1-4d28-ad62-e93aad0d849b))
(segment (start 148.004282 86.36) (end 150.114282 84.25) (width 0.25) (layer "F.Cu") (net 24) (tstamp 9ca70aa0-36cf-41d1-81c2-221228c0dc96))
(segment (start 122 86.36) (end 148.004282 86.36) (width 0.25) (layer "F.Cu") (net 24) (tstamp d2276f79-7d2a-4ed4-b82f-21ab0e875bb9))
(segment (start 119.46 88.9) (end 120.634511 87.725489) (width 0.25) (layer "F.Cu") (net 25) (tstamp 2c3afeb9-55cf-4fcc-8edb-7ebfd297bd70))
(segment (start 149.75 85.25) (end 153.65 85.25) (width 0.25) (layer "F.Cu") (net 25) (tstamp 4a8eeaae-a866-4804-89c0-7339d5ffcf32))
(segment (start 147.274511 87.725489) (end 149.75 85.25) (width 0.25) (layer "F.Cu") (net 25) (tstamp d578edbe-35c0-4f08-adf5-adee44d7d1bf))
(segment (start 120.634511 87.725489) (end 147.274511 87.725489) (width 0.25) (layer "F.Cu") (net 25) (tstamp ebd4cfa4-effc-424e-add8-802b0352a90d))
(segment (start 149.449564 86.25) (end 153.65 86.25) (width 0.25) (layer "F.Cu") (net 26) (tstamp 1ea32d92-1ec1-42bf-a467-495022044936))
(segment (start 122 88.9) (end 122.19552 88.70448) (width 0.25) (layer "F.Cu") (net 26) (tstamp 462b6d7f-b82e-4065-a355-09f87c76f990))
(segment (start 122.19552 88.70448) (end 146.995084 88.70448) (width 0.25) (layer "F.Cu") (net 26) (tstamp 4634449a-f107-4c28-aa9b-d5a8590ecfe1))
(segment (start 146.995084 88.70448) (end 149.449564 86.25) (width 0.25) (layer "F.Cu") (net 26) (tstamp 5528e0fe-dada-417d-9c74-45a7cfd73406))
(segment (start 119.46 91.44) (end 120.825489 90.074511) (width 0.25) (layer "F.Cu") (net 27) (tstamp 739a5348-0378-48de-8d71-542a3da55545))
(segment (start 147.181282 89.154) (end 149.085282 87.25) (width 0.25) (layer "F.Cu") (net 27) (tstamp 77b57aac-a1eb-4734-88cd-9d0647bd6382))
(segment (start 149.085282 87.25) (end 153.65 87.25) (width 0.25) (layer "F.Cu") (net 27) (tstamp c853012e-700f-4da9-9452-f9fe0ab21c4a))
(segment (start 130.523771 90.074511) (end 131.444282 89.154) (width 0.25) (layer "F.Cu") (net 27) (tstamp ccc491e7-9251-422d-80e0-7ad308cc5972))
(segment (start 131.444282 89.154) (end 147.181282 89.154) (width 0.25) (layer "F.Cu") (net 27) (tstamp d1d01c2e-a6b6-404d-9fdd-e80e028ca1be))
(segment (start 120.825489 90.074511) (end 130.523771 90.074511) (width 0.25) (layer "F.Cu") (net 27) (tstamp e1bf0850-7ec6-401b-b7d2-ca77a5ee24f2))
(segment (start 148.721 88.25) (end 153.65 88.25) (width 0.25) (layer "F.Cu") (net 28) (tstamp 0083ec75-76b0-493d-8fda-a764c239d7cf))
(segment (start 131.572 89.662) (end 147.309 89.662) (width 0.25) (layer "F.Cu") (net 28) (tstamp 49306b64-25e2-4b40-a543-057645c368cf))
(segment (start 122 91.44) (end 129.794 91.44) (width 0.25) (layer "F.Cu") (net 28) (tstamp 74fdb3bc-d9f3-441d-a22a-be63a2ea5956))
(segment (start 129.794 91.44) (end 131.572 89.662) (width 0.25) (layer "F.Cu") (net 28) (tstamp be447f6d-2810-4b01-b384-f8aae6ef3bd0))
(segment (start 147.309 89.662) (end 148.721 88.25) (width 0.25) (layer "F.Cu") (net 28) (tstamp f25b0980-774a-408b-add7-c23bea396866))
(segment (start 149.92 93.98) (end 153.65 90.25) (width 0.5) (layer "F.Cu") (net 29) (tstamp 4f3f14c2-3141-4d14-ba88-64062bbff5ff))
(segment (start 146.558 93.98) (end 149.92 93.98) (width 0.5) (layer "F.Cu") (net 29) (tstamp d6bd82ab-c51b-40f9-9254-abe46b6a3265))
(segment (start 133.858 93.98) (end 146.558 93.98) (width 0.5) (layer "B.Cu") (net 29) (tstamp 7670d6a4-669e-4a95-8178-29fc8bb78054))
(segment (start 129.253771 59.785489) (end 118.973501 59.785489) (width 0.25) (layer "F.Cu") (net 30) (tstamp 0464bb70-6fff-46ad-85eb-19ac6af44dd6))
(segment (start 120.189771 62.325489) (end 121.364282 63.5) (width 0.25) (layer "F.Cu") (net 30) (tstamp 2d8c05d0-9ea4-494f-990e-a7e8cac95ef9))
(segment (start 118.285489 60.473501) (end 118.285489 61.637477) (width 0.25) (layer "F.Cu") (net 30) (tstamp 3b11bed4-c486-4c80-9094-555b9a6d2ad2))
(segment (start 118.973501 62.325489) (end 120.189771 62.325489) (width 0.25) (layer "F.Cu") (net 30) (tstamp 81a0ec72-15de-4536-8191-4da571b411db))
(segment (start 118.285489 61.637477) (end 118.973501 62.325489) (width 0.25) (layer "F.Cu") (net 30) (tstamp 86b479b8-dc79-4f2e-a729-719d6abad17b))
(segment (start 118.973501 59.785489) (end 118.285489 60.473501) (width 0.25) (layer "F.Cu") (net 30) (tstamp a8f2ae2c-437a-4604-a876-a582405b4496))
(segment (start 145.926956 61.15552) (end 130.623802 61.15552) (width 0.25) (layer "F.Cu") (net 30) (tstamp c25f7b04-9412-4283-b108-901b947120f2))
(segment (start 153.65 63.25) (end 148.021436 63.25) (width 0.25) (layer "F.Cu") (net 30) (tstamp c9aa2994-c39c-4ab3-952c-91f132e9dd28))
(segment (start 130.623802 61.15552) (end 129.253771 59.785489) (width 0.25) (layer "F.Cu") (net 30) (tstamp ce73e2c8-5cf1-41e0-bae8-9bb036219a8c))
(segment (start 148.021436 63.25) (end 145.926956 61.15552) (width 0.25) (layer "F.Cu") (net 30) (tstamp e128d8b9-5c9d-426e-a5a8-21b33e266847))
(segment (start 121.364282 63.5) (end 122 63.5) (width 0.25) (layer "F.Cu") (net 30) (tstamp e20235ca-5f11-4e25-aa38-95339f6a33c0))
(segment (start 154.686 57.150511) (end 153.352274 57.150511) (width 0.25) (layer "F.Cu") (net 31) (tstamp 1e34d2a0-249d-433c-974f-3a619acedbf4))
(segment (start 121.000031 54.005969) (end 117.835969 57.170031) (width 0.25) (layer "F.Cu") (net 31) (tstamp 4e4516c4-6cc2-4697-b4c6-aebc0d135d0b))
(segment (start 155.768519 58.23303) (end 154.686 57.150511) (width 0.25) (layer "F.Cu") (net 31) (tstamp 8529ad27-a755-4c72-a97c-9956a64bac23))
(segment (start 155.768519 64.243481) (end 155.768519 58.23303) (width 0.25) (layer "F.Cu") (net 31) (tstamp 8f7a1498-3a8f-4f26-92f7-066e30c689cf))
(segment (start 117.835969 61.875969) (end 119.46 63.5) (width 0.25) (layer "F.Cu") (net 31) (tstamp 9788a667-633a-43fd-9244-c9b1f257e3d8))
(segment (start 154.836 65.176) (end 155.768519 64.243481) (width 0.25) (layer "F.Cu") (net 31) (tstamp c66dec91-3071-4477-a04a-9a7543127cc6))
(segment (start 150.207732 54.005969) (end 121.000031 54.005969) (width 0.25) (layer "F.Cu") (net 31) (tstamp ca058c59-4dd4-46da-bb67-49f0719e5ad7))
(segment (start 153.352274 57.150511) (end 150.207732 54.005969) (width 0.25) (layer "F.Cu") (net 31) (tstamp e3bb5b0e-01a6-4e80-bd79-308d1a1b9a88))
(segment (start 117.835969 57.170031) (end 117.835969 61.875969) (width 0.25) (layer "F.Cu") (net 31) (tstamp e806c245-46f3-41af-a705-4bc09a53925d))
(segment (start 153.586 65.176) (end 154.836 65.176) (width 0.25) (layer "F.Cu") (net 31) (tstamp f315ea89-620d-410e-9436-82fb8bb68344))
(zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp a150f0c9-1a23-4200-b489-18791f6d5ce5) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 180.086 50.038)
(xy 179.959 99.949)
(xy 99.949 100.076)
(xy 99.949 49.911)
(xy 179.959 49.911)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 177.970056 50.5095)
(xy 177.972284 50.509847)