-
Notifications
You must be signed in to change notification settings - Fork 2
/
MounT_Z88_Feather.kicad_pcb
9278 lines (9260 loc) · 346 KB
/
MounT_Z88_Feather.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")
(title_block
(title "MounT_Z88_Feather")
(date "2022-10-23")
(rev "002")
(company "Brian K. White - [email protected]")
(comment 1 "CC-BY-SA")
(comment 2 "github.com/bkw777/MounT")
)
(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)
(grid_origin 147.32 96.52)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBER_${TITLE}_${REVISION}")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad1)")
(net 3 "Net-(C1-Pad2)")
(net 4 "Net-(C2-Pad1)")
(net 5 "Net-(C2-Pad2)")
(net 6 "Net-(C4-Pad1)")
(net 7 "Net-(C5-Pad1)")
(net 8 "/En")
(net 9 "+3V3")
(net 10 "/DTR_TTL")
(net 11 "/DSR_TTL")
(net 12 "/TX_TTL")
(net 13 "/RX_TTL")
(net 14 "/DTR_232")
(net 15 "/CTS_232")
(net 16 "/RTS_232")
(net 17 "/RX_232")
(net 18 "/TX_232")
(net 19 "unconnected-(J1-Pad13)")
(net 20 "unconnected-(J1-Pad12)")
(net 21 "unconnected-(J1-Pad11)")
(net 22 "unconnected-(J1-Pad10)")
(net 23 "unconnected-(J1-Pad9)")
(net 24 "unconnected-(J1-Pad8)")
(net 25 "unconnected-(J1-Pad7)")
(net 26 "unconnected-(J1-Pad6)")
(net 27 "unconnected-(J1-Pad5)")
(net 28 "unconnected-(J1-Pad3)")
(net 29 "unconnected-(J1-Pad1)")
(net 30 "unconnected-(J1-Pad17)")
(net 31 "unconnected-(J1-Pad18)")
(net 32 "unconnected-(J1-Pad21)")
(net 33 "unconnected-(J1-Pad22)")
(net 34 "unconnected-(J1-Pad23)")
(net 35 "unconnected-(J1-Pad24)")
(net 36 "unconnected-(J1-Pad25)")
(net 37 "unconnected-(J1-Pad26)")
(net 38 "unconnected-(J1-Pad28)")
(net 39 "unconnected-(J2-Pad1)")
(net 40 "unconnected-(J2-Pad6)")
(net 41 "/DSR_DCD_232")
(footprint "0_LOCAL:C_0805" (layer "F.Cu")
(tedit 5F4898F2) (tstamp 00000000-0000-0000-0000-00005f3a1bdb)
(at 151.13 88.519 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f479cc5")
(attr smd)
(fp_text reference "C1" (at 0 -0.0254 90) (layer "F.SilkS")
(effects (font (size 0.7112 0.7112) (thickness 0.1016)))
(tstamp 048133f3-19b2-4254-8d22-feab758eac13)
)
(fp_text value "0.1uf" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc427932-466b-495c-91f4-d741785cbf15)
)
(fp_text user "${REFERENCE}" (at 0 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc02cde4-5077-4089-bde7-37e299231dd1)
)
(fp_line (start 1.651 -0.762) (end -1.651 -0.762) (layer "F.SilkS") (width 0.1016) (tstamp 51e0562a-8301-49c6-b43a-24555743a342))
(fp_line (start 1.651 -0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 6fb8f4ca-2a09-401f-a63a-1ef1ad120eef))
(fp_line (start -1.651 0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 84267b86-516c-44a1-8850-f46611263f10))
(fp_line (start -1.651 -0.762) (end -1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 863edb44-74fa-41de-9f84-01956cc638ef))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 44cc808a-940d-4061-b3eb-0aa9c426f370))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 9a87ffb9-22d4-4a2e-a4eb-a97ea41e36a9))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp c14f3706-5921-4dbd-b370-c75e74eaa06f))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp c406e2a2-a740-4629-b5d3-3557dc51eddf))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 273b51a7-756e-4183-b7a2-2231d77e38e8))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 2c44fd04-030d-40ac-ad17-22038d822690))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp a7e8df76-a65e-49e0-b734-d45e3d0450a6))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp b9dcdf89-a376-47cd-bc03-0b6e11c20fb5))
(pad "1" smd roundrect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)") (pintype "passive") (tstamp 6b47f967-30d5-46cc-bd80-a52812a4c1b1))
(pad "2" smd roundrect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C1-Pad2)") (pintype "passive") (tstamp 68386ee0-8e6e-4c9f-b633-d5e0a1517ff1))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_LOCAL:C_0805" (layer "F.Cu")
(tedit 5F4898F2) (tstamp 00000000-0000-0000-0000-00005f3a1bec)
(at 147.32 88.519 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f473fc0")
(attr smd)
(fp_text reference "C2" (at 0.0254 0 90) (layer "F.SilkS")
(effects (font (size 0.7112 0.7112) (thickness 0.1016)))
(tstamp d3f9aad2-a936-4368-a5cc-c87e184759de)
)
(fp_text value "0.1uf" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba83e0ca-604a-4095-aff5-3040b20a5ecf)
)
(fp_text user "${REFERENCE}" (at 0 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8ffc78d-c8cb-4b64-b012-442366db0aa5)
)
(fp_line (start -1.651 0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 08e0203b-2b68-43ef-8b38-57227820513b))
(fp_line (start -1.651 -0.762) (end -1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 132a309c-6579-4a84-b047-390559aacfd4))
(fp_line (start 1.651 -0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 36ddd2e4-c542-4365-90ed-83697874daef))
(fp_line (start 1.651 -0.762) (end -1.651 -0.762) (layer "F.SilkS") (width 0.1016) (tstamp 83fdf4bc-ad30-4aa2-88af-9b9d335c0ea4))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 26eadb80-3a5c-4367-8c06-548592472171))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 5b7ea792-639b-417d-8010-12939ef5d835))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 923179ff-1c68-4483-84e6-cad09a0f4c0a))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp e6b720e0-5366-48a3-91b9-192023a24ae1))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 4ec0c1ab-8389-4c7e-9879-39156282e9fb))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 6a0242c5-46a2-4894-a3b0-1972301f10e3))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 6b4f8b84-bfd3-45b0-b174-6ffd89304f47))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 96f9027f-0809-4656-b288-618625d857ff))
(pad "1" smd roundrect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C2-Pad1)") (pintype "passive") (tstamp 09a65f17-da82-4986-a585-a4350c9c68a1))
(pad "2" smd roundrect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C2-Pad2)") (pintype "passive") (tstamp 88c776dc-3f67-4e4a-947d-5a9c2d20d070))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_LOCAL:Adafruit_Feather_stagger_6mil" (layer "F.Cu")
(tedit 60436A52) (tstamp 00000000-0000-0000-0000-00005f3a83f9)
(at 147.32 96.52 180)
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(property "Status" "Active")
(path "/00000000-0000-0000-0000-00005f3c661a")
(attr through_hole)
(fp_text reference "J1" (at -5.842 0) (layer "F.SilkS") hide
(effects (font (size 4 4) (thickness 0.12)))
(tstamp 3e886806-2310-4596-bb41-667b63b5264f)
)
(fp_text value "Adafruit_Feather" (at 0 -2) (layer "F.Fab")
(effects (font (size 4 4) (thickness 0.01)))
(tstamp 1c75aa1a-9eb9-4f06-8ad8-86f0824b357b)
)
(fp_line (start 20.2692 -11.3792) (end -10.1092 -11.3792) (layer "F.SilkS") (width 0.12) (tstamp 0db159c7-030e-434d-ada3-9abafc110dc3))
(fp_line (start 20.2692 -8.9408) (end 20.2692 -11.3792) (layer "F.SilkS") (width 0.12) (tstamp 19b172de-618d-4097-8fcd-a5c9edbc576d))
(fp_line (start -10.1092 -8.9408) (end 20.2692 -8.9408) (layer "F.SilkS") (width 0.12) (tstamp 24cb8d74-a2eb-462f-8bf2-7df21dda8837))
(fp_line (start -20.2692 11.3792) (end 20.2692 11.3792) (layer "F.SilkS") (width 0.12) (tstamp 77da7c72-1614-44c3-9a21-7caf806b977c))
(fp_line (start 20.2692 11.3792) (end 20.2692 8.9408) (layer "F.SilkS") (width 0.12) (tstamp cd9c65b0-254b-413a-ba08-01f6142d05d6))
(fp_line (start -20.2692 8.9408) (end -20.2692 11.3792) (layer "F.SilkS") (width 0.12) (tstamp db610ea1-69b6-4d9f-972e-70f7e4b483a1))
(fp_line (start 20.2692 8.9408) (end -20.2692 8.9408) (layer "F.SilkS") (width 0.12) (tstamp e645ea7c-451e-4d11-ae39-b9fc081f31ba))
(fp_line (start -10.1092 -11.3792) (end -10.1092 -8.9408) (layer "F.SilkS") (width 0.12) (tstamp e89425b2-c8bd-46c6-9822-bfa98388f71c))
(fp_line (start -25.4 8.89) (end -25.4 -8.89) (layer "Dwgs.User") (width 0.12) (tstamp 18aebac5-3623-437a-9012-7c3752212b80))
(fp_line (start -22.86 -11.43) (end 22.86 -11.43) (layer "Dwgs.User") (width 0.12) (tstamp c3a1d276-f8bd-43d5-b5c7-387bf7d73f0c))
(fp_line (start 22.86 11.43) (end -22.86 11.43) (layer "Dwgs.User") (width 0.12) (tstamp efc83dd1-1a97-4f1b-b053-073db95d880e))
(fp_line (start 25.4 -8.89) (end 25.4 8.89) (layer "Dwgs.User") (width 0.12) (tstamp f0948da6-f6c2-4c54-90a6-4bf521c89134))
(fp_arc (start 22.86 -11.43) (mid 24.656051 -10.686051) (end 25.4 -8.89) (layer "Dwgs.User") (width 0.12) (tstamp 0ca640e0-66e6-450c-b799-041d699a9bed))
(fp_arc (start 25.4 8.89) (mid 24.656051 10.686051) (end 22.86 11.43) (layer "Dwgs.User") (width 0.12) (tstamp a890e551-d285-475a-8136-f1d7adba01a0))
(fp_arc (start -25.4 -8.89) (mid -24.656051 -10.686051) (end -22.86 -11.43) (layer "Dwgs.User") (width 0.12) (tstamp b37d270b-e4f7-4bbd-abdc-8f1a7117aa43))
(fp_arc (start -22.86 11.43) (mid -24.656051 10.686051) (end -25.4 8.89) (layer "Dwgs.User") (width 0.12) (tstamp fd9316ad-355f-4499-b0ea-d9d072308bd9))
(fp_circle (center -22.86 8.89) (end -21.59 8.89) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 724562a7-9509-4a0d-8e66-541d074b8db8))
(fp_circle (center 22.86 -8.89) (end 24.13 -8.89) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 87ea38ef-3efb-4fb5-ab1f-3f013574b25e))
(fp_circle (center -22.86 -8.89) (end -21.59 -8.89) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 90a48dc7-4288-435b-8fdb-93c732073221))
(fp_circle (center 22.86 8.89) (end 24.13 8.89) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 9fc18b02-55f0-4edb-bbeb-51b2188d4341))
(pad "" np_thru_hole circle locked (at -22.86 -8.89 180) (size 2.54 2.54) (drill 2.54) (layers *.Cu *.Mask) (tstamp 8b9d3be6-ac45-4b07-9aad-5780c49255a4))
(pad "" np_thru_hole circle locked (at 22.86 -8.89 180) (size 2.54 2.54) (drill 2.54) (layers *.Cu *.Mask) (tstamp aa906620-4555-4cfa-a62d-313e5bd77f8b))
(pad "" np_thru_hole circle locked (at 22.86 8.89 180) (size 2.54 2.54) (drill 2.54) (layers *.Cu *.Mask) (tstamp b373b366-4de3-42bc-bb4e-fe526924686e))
(pad "" np_thru_hole circle locked (at -22.86 8.89 180) (size 2.54 2.54) (drill 2.54) (layers *.Cu *.Mask) (tstamp cb7b3f1f-1554-48e6-97c0-593e868feaf9))
(pad "1" thru_hole circle locked (at -19.05 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 29 "unconnected-(J1-Pad1)") (pinfunction "~{RST}") (pintype "input+no_connect") (tstamp e6aa316a-1773-4a38-94ac-dd31b0b6c0f1))
(pad "2" thru_hole circle locked (at -16.51 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 9 "+3V3") (pinfunction "3V3") (pintype "power_out") (tstamp e3dfd75c-fb65-4ba8-980b-e229d382dc82))
(pad "3" thru_hole circle locked (at -13.97 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "unconnected-(J1-Pad3)") (pinfunction "ARef") (pintype "input+no_connect") (tstamp 9b4f0dae-ed88-4396-89fd-b29098ea7180))
(pad "4" thru_hole circle locked (at -11.43 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 816f8c79-0818-4073-a195-8027f4f9abfc))
(pad "5" thru_hole circle locked (at -8.89 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 27 "unconnected-(J1-Pad5)") (pinfunction "A0") (pintype "bidirectional+no_connect") (tstamp 63bbb98b-9e7c-4bfa-8e40-ed24c3c03254))
(pad "6" thru_hole circle locked (at -6.35 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 26 "unconnected-(J1-Pad6)") (pinfunction "A1") (pintype "bidirectional+no_connect") (tstamp 1b4a1299-3b03-4d33-9b09-1e21079aec27))
(pad "7" thru_hole circle locked (at -3.81 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 25 "unconnected-(J1-Pad7)") (pinfunction "A2") (pintype "bidirectional+no_connect") (tstamp 8eb09dce-27a9-494c-80e4-e6a1fb5f61ea))
(pad "8" thru_hole circle locked (at -1.27 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 24 "unconnected-(J1-Pad8)") (pinfunction "A3") (pintype "bidirectional+no_connect") (tstamp 3811b1e3-b879-4004-a25e-67acf07a4d51))
(pad "9" thru_hole circle locked (at 1.27 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 23 "unconnected-(J1-Pad9)") (pinfunction "A4") (pintype "bidirectional+no_connect") (tstamp 1b328186-2a77-43f5-a66e-a4818a29bdcb))
(pad "10" thru_hole circle locked (at 3.81 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 22 "unconnected-(J1-Pad10)") (pinfunction "A5") (pintype "bidirectional+no_connect") (tstamp 4342c3c4-74f1-4f0e-a271-19795793166b))
(pad "11" thru_hole circle locked (at 6.35 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 21 "unconnected-(J1-Pad11)") (pinfunction "SCK") (pintype "bidirectional+no_connect") (tstamp 80a8a4fd-bf66-4742-9a26-e520c8acfd62))
(pad "12" thru_hole circle locked (at 8.89 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 20 "unconnected-(J1-Pad12)") (pinfunction "MOSI") (pintype "bidirectional+no_connect") (tstamp cbc06d78-589f-4f6c-8f35-65f16b5fcaae))
(pad "13" thru_hole circle locked (at 11.43 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 19 "unconnected-(J1-Pad13)") (pinfunction "MISO") (pintype "bidirectional+no_connect") (tstamp 8ccc7caf-18ce-40ad-9abd-88ec43a7c2d4))
(pad "14" thru_hole circle locked (at 13.97 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 13 "/RX_TTL") (pinfunction "RX/0") (pintype "bidirectional") (tstamp aca80629-7426-41ab-862d-0182b4d3e9b1))
(pad "15" thru_hole circle locked (at 16.51 10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 12 "/TX_TTL") (pinfunction "TX/1") (pintype "bidirectional") (tstamp 6bf342cd-fe2e-4380-8478-18f5347a0e66))
(pad "16" thru_hole circle locked (at 19.05 10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f20c7391-281e-4265-877f-901ca23540cd))
(pad "17" thru_hole circle locked (at 19.05 -10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 30 "unconnected-(J1-Pad17)") (pinfunction "SDA/2") (pintype "bidirectional+no_connect") (tstamp 06f32b74-e59a-440e-89a0-1f0e88c18761))
(pad "18" thru_hole circle locked (at 16.51 -10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 31 "unconnected-(J1-Pad18)") (pinfunction "SCL/3") (pintype "bidirectional+no_connect") (tstamp fd2b9bb4-639d-4b22-bba1-858bc27e7ce5))
(pad "19" thru_hole circle locked (at 13.97 -10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 10 "/DTR_TTL") (pinfunction "~5") (pintype "bidirectional") (tstamp 40f522e8-d7cf-4c94-9672-692a875f1ff5))
(pad "20" thru_hole circle locked (at 11.43 -10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 11 "/DSR_TTL") (pinfunction "6") (pintype "bidirectional") (tstamp a36244d5-ae50-4410-a0e3-c391c1c47f29))
(pad "21" thru_hole circle locked (at 8.89 -10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 32 "unconnected-(J1-Pad21)") (pinfunction "~9") (pintype "bidirectional+no_connect") (tstamp 5d9d8a76-0999-4e9d-a3c5-eb3436d0e8e0))
(pad "22" thru_hole circle locked (at 6.35 -10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 33 "unconnected-(J1-Pad22)") (pinfunction "~10") (pintype "bidirectional+no_connect") (tstamp 152332b3-554b-4b8c-a38d-4af711f8c4b6))
(pad "23" thru_hole circle locked (at 3.81 -10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 34 "unconnected-(J1-Pad23)") (pinfunction "~11") (pintype "bidirectional+no_connect") (tstamp 2a2857ba-2abb-47ac-912b-0f72c910aaea))
(pad "24" thru_hole circle locked (at 1.27 -10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 35 "unconnected-(J1-Pad24)") (pinfunction "12") (pintype "bidirectional+no_connect") (tstamp 6f57d639-6620-48bd-a062-16ce05fc715c))
(pad "25" thru_hole circle locked (at -1.27 -10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 36 "unconnected-(J1-Pad25)") (pinfunction "13") (pintype "bidirectional+no_connect") (tstamp 0db6a1e5-88b6-44b9-a45f-5dadfd7073c3))
(pad "26" thru_hole circle locked (at -3.81 -10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 37 "unconnected-(J1-Pad26)") (pinfunction "USB") (pintype "power_in+no_connect") (tstamp 25d260d8-aa41-4034-8f00-e01560ca9a44))
(pad "27" thru_hole circle locked (at -6.35 -10.2362 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 8 "/En") (pinfunction "En") (pintype "input") (tstamp ad56643c-838e-43ec-b305-2f556645f68a))
(pad "28" thru_hole circle locked (at -8.89 -10.0838 180) (size 1.397 1.397) (drill 0.9144) (layers *.Cu *.Mask)
(net 38 "unconnected-(J1-Pad28)") (pinfunction "BAT") (pintype "power_in+no_connect") (tstamp d5e4b14c-3e3b-411f-ac0c-6a34c3f09218))
)
(footprint "0_LOCAL:SOIC-16_W3.90mm" (layer "F.Cu")
(tedit 6157DC02) (tstamp 00000000-0000-0000-0000-00005f3ac3b8)
(at 147.32 93.218 180)
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f42adf7")
(attr smd)
(fp_text reference "U1" (at 0 -0.762) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a133a353-64b2-45c2-8780-31a6171b8d15)
)
(fp_text value "MAX3232" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ddf2a5d8-64b4-4258-98c1-2643eb1f490c)
)
(fp_text user "REF**" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f66ebc66-f7be-4de6-975c-36e6012373d6)
)
(fp_line (start 4.826 -2.0955) (end 5.08 -2.0955) (layer "F.SilkS") (width 0.1) (tstamp 0c107d18-f429-48dd-a70e-49c7337e6830))
(fp_line (start -5.08 -2.0955) (end -4.826 -2.0955) (layer "F.SilkS") (width 0.1) (tstamp 5282b1f1-c32f-4a1a-a067-5b0311653326))
(fp_line (start -5.08 -2.0955) (end -5.08 3.2385) (layer "F.SilkS") (width 0.1) (tstamp 81bd0842-738f-437d-86a2-f9c899e7460d))
(fp_line (start 5.08 2.0955) (end 5.08 -2.0955) (layer "F.SilkS") (width 0.1) (tstamp d283fb3e-bcc6-4b5c-bff0-f35515299cf5))
(fp_line (start 4.826 2.0955) (end 5.08 2.0955) (layer "F.SilkS") (width 0.1) (tstamp d6ca7106-844f-46ed-a8af-4e6fa16d1543))
(fp_line (start -5.08 2.0955) (end -4.826 2.0955) (layer "F.SilkS") (width 0.1) (tstamp e02ade67-bca7-435a-8da0-bb0dcb6a289d))
(fp_circle (center -4.445 1.3335) (end -4.2926 1.3335) (layer "F.SilkS") (width 0.3048) (fill none) (tstamp ccb0caf3-c7f0-446d-8451-2fb938008420))
(fp_line (start -5.2 3.73) (end -5.2 -3.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a611490-4e0b-47fb-a2fe-f5c9822f8de1))
(fp_line (start 5.2 3.73) (end 5.2 -3.73) (layer "F.CrtYd") (width 0.05) (tstamp 5c003d0e-06a4-4f54-8821-ea36f3087e7c))
(fp_line (start -5.2 3.73) (end 5.2 3.73) (layer "F.CrtYd") (width 0.05) (tstamp a592531d-b7f6-4a4c-bdb3-7bfac77ae537))
(fp_line (start -5.1 -3.65) (end 5.2 -3.73) (layer "F.CrtYd") (width 0.05) (tstamp faf1c849-9279-4503-803e-a660319243fa))
(fp_line (start 4.95 1.95) (end -4.95 1.95) (layer "F.Fab") (width 0.1) (tstamp 4a8a7ba8-1304-4830-a170-15fcae634bae))
(fp_line (start -4.95 -1.95) (end -4.95 1.95) (layer "F.Fab") (width 0.1) (tstamp 7bffe58e-89a9-4e93-a7d9-43b004c092c9))
(fp_line (start 4.95 -1.95) (end 4.95 1.95) (layer "F.Fab") (width 0.1) (tstamp a262cd84-b6ef-474e-b95b-da6367960dd6))
(fp_line (start -4.95 -1.95) (end 4.95 -1.95) (layer "F.Fab") (width 0.1) (tstamp a48aee6c-0606-4b3c-afa7-2cfa1969d3a6))
(pad "1" smd roundrect locked (at -4.445 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)") (pinfunction "C1+") (pintype "passive") (tstamp b57fa4f2-a67f-431b-887c-ac98176ebf1c))
(pad "2" smd roundrect locked (at -3.175 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C4-Pad1)") (pinfunction "VS+") (pintype "power_out") (tstamp d34625d7-dede-49ff-8b36-948f191d8cf3))
(pad "3" smd roundrect locked (at -1.905 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C1-Pad2)") (pinfunction "C1-") (pintype "passive") (tstamp 237a4260-f352-4e67-b8d9-d370db6e57d6))
(pad "4" smd roundrect locked (at -0.635 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C2-Pad1)") (pinfunction "C2+") (pintype "passive") (tstamp 6cd2aad4-6dd0-4bd0-8c0b-b75f39c733a5))
(pad "5" smd roundrect locked (at 0.635 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C2-Pad2)") (pinfunction "C2-") (pintype "passive") (tstamp c2779c01-6b1c-47ae-95dc-4199edc5754c))
(pad "6" smd roundrect locked (at 1.905 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C5-Pad1)") (pinfunction "VS-") (pintype "power_out") (tstamp fb538232-c774-43f5-8638-f42b46df6201))
(pad "7" smd roundrect locked (at 3.175 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "/DSR_DCD_232") (pinfunction "T2OUT") (pintype "output") (tstamp 7b403cf5-35d3-47a2-af1a-d270f7998087))
(pad "8" smd roundrect locked (at 4.445 2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/DTR_232") (pinfunction "R2IN") (pintype "input") (tstamp cdde1b69-4c2c-4f6d-b51c-9f57d1559aee))
(pad "9" smd roundrect locked (at 4.445 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/DSR_TTL") (pinfunction "R2OUT") (pintype "output") (tstamp ebc9fc11-db29-4046-852a-b35e59d65720))
(pad "10" smd roundrect locked (at 3.175 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/DTR_TTL") (pinfunction "T2IN") (pintype "input") (tstamp 4d7a8906-0ff0-4bab-a2cc-7470d4586fbb))
(pad "11" smd roundrect locked (at 1.905 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/TX_TTL") (pinfunction "T1IN") (pintype "input") (tstamp e01d6285-8040-4a7c-8379-1cedd62d88f5))
(pad "12" smd roundrect locked (at 0.635 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/RX_TTL") (pinfunction "R1OUT") (pintype "output") (tstamp ae39d828-b4e7-4420-b689-e2a50babf67b))
(pad "13" smd roundrect locked (at -0.635 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/TX_232") (pinfunction "R1IN") (pintype "input") (tstamp 7839ac7b-a71e-4a85-a867-6f435e6904c0))
(pad "14" smd roundrect locked (at -1.905 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/RX_232") (pinfunction "T1OUT") (pintype "output") (tstamp 52e4b565-d368-4a96-942c-9bb9332c486b))
(pad "15" smd roundrect locked (at -3.175 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 93e7f58e-4a2a-4f62-b9c9-1fd16cc56a20))
(pad "16" smd roundrect locked (at -4.445 -2.7 180) (size 0.6 1.27) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp e9cab099-43f9-429c-adf8-322f37c90d65))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "0_LOCAL:C_0805" (layer "F.Cu")
(tedit 5F4898F2) (tstamp 00000000-0000-0000-0000-00005f3ae85a)
(at 143.51 88.519 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f486f92")
(attr smd)
(fp_text reference "C5" (at -0.0508 0 90) (layer "F.SilkS")
(effects (font (size 0.7112 0.7112) (thickness 0.1016)))
(tstamp 185062d3-d3a1-4062-9076-3e51baa3ce45)
)
(fp_text value "0.1uf" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8df381b3-2fa6-45e4-b86d-9847e13eeaac)
)
(fp_text user "${REFERENCE}" (at 0 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3d6cd17-6bdc-4151-abc9-32fe3126ccd2)
)
(fp_line (start -1.651 -0.762) (end -1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 1fcca953-2f64-41d1-bef4-3a8c131a4bbb))
(fp_line (start 1.651 -0.762) (end -1.651 -0.762) (layer "F.SilkS") (width 0.1016) (tstamp 4af7e36f-a7e0-4bc7-9c83-ae7dc4fedbac))
(fp_line (start -1.651 0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 631bfaaf-b5cb-472a-aa91-0541afa39ae8))
(fp_line (start 1.651 -0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp f85a1af9-6f02-4586-a7b2-da479c45b3f2))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 0a956f1c-5c0b-4ca6-996c-6b613b4d8f1c))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 2792f7dd-be78-41c1-931e-7d78b2195ab3))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 4c910156-d2bd-41a7-8a78-a953c74e2d4e))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 63c6e3a0-b481-474e-9ac1-828be93889c3))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 69ccb704-9fad-4fe6-9030-fba1ee560a03))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 88018df7-c387-4fcc-8a7f-d4b5e7aa77eb))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 9559dc78-1f4c-49ec-9bc0-7ac2e526edcc))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp aec9f347-b748-4506-bfb0-681ac116c7d9))
(pad "1" smd roundrect locked (at -1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C5-Pad1)") (pintype "passive") (tstamp 71c04287-e29d-46fc-9e38-0c584e8182f1))
(pad "2" smd roundrect locked (at 1 0 180) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 5d2fc5dc-4339-48d3-bbe0-017ce658747a))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_LOCAL:C_0805" (layer "F.Cu")
(tedit 5F4898F2) (tstamp 00000000-0000-0000-0000-00005f3aed19)
(at 153.797 94.996 90)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f488f0f")
(attr smd)
(fp_text reference "C3" (at 0.0254 0) (layer "F.SilkS")
(effects (font (size 0.7112 0.7112) (thickness 0.1016)))
(tstamp ba301daa-8e62-4049-bcab-ea4e144abb70)
)
(fp_text value "0.1uf" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b68587c7-837f-46d2-bcdc-0e6aabc85b87)
)
(fp_text user "${REFERENCE}" (at 0 -1.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13a02b98-034d-44db-9975-a21aa6e9f4f4)
)
(fp_line (start 1.651 -0.762) (end -1.651 -0.762) (layer "F.SilkS") (width 0.1016) (tstamp 58bc5628-6f6a-4864-aa20-8447634aa098))
(fp_line (start -1.651 0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 86c72396-5767-4af5-a9a0-94d4aa98817c))
(fp_line (start 1.651 -0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp d224e11e-7871-4e03-84d7-75ece05f7479))
(fp_line (start -1.651 -0.762) (end -1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp d99c522a-324e-4b81-beb4-2c0076de4d08))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 1253fac4-dfed-4166-b575-32331cd19115))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp b4d71bc8-0942-4347-bf0c-f7e50024821a))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp deb3a5f1-5ed7-46eb-8509-3332bfe0f46d))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp df1a0e35-8c9c-4b99-b770-df208a98e7a5))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 1300dbbe-6be9-4798-a24c-c2b007757204))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 221f2a09-cff3-4f60-a4ac-50567a0be0de))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp ab336586-29a3-4308-8765-d8e02bcb84c3))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp dc98d3d9-2068-4954-96e5-4f5f4af9d726))
(pad "1" smd roundrect locked (at -1 0 90) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "+3V3") (pintype "passive") (tstamp aa81b8c3-7728-4d8d-bab8-580fde34e3bc))
(pad "2" smd roundrect locked (at 1 0 90) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0bf8f7a8-8ad9-4d34-a82a-b2614c693589))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_LOCAL:C_0805" (layer "F.Cu")
(tedit 5F4898F2) (tstamp 00000000-0000-0000-0000-00005f3baacf)
(at 153.797 91.186 90)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f48099a")
(attr smd)
(fp_text reference "C4" (at -0.0254 -0.0254) (layer "F.SilkS")
(effects (font (size 0.7112 0.7112) (thickness 0.1016)))
(tstamp bb489a14-42e6-475e-ac1b-d6a3d7e60960)
)
(fp_text value "0.1uf" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e5f97bf-e2b3-4e86-a01a-76714009d4f5)
)
(fp_text user "${REFERENCE}" (at 0 -1.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70f6d92e-f8d5-4562-8f5c-db8085a770ee)
)
(fp_line (start 1.651 -0.762) (end -1.651 -0.762) (layer "F.SilkS") (width 0.1016) (tstamp 32f7455a-7b93-46a0-bd73-be9649d21c48))
(fp_line (start -1.651 -0.762) (end -1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 5c8cf235-ccf0-4997-92b5-0ef9603bcd34))
(fp_line (start -1.651 0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp 9e33060a-4bd4-47ee-88fd-d3b7d29e5f96))
(fp_line (start 1.651 -0.762) (end 1.651 0.762) (layer "F.SilkS") (width 0.1016) (tstamp e0e104b8-5f46-4506-9388-300b60567a34))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 668c3d40-41fd-4b77-9ac7-9dea9f127457))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 92a0e9fb-3321-47e4-8390-2fb4b74e179a))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp ab5ad693-7f18-4ad7-9ad2-9f34c63b88fb))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp e40e8f99-659d-446b-a079-7e31eaa2a764))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 59b53d14-66e6-4b72-a6df-bbb47f17e015))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp bb73da08-3e7b-4b32-a8b2-2ade6949fdf1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp c37de5f2-456c-4ead-a9e0-62c949254e46))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp e973441e-0570-451c-a5b9-31e49d517614))
(pad "1" smd roundrect locked (at -1 0 90) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C4-Pad1)") (pintype "passive") (tstamp 8d3f0807-9afc-4b57-8184-019f5acaec27))
(pad "2" smd roundrect locked (at 1 0 90) (size 1 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 059ebe65-c700-463d-9c3e-406027a3a690))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_LOCAL:EG1215" (layer "F.Cu")
(tedit 6053B3E1) (tstamp 11aa242d-b5c0-40ec-a667-dc0bf4c513cc)
(at 171.069 96.52 90)
(property "Field4" "CUI Inc.")
(property "Field5" "3.96 mm")
(property "Field6" "Manufacturer Recommendations")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f447651")
(attr smd)
(fp_text reference "SW1" (at 0 0.635 270 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 3aa46355-527a-4cb5-a771-aefb639ed5d6)
)
(fp_text value "CUS-12TB" (at -0.15 -4.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.01)))
(tstamp e84aad1b-6144-4212-8470-a88f7f79cae3)
)
(fp_line (start 3.35 1.3) (end 3.35 -1.3) (layer "F.SilkS") (width 0.12) (tstamp 5c85d1d8-c951-4847-9858-034f9a6f3b90))
(fp_line (start -3.35 -1.3) (end -3.35 1.3) (layer "F.SilkS") (width 0.12) (tstamp 9c9f0478-6a11-4651-977e-c7da31e923fc))
(fp_line (start -3.35 1.3) (end 3.35 1.3) (layer "F.SilkS") (width 0.12) (tstamp 9e96916e-62c0-4b23-a161-1481c6214ce2))
(fp_line (start 3.35 -1.3) (end -3.35 -1.3) (layer "F.SilkS") (width 0.12) (tstamp bf0b6300-6c41-49ec-b9e4-849396905832))
(fp_line (start 0.05 1.3) (end 0.05 2.55) (layer "Dwgs.User") (width 0.08) (tstamp 0c964a87-2b10-45ad-8978-d71153f61c43))
(fp_line (start -1.35 1.9) (end -1.35 2.15) (layer "Dwgs.User") (width 0.08) (tstamp 48307bff-3e5b-4dd2-9e50-9a91cafc2a9b))
(fp_line (start -0.05 1.5) (end -0.05 1.3) (layer "Dwgs.User") (width 0.08) (tstamp 4ab4220a-303d-48cc-9233-b7333e1ab574))
(fp_line (start -0.05 2.15) (end -0.05 1.9) (layer "Dwgs.User") (width 0.08) (tstamp 4e1cef22-7596-4343-8db1-a334c945ad5b))
(fp_line (start 0.2 2.7) (end 1.2 2.7) (layer "Dwgs.User") (width 0.08) (tstamp 75163db3-e2e6-47d1-9181-7809eec921eb))
(fp_line (start -1.35 1.3) (end -1.35 1.5) (layer "Dwgs.User") (width 0.08) (tstamp 8c0c3614-7baa-4dbd-91a5-a52a4ea4e5b0))
(fp_line (start 1.35 2.55) (end 1.35 1.3) (layer "Dwgs.User") (width 0.08) (tstamp a6f66bba-0d95-4cef-9965-325f7c6b7be5))
(fp_line (start -0.85 2.7) (end -0.55 2.7) (layer "Dwgs.User") (width 0.08) (tstamp cd8f6649-ccf4-4f31-a88f-5e4e6bd000bc))
(fp_arc (start 1.35 2.55) (mid 1.306066 2.656066) (end 1.2 2.7) (layer "Dwgs.User") (width 0.08) (tstamp 816c994a-719f-416f-b1ab-45a340bfc344))
(fp_arc (start -0.05 2.55) (mid -0.093934 2.656066) (end -0.2 2.7) (layer "Dwgs.User") (width 0.08) (tstamp 9b974b93-8183-4ad0-9362-209afb0017cc))
(fp_arc (start 0.2 2.7) (mid 0.093934 2.656066) (end 0.05 2.55) (layer "Dwgs.User") (width 0.08) (tstamp c29fe708-b0a0-45d5-bf35-5d3decc0ec9f))
(fp_arc (start -1.2 2.7) (mid -1.306066 2.656066) (end -1.35 2.55) (layer "Dwgs.User") (width 0.08) (tstamp ead0b806-f19f-46af-9305-3601ca4375f8))
(pad "" np_thru_hole circle (at -1.5 0 90) (size 0.9 0.9) (drill 0.9) (layers *.Cu *.Mask) (tstamp 89ab92d0-fef3-46a4-aeec-7f05b5d3bf5a))
(pad "" np_thru_hole circle (at 1.5 0 90) (size 0.9 0.9) (drill 0.9) (layers *.Cu *.Mask) (tstamp c4fdad7c-b3e4-460d-91b2-0eb7c5e5f411))
(pad "1" smd roundrect (at -2.25 -1.75 90) (size 0.7 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 8 "/En") (pintype "passive") (tstamp 78b82a38-4755-47df-9c33-98e2bc6bd112))
(pad "2" smd roundrect (at 0.75 -1.75 90) (size 0.7 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "GND") (pinfunction "Common") (pintype "passive") (tstamp d6cdb266-b72c-440b-bad5-82bd4216bc25))
(pad "3" smd roundrect (at 2.25 -1.75 90) (size 0.7 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "GND") (pintype "passive") (tstamp 68fe08e6-89f4-453e-a1ee-c7dcd72b1b45))
(pad "S" smd roundrect (at 3.65 -1.05 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "GND") (pinfunction "Shell") (pintype "passive") (tstamp 4ea4e27e-7f78-43f3-8df8-4ff2dfadeb9d))
(pad "S" smd roundrect (at 3.65 1.05 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "GND") (pinfunction "Shell") (pintype "passive") (tstamp 6c2212b3-a291-4888-b211-4e9fd43c3d03))
(pad "S" smd roundrect (at -3.65 1.05 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "GND") (pinfunction "Shell") (pintype "passive") (tstamp 838d20f1-00b0-4bb8-8616-d3aafcdc3593))
(pad "S" smd roundrect (at -3.65 -1.05 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "GND") (pinfunction "Shell") (pintype "passive") (tstamp ee649e3f-5e11-457f-9939-1812b7b8be3e))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/CUS-12TB.stp"
(offset (xyz 0 0 1.37))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "0_LOCAL:DSUB-9_Male_Vertical_P2.77x2.84mm" (layer "B.Cu")
(tedit 5F569F84) (tstamp 786b46a1-2ab4-4567-b083-cc61ee059415)
(at 152.86 97.79 180)
(descr "9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
(tags "9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/79ed0caa-87f7-413f-af18-7e242086e54b")
(attr through_hole)
(fp_text reference "J2" (at -0.048 1.651) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3d9477c9-84ed-40f0-866f-103e2db5bf52)
)
(fp_text value "DE9_Male" (at 5.54 -8.73) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 562cf8c3-5fa7-461c-b628-328fe040388f)
)
(fp_text user "${REFERENCE}" (at 5.54 -1.42) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d8724949-bc79-437e-9b73-e0850c6a2608)
)
(fp_line (start 0.207579 -5.63) (end 10.872421 -5.63) (layer "B.SilkS") (width 0.12) (tstamp 5459dabc-5e09-4c38-86b8-f9c7ed5dce0c))
(fp_line (start 13.40647 0.841744) (end 12.507202 -4.258256) (layer "B.SilkS") (width 0.12) (tstamp 9635e422-8f03-4700-aca1-042de5068f58))
(fp_line (start -0.691689 2.79) (end 11.771689 2.79) (layer "B.SilkS") (width 0.12) (tstamp ad3b2b6e-e85d-4c30-8ce0-6570dbd04324))
(fp_line (start -2.32647 0.841744) (end -1.427202 -4.258256) (layer "B.SilkS") (width 0.12) (tstamp f075e819-40af-41e3-8971-57fd90f8b9de))
(fp_arc (start 13.40647 0.841744) (mid 13.043323 2.197028) (end 11.771689 2.79) (layer "B.SilkS") (width 0.12) (tstamp 93f390b1-179e-41ea-a2df-5b8637770306))
(fp_arc (start -1.427202 -4.258256) (mid -0.859449 -5.241634) (end 0.207579 -5.63) (layer "B.SilkS") (width 0.12) (tstamp 9f5cce32-5d9f-48c6-a233-97928a012cfb))
(fp_arc (start -0.691689 2.79) (mid -1.963323 2.197027) (end -2.32647 0.841744) (layer "B.SilkS") (width 0.12) (tstamp d2c8f029-8f7f-4a32-89d2-8fe52720d441))
(fp_arc (start 10.872421 -5.63) (mid 11.939448 -5.241634) (end 12.507202 -4.258256) (layer "B.SilkS") (width 0.12) (tstamp d65b5eaf-2dbd-4abc-a890-5bdae6d6c4b9))
(fp_line (start 21.5 5.35) (end -10.4 5.35) (layer "B.CrtYd") (width 0.05) (tstamp 1a278595-4892-46e1-be48-eeac799756ab))
(fp_line (start 21.5 -8.2) (end 21.5 5.35) (layer "B.CrtYd") (width 0.05) (tstamp 811f43ad-5404-4e92-8ba0-64a07c7c0a39))
(fp_line (start -10.4 5.35) (end -10.4 -8.2) (layer "B.CrtYd") (width 0.05) (tstamp b2524b5b-5097-4ab6-bea0-dd1edebbcac7))
(fp_line (start -10.4 -8.2) (end 21.5 -8.2) (layer "B.CrtYd") (width 0.05) (tstamp f101ab40-9b56-400b-b1d5-4da93669ffb2))
(fp_line (start 13.358887 0.852163) (end 12.459619 -4.247837) (layer "B.Fab") (width 0.1) (tstamp 710ca9da-6501-4194-8faf-9a3ef4da842c))
(fp_line (start -9.885 -6.67) (end -9.885 3.83) (layer "B.Fab") (width 0.1) (tstamp 7699c5c5-981f-4fae-b105-7b185dda7955))
(fp_line (start 20.965 3.83) (end 20.965 -6.67) (layer "B.Fab") (width 0.1) (tstamp 7a912e41-5d82-4597-99aa-5c38c6aa78ce))
(fp_line (start -8.885 4.83) (end 19.965 4.83) (layer "B.Fab") (width 0.1) (tstamp 910b2eda-f28c-4404-8841-8019006a3d11))
(fp_line (start -0.703194 2.73) (end 11.783194 2.73) (layer "B.Fab") (width 0.1) (tstamp acf4bff0-50c6-44ec-bb50-def7a61626b2))
(fp_line (start 19.965 -7.67) (end -8.885 -7.67) (layer "B.Fab") (width 0.1) (tstamp d59513b9-0807-4d78-bc72-0e11e830d0c5))
(fp_line (start -2.278887 0.852163) (end -1.379619 -4.247837) (layer "B.Fab") (width 0.1) (tstamp f772f95a-6a4b-4ad0-b5cc-77b33f707f5b))
(fp_line (start 0.196073 -5.57) (end 10.883927 -5.57) (layer "B.Fab") (width 0.1) (tstamp fc19e2a5-4075-425c-b85f-e4572e888285))
(fp_arc (start 13.358886 0.852163) (mid 13.008865 2.15846) (end 11.783194 2.73) (layer "B.Fab") (width 0.1) (tstamp 18680207-d1c0-47c6-a50f-53164a0c3f80))
(fp_arc (start 19.965 -7.67) (mid 20.672107 -7.377107) (end 20.965 -6.67) (layer "B.Fab") (width 0.1) (tstamp 1907f218-4a8c-4232-ae3d-239d78f4565b))
(fp_arc (start 20.965 3.83) (mid 20.672107 4.537107) (end 19.965 4.83) (layer "B.Fab") (width 0.1) (tstamp 1a24b8d8-c034-4c03-928c-ba031ad10fe8))
(fp_arc (start -8.885 4.83) (mid -9.592107 4.537107) (end -9.885 3.83) (layer "B.Fab") (width 0.1) (tstamp 71df6def-34e5-407c-92c2-27ce8260fc82))
(fp_arc (start -1.379619 -4.247837) (mid -0.832387 -5.195671) (end 0.196073 -5.57) (layer "B.Fab") (width 0.1) (tstamp 79ca205f-b0c2-49bd-83be-ffd0dff68b8d))
(fp_arc (start 10.883927 -5.57) (mid 11.912387 -5.195671) (end 12.459619 -4.247837) (layer "B.Fab") (width 0.1) (tstamp 9676c15c-cfad-4783-bb1a-9049c7e0d192))
(fp_arc (start -0.703194 2.73) (mid -1.928865 2.15846) (end -2.278886 0.852163) (layer "B.Fab") (width 0.1) (tstamp d3c5cd23-4386-49d3-bac7-932c9314023e))
(fp_arc (start -9.885 -6.67) (mid -9.592107 -7.377107) (end -8.885 -7.67) (layer "B.Fab") (width 0.1) (tstamp e7d0808c-1ff0-4484-b975-44082750fbcc))
(pad "1" thru_hole roundrect locked (at 0 0 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask) (roundrect_rratio 0.1)
(net 39 "unconnected-(J2-Pad1)") (pinfunction "1") (pintype "passive+no_connect") (tstamp b7fa0009-e082-4121-b909-187d58f1a79b))
(pad "2" thru_hole circle locked (at 2.77 0 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 18 "/TX_232") (pinfunction "2") (pintype "passive") (tstamp a8a02c93-1c23-451d-b81a-a5604826098d))
(pad "3" thru_hole circle locked (at 5.54 0 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 17 "/RX_232") (pinfunction "3") (pintype "passive") (tstamp 807f4df1-548b-4c90-a301-442a862ee580))
(pad "4" thru_hole circle locked (at 8.31 0 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 16 "/RTS_232") (pinfunction "4") (pintype "passive") (tstamp 4be57f36-0ef5-40ee-8943-1fb03c3d2c0c))
(pad "5" thru_hole circle locked (at 11.08 0 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 15 "/CTS_232") (pinfunction "5") (pintype "passive") (tstamp 067cda43-ab99-4d8f-8b5f-00b30d0acab6))
(pad "6" thru_hole circle locked (at 1.385 -2.84 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 40 "unconnected-(J2-Pad6)") (pinfunction "6") (pintype "passive+no_connect") (tstamp 2b11b710-1b92-47e8-b887-b227ef291e20))
(pad "7" thru_hole circle locked (at 4.155 -2.84 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "7") (pintype "passive") (tstamp 1c045c7e-5226-4fd8-b240-7a7b6a3e60ee))
(pad "8" thru_hole circle locked (at 6.925 -2.84 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 41 "/DSR_DCD_232") (pinfunction "8") (pintype "passive") (tstamp c38c515f-dc31-4214-8c28-3726c2829482))
(pad "9" thru_hole circle locked (at 9.695 -2.84 180) (size 1.27 1.27) (drill 0.8382) (layers *.Cu *.Mask)
(net 14 "/DTR_232") (pinfunction "9") (pintype "passive") (tstamp 9038f4ba-2167-4a5d-82d6-e5d3951a138f))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/A_DS_9_PP_Z_cut.step"
(offset (xyz 5.54 -1.42 6.3))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_LOCAL:PinHeader_1x02_P2.54mm_Horizontal" (layer "B.Cu")
(tedit 6157B0B5) (tstamp bb677dbb-c2ed-4ba7-bf47-4398ba8670be)
(at 127.508 91.694)
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "File: MounT_Z88_Feather.kicad_sch")
(property "Sheetname" "")
(path "/a65dcf10-9aaa-4a83-b317-eb27765a4a7f")
(attr through_hole)
(fp_text reference "JP1" (at 4.385 2.27 180) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2e0b79cc-5da2-4168-98b6-8c76c58f61e8)
)
(fp_text value "Jumper_2_Bridged" (at 4.385 -4.81 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 540b24e3-634b-4ce4-98ea-da5ce5213d78)
)
(fp_text user "${REFERENCE}" (at 2.77 -1.27 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9dd77539-70e5-49c8-ad11-fc9ed584ad02)
)
(fp_line (start 4.1 -2.16) (end 10.1 -2.16) (layer "B.SilkS") (width 0.12) (tstamp 194b3f53-a2af-4f30-a10c-f58f5b8320dc))
(fp_line (start 0.9 0.38) (end 1.44 0.38) (layer "B.SilkS") (width 0.12) (tstamp 417fe367-3223-47f4-aa9a-53a0a58f83a1))
(fp_line (start 0.9 -0.38) (end 1.44 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 58727128-b9dc-43d8-bf2a-9d0ea208d62a))
(fp_line (start 10.1 -2.16) (end 10.1 -2.92) (layer "B.SilkS") (width 0.12) (tstamp 6189a8ea-6465-4905-b3bc-f09aec2c70dd))
(fp_line (start 1.44 1.33) (end 1.44 -3.87) (layer "B.SilkS") (width 0.12) (tstamp 7daaafae-d372-41c5-93bb-8a743fcacf59))
(fp_line (start 10.1 -0.38) (end 4.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 7e7e6169-0ee1-43aa-94b3-2423443f49ac))
(fp_line (start 4.1 0.38) (end 10.1 0.38) (layer "B.SilkS") (width 0.12) (tstamp 832fef33-ef50-4c1b-ac02-4930a7c618ae))
(fp_line (start 4.1 -3.87) (end 4.1 1.33) (layer "B.SilkS") (width 0.12) (tstamp 9469ee00-52ef-4ae5-908b-1349b0bb6311))
(fp_line (start 1.44 -3.87) (end 4.1 -3.87) (layer "B.SilkS") (width 0.12) (tstamp 9a7f2f72-d836-4c84-ad31-f1672e3a3f3a))
(fp_line (start 0.9 -2.92) (end 1.44 -2.92) (layer "B.SilkS") (width 0.12) (tstamp a51cd535-20d4-40a6-9266-11e8a0030ca7))
(fp_line (start 1.44 -1.27) (end 4.1 -1.27) (layer "B.SilkS") (width 0.12) (tstamp c5de0072-658f-4ef6-b5d1-8946f8320151))
(fp_line (start 0.9 -2.16) (end 1.44 -2.16) (layer "B.SilkS") (width 0.12) (tstamp ca11160a-0e00-4c1f-be87-78059153f454))
(fp_line (start 10.1 -2.92) (end 4.1 -2.92) (layer "B.SilkS") (width 0.12) (tstamp cfd635bb-d17c-4861-8b51-ea9e96a4e9bc))
(fp_line (start 10.1 0.38) (end 10.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp ee660f28-560a-4f80-949e-ecd2a36fe05f))
(fp_line (start 4.1 1.33) (end 1.44 1.33) (layer "B.SilkS") (width 0.12) (tstamp f45468bf-8b5f-4248-95ec-e50041c36439))
(fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer "B.CrtYd") (width 0.05) (tstamp 3c6a928e-1446-4f7f-aeac-7cbb31280c4b))
(fp_line (start 10.55 -4.35) (end 10.55 1.8) (layer "B.CrtYd") (width 0.05) (tstamp b881bb6e-4cc5-4e1d-b45a-3775c60bcefc))
(fp_line (start 10.55 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp f2202cc2-5b26-4943-b16c-756a9c234295))
(fp_line (start -1.8 -4.35) (end 10.55 -4.35) (layer "B.CrtYd") (width 0.05) (tstamp fd61fa8d-8bee-4974-88b0-e345c8f3cb90))
(fp_line (start -0.32 -2.22) (end 1.5 -2.22) (layer "B.Fab") (width 0.1) (tstamp 057cacb5-98bf-460d-b690-51cb793ee71d))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 0e0eb015-aecb-4d88-981e-d1f09f2711d7))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "B.Fab") (width 0.1) (tstamp 17fcf512-71c5-4d26-9113-93dd2ede1ac3))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "B.Fab") (width 0.1) (tstamp 2ac4d7be-bef5-4776-ac97-606e33b349f0))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "B.Fab") (width 0.1) (tstamp 3197c88a-7143-4c46-aa2f-73e75125397b))
(fp_line (start -0.32 0.32) (end -0.32 -0.32) (layer "B.Fab") (width 0.1) (tstamp 4a29f8fb-f1dc-47b2-872a-e42c31a52cb6))
(fp_line (start 10.04 -2.22) (end 10.04 -2.86) (layer "B.Fab") (width 0.1) (tstamp 6c2ab79c-b45a-43e0-97eb-1adae148549a))
(fp_line (start 4.04 -2.22) (end 10.04 -2.22) (layer "B.Fab") (width 0.1) (tstamp 720e1df9-be2f-466d-9dfb-fcddf504baae))
(fp_line (start 4.04 1.27) (end 4.04 -3.81) (layer "B.Fab") (width 0.1) (tstamp 7c234638-e9a4-4dfc-9a90-7e1d5af7221a))
(fp_line (start 10.04 0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 8823a506-4892-4b47-9d8c-f18c2d944d1c))
(fp_line (start 4.04 -2.86) (end 10.04 -2.86) (layer "B.Fab") (width 0.1) (tstamp 8cbdcfd4-871d-4fe7-ae8e-e3eaf8a557a1))
(fp_line (start 4.04 -3.81) (end 1.5 -3.81) (layer "B.Fab") (width 0.1) (tstamp 954b8582-82d8-498d-a3e5-2a10e49a2ee2))
(fp_line (start 1.5 0.635) (end 2.135 1.27) (layer "B.Fab") (width 0.1) (tstamp 9e848865-72d2-40da-9a13-bd9ddd39e7cf))
(fp_line (start -0.32 -2.86) (end 1.5 -2.86) (layer "B.Fab") (width 0.1) (tstamp d2d0ed5f-58bb-4210-8441-de776ca31b4e))
(fp_line (start -0.32 -2.22) (end -0.32 -2.86) (layer "B.Fab") (width 0.1) (tstamp e71cf224-2107-4f47-af19-3d84c1e4baf1))
(fp_line (start 1.5 -3.81) (end 1.5 0.635) (layer "B.Fab") (width 0.1) (tstamp ef598342-a5f6-4212-b896-16cff0fe59eb))
(fp_line (start 2.135 1.27) (end 4.04 1.27) (layer "B.Fab") (width 0.1) (tstamp f7dfaa03-6b82-49f3-a548-96eb774adbb5))
(pad "1" thru_hole circle (at 0 0) (size 1.651 1.651) (drill 0.9144) (layers *.Cu *.Mask)
(net 15 "/CTS_232") (pinfunction "A") (pintype "passive") (tstamp ed3b1910-0808-4c9b-881f-bca6dcb55a5f))
(pad "2" thru_hole circle (at 0 -2.54) (size 1.651 1.651) (drill 0.9144) (layers *.Cu *.Mask)
(net 16 "/RTS_232") (pinfunction "B") (pintype "passive") (tstamp ce33766c-6634-42e9-98bb-b2f5966a2843))
(model "${KIPRJMOD}/0_LOCAL.3dshapes/PinHeader_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/0_LOCAL.3dshapes/Jumper.stp"
(offset (xyz 4.1 -3.77 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 90))
)
)
(gr_line (start 124.46 87.63) (end 170.18 105.41) (layer "Dwgs.User") (width 0.127) (tstamp cbe1eea3-eeef-4c71-bfbc-86c9090cc8e9))
(gr_line (start 170.18 87.63) (end 124.46 105.41) (layer "Dwgs.User") (width 0.127) (tstamp d05e0453-d622-4ad7-a792-b6e8716f4978))
(gr_line (start 124.46 107.95) (end 170.18 107.95) (layer "Edge.Cuts") (width 0.0254) (tstamp 00000000-0000-0000-0000-00005f3aa7f5))
(gr_line (start 172.72 105.41) (end 172.72 87.63) (layer "Edge.Cuts") (width 0.0254) (tstamp 00000000-0000-0000-0000-00005f3aa7f6))
(gr_line (start 170.18 85.09) (end 124.46 85.09) (layer "Edge.Cuts") (width 0.0254) (tstamp 00000000-0000-0000-0000-00005f3aa7f7))
(gr_line (start 121.92 87.63) (end 121.92 105.41) (layer "Edge.Cuts") (width 0.0254) (tstamp 00000000-0000-0000-0000-00005f3aa7f8))
(gr_arc (start 170.18 85.09) (mid 171.976051 85.833949) (end 172.72 87.63) (layer "Edge.Cuts") (width 0.0254) (tstamp 16c5dce6-4f19-4f6d-a48e-adad2b805654))
(gr_arc (start 172.72 105.41) (mid 171.976051 107.206051) (end 170.18 107.95) (layer "Edge.Cuts") (width 0.0254) (tstamp 40c24351-17ba-4276-9dc4-8f8a02badc55))
(gr_arc (start 121.92 87.63) (mid 122.663949 85.833949) (end 124.46 85.09) (layer "Edge.Cuts") (width 0.0254) (tstamp 71ff1c61-e86a-47f2-9215-383b6dcb46cb))
(gr_arc (start 124.46 107.95) (mid 122.663949 107.206051) (end 121.92 105.41) (layer "Edge.Cuts") (width 0.0254) (tstamp f872c2c1-71b2-46f9-a6d6-ef7203420dbd))
(gr_text "ON" (at 171.831 94.615 90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f3bf094)
(effects (font (size 1.2192 1.2192) (thickness 0.2032)) (justify right mirror))
)
(gr_text "Feather MounT Z88" (at 153.67 88.9) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f3c901d)
(effects (font (size 1.5 1.5) (thickness 0.2032)) (justify mirror))
)
(gr_text "CTS" (at 125.095 91.694) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f3d3d61)
(effects (font (size 1.016 1.016) (thickness 0.1524)) (justify mirror))
)
(gr_text "OFF" (at 171.831 98.425 90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f4885e1)
(effects (font (size 1.2192 1.2192) (thickness 0.2032)) (justify left mirror))
)
(gr_text "DE9M this side" (at 147.32 96.012) (layer "B.SilkS") (tstamp 2a830bf8-0c03-4e5f-a083-d4a45f6ee7d1)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text "${TITLE} ${REVISION}\n${COMMENT2}" (at 153.67 92.075) (layer "B.SilkS") (tstamp c1c5b5d3-9df9-4e15-b59f-3aabfe5068c9)
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
)
(gr_text "RTS" (at 125.095 89.789) (layer "B.SilkS") (tstamp cd01d502-2792-4197-b818-773c24cb6211)
(effects (font (size 1.016 1.016) (thickness 0.1524)) (justify mirror))
)
(gr_text "ON" (at 171.831 92.329 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f49294d)
(effects (font (size 1.2192 1.2192) (thickness 0.2032)) (justify left))
)
(gr_text "C1-C5 0.1uf" (at 155.575 93.345 -90) (layer "F.SilkS") (tstamp 179b765d-1a47-4120-82ab-59f290807dd8)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "3V3" (at 163.83 87.63 270) (layer "F.SilkS") (tstamp 27ef68d5-554f-426e-bb4b-4dd683c67e77)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "CTS" (at 141.732 98.6282 270) (layer "F.SilkS") (tstamp 3517eef9-b570-4aee-ad8d-013611df2098)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "GND" (at 148.6662 99.7966 270) (layer "F.SilkS") (tstamp 35a01036-d182-4503-937d-d665b908077e)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "DTR_TTL" (at 133.35 105.41 270) (layer "F.SilkS") (tstamp 63afa1ba-0074-44d6-add4-3cf9319ca4ae)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "TX" (at 150.0378 98.6282 270) (layer "F.SilkS") (tstamp 71de1244-fca9-4d45-ad3b-aae97fff67b3)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "DTR" (at 143.129 99.7966 270) (layer "F.SilkS") (tstamp 815aa34e-e9eb-443d-b14b-281079845f08)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "DSR_TTL" (at 135.89 105.41 270) (layer "F.SilkS") (tstamp 8aa4cc58-e0e9-4578-86b3-e0b5dcd2fe7b)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "OFF" (at 171.831 100.584 90) (layer "F.SilkS") (tstamp 8f6504d4-abf3-481d-a3be-75b63bdf82f7)
(effects (font (size 1.2192 1.2192) (thickness 0.2032)) (justify right))
)
(gr_text "Adafruit Feather\nthis side" (at 132.715 96.52) (layer "F.SilkS") (tstamp 904f1922-e1a3-41c4-94d2-2afa5a489b6c)
(effects (font (size 1 1) (thickness 0.1)))
)
(gr_text "DCD" (at 145.8976 99.7966 270) (layer "F.SilkS") (tstamp 941d101b-a252-4b9a-9b63-7ae6311ff629)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify right))
)
(gr_text "flush-cut & reflow DE9 pins to protect lipo cell" (at 137.16 102.235) (layer "F.SilkS") (tstamp 95c1b1a6-ecf2-4d48-9793-71fa86354b13)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "solder/sockets optional, DIP rows friction fit" (at 137.16 104.775) (layer "F.SilkS") (tstamp a4495dfb-027e-4b02-b41f-b3182bcf15fc)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "GND" (at 128.905 87.63 270) (layer "F.SilkS") (tstamp acfe2dc9-12d3-43c2-845b-53f452ac34c8)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "RX" (at 147.2692 98.6282 270) (layer "F.SilkS") (tstamp b6b886e9-1b59-4d4b-991d-d547e03e2999)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "RX_TTL" (at 133.35 87.63 270) (layer "F.SilkS") (tstamp caa96b53-9631-480e-867f-aa72a495c164)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "TX_TTL" (at 130.81 87.63 270) (layer "F.SilkS") (tstamp dbcc5d7b-c2ad-4d17-bbaa-fbabe554a1d3)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "RTS" (at 144.5006 98.6282 270) (layer "F.SilkS") (tstamp e387cf96-d069-4a21-9d4f-8d6d0b479b5d)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(gr_text "GND" (at 158.75 87.63 270) (layer "F.SilkS") (tstamp f6724dff-af67-4b55-9fc2-05272cb5e640)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left))
)
(segment (start 151.765 90.518) (end 151.83 90.453) (width 0.4) (layer "F.Cu") (net 2) (tstamp 322e88cb-b418-4d65-85bd-de6d3ab5050b))
(segment (start 151.83 90.453) (end 151.83 88.819) (width 0.4) (layer "F.Cu") (net 2) (tstamp 88478f5b-2da9-41a4-a194-93c01420c671))
(segment (start 151.83 88.819) (end 152.13 88.519) (width 0.4) (layer "F.Cu") (net 2) (tstamp e95c0dcc-50c2-496e-8909-45e5feeb4a3c))
(segment (start 149.83 88.819) (end 150.13 88.519) (width 0.4) (layer "F.Cu") (net 3) (tstamp 34494726-7c69-43f2-a524-168febb7437b))
(segment (start 149.225 90.518) (end 149.32 90.423) (width 0.4) (layer "F.Cu") (net 3) (tstamp 60c183d1-db9f-46ad-b115-dd8254e44353))
(segment (start 149.83 89.15) (end 149.83 88.819) (width 0.4) (layer "F.Cu") (net 3) (tstamp bfcdc88c-61f5-480c-866c-05c9a9d33041))
(segment (start 149.32 90.423) (end 149.32 89.66) (width 0.4) (layer "F.Cu") (net 3) (tstamp c29c341c-e06a-487d-a39c-6926cdbad1e6))
(segment (start 149.32 89.66) (end 149.83 89.15) (width 0.4) (layer "F.Cu") (net 3) (tstamp cd3b0720-a674-4bce-9b2b-19e960f9e885))
(segment (start 148.02 88.819) (end 148.32 88.519) (width 0.4) (layer "F.Cu") (net 4) (tstamp 3e4cf420-51fe-4116-8833-bd9f5233667d))
(segment (start 148.02 90.453) (end 148.02 88.819) (width 0.4) (layer "F.Cu") (net 4) (tstamp 9cc01c0c-17f9-42f0-9873-587d86e9cbf9))
(segment (start 147.955 90.518) (end 148.02 90.453) (width 0.4) (layer "F.Cu") (net 4) (tstamp ceb9ea0f-feae-448f-9c87-34017338ac67))
(segment (start 146.685 90.518) (end 146.62 90.453) (width 0.4) (layer "F.Cu") (net 5) (tstamp 18ebd502-81cf-4f97-a5da-f03b2d3fac91))
(segment (start 146.62 88.819) (end 146.32 88.519) (width 0.4) (layer "F.Cu") (net 5) (tstamp 2f6d67be-3a56-4252-922b-6a36b606859c))
(segment (start 146.62 90.453) (end 146.62 88.819) (width 0.4) (layer "F.Cu") (net 5) (tstamp e71e8164-8797-4592-8266-df5bcb18b4ce))
(segment (start 150.495 91.567) (end 150.495 90.518) (width 0.4) (layer "F.Cu") (net 6) (tstamp 14d44c05-b063-46f1-84df-f12f461e1b57))
(segment (start 151.114 92.186) (end 150.495 91.567) (width 0.4) (layer "F.Cu") (net 6) (tstamp 779396d8-f00a-4f9d-a651-fc22351e1a38))
(segment (start 153.797 92.186) (end 151.114 92.186) (width 0.4) (layer "F.Cu") (net 6) (tstamp cad0ab9c-654f-45e9-b2d3-66f58e09fc36))
(segment (start 145.32 90.423) (end 145.32 89.67) (width 0.4) (layer "F.Cu") (net 7) (tstamp 088d2e43-bc68-4363-92d4-d4985c9d58b5))
(segment (start 145.32 89.67) (end 144.81 89.16) (width 0.4) (layer "F.Cu") (net 7) (tstamp 2a7ef850-5ea6-4b67-8c43-32aba15a4e66))
(segment (start 144.81 88.819) (end 144.51 88.519) (width 0.4) (layer "F.Cu") (net 7) (tstamp 6f6780da-88fd-493d-83b3-0d3f3f17af7a))
(segment (start 144.81 89.16) (end 144.81 88.819) (width 0.4) (layer "F.Cu") (net 7) (tstamp db949aa6-1e8a-4c86-a923-69e7544ecbd8))
(segment (start 145.415 90.518) (end 145.32 90.423) (width 0.4) (layer "F.Cu") (net 7) (tstamp e5fcb35d-edf0-41f5-9f37-a356c2249af0))
(segment (start 161.6562 98.77) (end 153.67 106.7562) (width 0.2) (layer "F.Cu") (net 8) (tstamp 146cacd8-4c51-4fe4-8d08-4e3c1aa125f3))
(segment (start 169.319 98.77) (end 161.6562 98.77) (width 0.2) (layer "F.Cu") (net 8) (tstamp 85e9a06e-2923-4939-b076-9a4126a181d4))
(segment (start 153.67 106.8324) (end 153.67 106.7816) (width 0.2) (layer "B.Cu") (net 8) (tstamp 515c3db0-aa60-408b-b607-e3a086def122))
(segment (start 163.83 86.4362) (end 154.4662 95.8) (width 0.6) (layer "F.Cu") (net 9) (tstamp 0d0f4ca3-9eb5-417b-bfd4-28ca411def8c))
(segment (start 153.797 95.996) (end 153.719 95.918) (width 0.6) (layer "F.Cu") (net 9) (tstamp 20ef8916-b9fd-460f-8785-cc8c4baf8d69))
(segment (start 153.719 95.918) (end 151.765 95.918) (width 0.6) (layer "F.Cu") (net 9) (tstamp 47e22e19-7963-4b8b-9d09-a2605b1e1a73))
(segment (start 153.993 95.8) (end 153.797 95.996) (width 0.6) (layer "F.Cu") (net 9) (tstamp 6738e034-06d4-4a9c-b5d1-25316128e385))
(segment (start 154.4662 95.8) (end 153.993 95.8) (width 0.6) (layer "F.Cu") (net 9) (tstamp 921597fd-744e-4ec1-9a95-ea62173bc829))
(segment (start 143.5862 94.5134) (end 144.145 95.0722) (width 0.2) (layer "F.Cu") (net 10) (tstamp 2205f9b9-c0f0-4a05-8c58-0d6834a87d94))
(segment (start 140.7414 94.5134) (end 143.5862 94.5134) (width 0.2) (layer "F.Cu") (net 10) (tstamp 518def30-9767-4b50-9d37-16d001fd454a))
(segment (start 144.145 95.0722) (end 144.145 95.918) (width 0.2) (layer "F.Cu") (net 10) (tstamp aabc9408-7f3f-44e3-8c1c-580e877ef848))
(segment (start 133.35 101.9048) (end 140.7414 94.5134) (width 0.2) (layer "F.Cu") (net 10) (tstamp dd9edefd-198b-475b-a152-a3cd60ddb9e8))
(segment (start 133.35 106.7562) (end 133.35 101.9048) (width 0.2) (layer "F.Cu") (net 10) (tstamp f1a6af75-8b7e-4353-b059-6d434dd267cf))
(segment (start 141.445 95.918) (end 142.875 95.918) (width 0.2) (layer "F.Cu") (net 11) (tstamp 7a4cd108-0b3b-4237-ac71-04dde573a0e2))
(segment (start 135.89 106.6038) (end 135.89 101.473) (width 0.2) (layer "F.Cu") (net 11) (tstamp 91b5ee62-dced-4eaa-bf21-ff842364c644))
(segment (start 135.89 101.473) (end 141.445 95.918) (width 0.2) (layer "F.Cu") (net 11) (tstamp 959ffb9c-b30f-4845-959c-aa1d5c9f3691))
(segment (start 145.415 94.996) (end 143.7386 93.3196) (width 0.2) (layer "F.Cu") (net 12) (tstamp 2db3693b-a641-4049-9488-3246f6bde204))
(segment (start 143.7386 93.3196) (end 137.8458 93.3196) (width 0.2) (layer "F.Cu") (net 12) (tstamp b1112231-654c-4fd8-8a54-a6340237a72f))
(segment (start 137.8458 93.3196) (end 130.81 86.2838) (width 0.2) (layer "F.Cu") (net 12) (tstamp b2d0a268-57da-450b-8af6-aa0f4bd89cc1))
(segment (start 145.415 95.918) (end 145.415 94.996) (width 0.2) (layer "F.Cu") (net 12) (tstamp b5623033-3108-4380-98dc-67070d91946b))
(segment (start 139.0396 92.1258) (end 133.35 86.4362) (width 0.2) (layer "F.Cu") (net 13) (tstamp 39c945a7-c780-42ff-bebc-d19f0b0f2ee2))
(segment (start 146.685 94.742) (end 144.0688 92.1258) (width 0.2) (layer "F.Cu") (net 13) (tstamp 4a48468e-5a63-4315-81e0-633e32ed1139))
(segment (start 144.0688 92.1258) (end 139.0396 92.1258) (width 0.2) (layer "F.Cu") (net 13) (tstamp cb823b15-57c3-4771-976f-af670f17602d))
(segment (start 146.685 95.918) (end 146.685 94.742) (width 0.2) (layer "F.Cu") (net 13) (tstamp d2d08697-f4f5-41d2-a52e-f980068dfdc8))
(segment (start 142.715 90.678) (end 142.875 90.518) (width 0.2) (layer "F.Cu") (net 14) (tstamp 43b96733-534a-412a-b1cc-90636222071c))
(segment (start 141.478 90.678) (end 142.715 90.678) (width 0.2) (layer "F.Cu") (net 14) (tstamp 979cb517-1a1c-418f-acfc-278ad1b66b3c))
(via (at 141.478 90.678) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 14) (tstamp 9b797ebd-9f30-4717-8472-d8005eb7dc0e))
(segment (start 141.478 91.313) (end 143.165 93) (width 0.2) (layer "B.Cu") (net 14) (tstamp 733f0733-c603-4f0b-baa2-96a3bd58ce88))
(segment (start 141.478 90.678) (end 141.478 91.313) (width 0.2) (layer "B.Cu") (net 14) (tstamp 8a841dac-4d82-486d-a486-ebfa25b45f7d))
(segment (start 143.165 93) (end 143.165 100.63) (width 0.2) (layer "B.Cu") (net 14) (tstamp d7f33023-fe14-4dc9-afa6-c8a075575be9))
(segment (start 135.684 91.694) (end 127.508 91.694) (width 0.2) (layer "B.Cu") (net 15) (tstamp 5a0cd75c-2544-4b77-95fb-f0bf8c8a1466))
(segment (start 141.78 97.79) (end 135.684 91.694) (width 0.2) (layer "B.Cu") (net 15) (tstamp d88c64b1-0b6b-4133-80a9-fb85c4b3f314))
(segment (start 144.55 92.607) (end 142.748 90.805) (width 0.2) (layer "B.Cu") (net 16) (tstamp 1214e80e-1b52-4122-93dd-5d64ddca5afd))
(segment (start 142.748 90.0176) (end 141.8844 89.154) (width 0.2) (layer "B.Cu") (net 16) (tstamp 7ce1dddb-0ac3-4c09-a702-cd70d0d8be7c))
(segment (start 141.8844 89.154) (end 127.508 89.154) (width 0.2) (layer "B.Cu") (net 16) (tstamp a1a66b0b-dade-4f68-9689-10bf2fd1d4ed))
(segment (start 144.55 97.79) (end 144.55 92.607) (width 0.2) (layer "B.Cu") (net 16) (tstamp ac71a8a8-d6ec-41e4-b85e-23793ea0ca8d))
(segment (start 142.748 90.805) (end 142.748 90.0176) (width 0.2) (layer "B.Cu") (net 16) (tstamp f5a0bac6-e5c2-471f-8f52-19ba1b4eda14))
(via (at 149.225 95.918) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 17) (tstamp 4468a620-777d-49fb-86d0-407ec869baf3))
(segment (start 147.353 97.79) (end 147.3426 97.79) (width 0.2) (layer "B.Cu") (net 17) (tstamp 9db6c30d-9476-440a-bc77-8bd644a34421))
(segment (start 149.225 95.918) (end 147.353 97.79) (width 0.2) (layer "B.Cu") (net 17) (tstamp fb026c12-b516-4152-afa0-eccb3a9ba477))
(segment (start 148.1328 96.0958) (end 147.955 95.918) (width 0.2) (layer "F.Cu") (net 18) (tstamp 2c4f515f-3d46-4840-85f1-4da1d851bb6c))
(segment (start 150.09 97.79) (end 149.21 97.79) (width 0.2) (layer "F.Cu") (net 18) (tstamp 76b956c3-455d-490b-ac5b-f5e5a38b089b))
(segment (start 148.1328 96.7128) (end 148.1328 96.0958) (width 0.2) (layer "F.Cu") (net 18) (tstamp c73312e0-2232-46d2-958f-bd76d57a96cb))
(segment (start 149.21 97.79) (end 148.1328 96.7128) (width 0.2) (layer "F.Cu") (net 18) (tstamp d6d47e62-9e54-4739-a941-b013ac39a341))
(via (at 144.145 90.518) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 41) (tstamp ed0e340e-f3e3-4d66-a802-1a22f5061003))
(segment (start 144.145 90.518) (end 145.935 92.308) (width 0.2) (layer "B.Cu") (net 41) (tstamp ee3f8423-eb24-4c53-b55d-ece16c41465e))
(segment (start 145.935 92.308) (end 145.935 100.63) (width 0.2) (layer "B.Cu") (net 41) (tstamp fd4472be-a1bf-46b6-8006-32af3bbbf7b3))
(zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 1cb8e8b3-b852-4ee9-aef1-3fb7423fc232) (hatch edge 0.508)
(connect_pads yes (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill yes (thermal_gap 0.2) (thermal_bridge_width 0.3) (smoothing fillet) (radius 0.1))
(polygon
(pts
(xy 121.92 85.09)
(xy 172.72 85.09)
(xy 172.72 107.95)
(xy 121.92 107.95)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 130.423146 85.309407)
(xy 130.45911 85.358907)
(xy 130.45911 85.420093)
(xy 130.423146 85.469593)
(xy 130.405222 85.479941)
(xy 130.362758 85.498847)
(xy 130.362756 85.498848)
(xy 130.358024 85.500955)
(xy 130.205138 85.612033)
(xy 130.078687 85.75247)
(xy 130.076095 85.75696)
(xy 130.076094 85.756961)
(xy 130.007852 85.875162)
(xy 129.984199 85.91613)
(xy 129.925802 86.095858)
(xy 129.906048 86.2838)
(xy 129.925802 86.471742)
(xy 129.927405 86.476675)
(xy 129.973584 86.618799)
(xy 129.984199 86.65147)
(xy 129.98679 86.655958)
(xy 129.986791 86.65596)
(xy 130.053324 86.771199)
(xy 130.078687 86.81513)
(xy 130.205138 86.955567)
(xy 130.358024 87.066645)
(xy 130.362756 87.068752)
(xy 130.362758 87.068753)
(xy 130.525925 87.1414)
(xy 130.525929 87.141401)
(xy 130.530663 87.143509)
(xy 130.715511 87.1828)
(xy 130.904489 87.1828)
(xy 131.089337 87.143509)
(xy 131.094071 87.141401)
(xy 131.094075 87.1414)
(xy 131.134705 87.12331)
(xy 131.195555 87.116914)
(xy 131.244976 87.143747)
(xy 137.59548 93.494251)
(xy 137.59818 93.49738)
(xy 137.600375 93.501869)
(xy 137.607078 93.508087)
(xy 137.636622 93.535493)
(xy 137.639298 93.538069)
(xy 137.653077 93.551848)
(xy 137.656787 93.554393)
(xy 137.6607 93.557829)
(xy 137.682446 93.578001)
(xy 137.690932 93.581387)
(xy 137.690934 93.581388)
(xy 137.693137 93.582267)
(xy 137.712448 93.592578)
(xy 137.714407 93.593922)
(xy 137.71441 93.593923)
(xy 137.721946 93.599093)
(xy 137.730838 93.601203)
(xy 137.73084 93.601204)
(xy 137.747866 93.605244)
(xy 137.761685 93.609614)
(xy 137.786422 93.619483)
(xy 137.792715 93.6201)
(xy 137.798885 93.6201)
(xy 137.821741 93.622775)
(xy 137.830866 93.62494)
(xy 137.859788 93.621004)
(xy 137.873137 93.6201)
(xy 143.573121 93.6201)
(xy 143.631312 93.639007)
(xy 143.643125 93.649096)
(xy 145.028144 95.034115)
(xy 145.055921 95.088632)
(xy 145.04635 95.149064)
(xy 145.028206 95.174059)
(xy 144.975707 95.22665)
(xy 144.924464 95.331482)
(xy 144.923355 95.339084)
(xy 144.923354 95.339087)
(xy 144.915024 95.396192)
(xy 144.9145 95.399782)
(xy 144.9145 96.436218)
(xy 144.915028 96.439801)
(xy 144.915028 96.439808)
(xy 144.918757 96.465136)
(xy 144.924642 96.505112)
(xy 144.976068 96.609855)
(xy 145.05865 96.692293)
(xy 145.163482 96.743536)
(xy 145.171084 96.744645)
(xy 145.171087 96.744646)
(xy 145.228237 96.752983)
(xy 145.228239 96.752983)
(xy 145.231782 96.7535)
(xy 145.598218 96.7535)
(xy 145.601801 96.752972)