-
Notifications
You must be signed in to change notification settings - Fork 2
/
teensy-toslink-receiver.kicad_pcb
1697 lines (1672 loc) · 137 KB
/
teensy-toslink-receiver.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 20171130) (host pcbnew 5.1.8)
(general
(thickness 1.6)
(drawings 10)
(tracks 90)
(zones 0)
(modules 17)
(nets 33)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.1524)
(zone_clearance 0.2)
(zone_45_only no)
(trace_min 0.1524)
(via_size 0.508)
(via_drill 0.254)
(via_min_size 0.508)
(via_min_drill 0.254)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFDFF7F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers"))
)
(net 0 "")
(net 1 GND)
(net 2 "Net-(C1-Pad1)")
(net 3 /ARC)
(net 4 /SPDIF_IN)
(net 5 /TOSLINK_RX)
(net 6 /DIO17)
(net 7 /DIO16)
(net 8 /DIO14)
(net 9 /DIO13)
(net 10 /DIO12)
(net 11 /DIO11)
(net 12 /DIO10)
(net 13 /DIO9)
(net 14 /DIO8)
(net 15 /VBat)
(net 16 +3V3)
(net 17 /Program)
(net 18 /OnOff)
(net 19 /CEC)
(net 20 /HPD)
(net 21 "Net-(J7-Pad1)")
(net 22 "Net-(J7-Pad3)")
(net 23 "Net-(J7-Pad4)")
(net 24 "Net-(J7-Pad6)")
(net 25 "Net-(J7-Pad7)")
(net 26 "Net-(J7-Pad9)")
(net 27 "Net-(J7-Pad10)")
(net 28 "Net-(J7-Pad12)")
(net 29 "Net-(J7-Pad15)")
(net 30 "Net-(J7-Pad16)")
(net 31 +5V)
(net 32 "Net-(Q2-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.25)
(via_dia 0.508)
(via_drill 0.254)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.1524)
(diff_pair_gap 0.25)
(add_net +3V3)
(add_net +5V)
(add_net /ARC)
(add_net /CEC)
(add_net /DIO10)
(add_net /DIO11)
(add_net /DIO12)
(add_net /DIO13)
(add_net /DIO14)
(add_net /DIO16)
(add_net /DIO17)
(add_net /DIO8)
(add_net /DIO9)
(add_net /HPD)
(add_net /OnOff)
(add_net /Program)
(add_net /SPDIF_IN)
(add_net /TOSLINK_RX)
(add_net /VBat)
(add_net GND)
(add_net "Net-(C1-Pad1)")
(add_net "Net-(J7-Pad1)")
(add_net "Net-(J7-Pad10)")
(add_net "Net-(J7-Pad12)")
(add_net "Net-(J7-Pad15)")
(add_net "Net-(J7-Pad16)")
(add_net "Net-(J7-Pad3)")
(add_net "Net-(J7-Pad4)")
(add_net "Net-(J7-Pad6)")
(add_net "Net-(J7-Pad7)")
(add_net "Net-(J7-Pad9)")
(add_net "Net-(Q2-Pad2)")
)
(module Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FB26D7D)
(at 157.48 66.04 270)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(path /5FB4732D)
(fp_text reference J2 (at 2.032 2.286 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at 0 12.49 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 5.08) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 5 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 /DIO17))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /DIO16))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 /SPDIF_IN))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /DIO14))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 /DIO13))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0201_0603Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FE7A5D1)
(at 140.716 75.438)
(descr "Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5FE9129A)
(attr smd)
(fp_text reference R3 (at 1.651 0.381) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 27k (at 0 1.05) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.3 0.15) (end -0.3 -0.15) (layer F.Fab) (width 0.1))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.3 -0.15) (end 0.3 0.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.3 0.15) (end -0.3 0.15) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 0.35) (end -0.7 -0.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 -0.35) (end 0.7 -0.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.7 -0.35) (end 0.7 0.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.7 0.35) (end -0.7 0.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -0.68) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 2 smd roundrect (at 0.32 0) (size 0.46 0.4) (layers F.Cu F.Mask) (roundrect_rratio 0.25)
(net 16 +3V3))
(pad 1 smd roundrect (at -0.32 0) (size 0.46 0.4) (layers F.Cu F.Mask) (roundrect_rratio 0.25)
(net 32 "Net-(Q2-Pad2)"))
(pad "" smd roundrect (at 0.345 0) (size 0.318 0.36) (layers F.Paste) (roundrect_rratio 0.25))
(pad "" smd roundrect (at -0.345 0) (size 0.318 0.36) (layers F.Paste) (roundrect_rratio 0.25))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0201_0603Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0201_0603Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FE7A5C0)
(at 140.716 74.676)
(descr "Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5FEDB090)
(attr smd)
(fp_text reference R2 (at 1.651 -0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 0 (at 0 1.05) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.3 0.15) (end -0.3 -0.15) (layer F.Fab) (width 0.1))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.3 -0.15) (end 0.3 0.15) (layer F.Fab) (width 0.1))
(fp_line (start 0.3 0.15) (end -0.3 0.15) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 0.35) (end -0.7 -0.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.7 -0.35) (end 0.7 -0.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.7 -0.35) (end 0.7 0.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.7 0.35) (end -0.7 0.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -0.68) (layer F.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)))
)
(pad 2 smd roundrect (at 0.32 0) (size 0.46 0.4) (layers F.Cu F.Mask) (roundrect_rratio 0.25)
(net 6 /DIO17))
(pad 1 smd roundrect (at -0.32 0) (size 0.46 0.4) (layers F.Cu F.Mask) (roundrect_rratio 0.25)
(net 32 "Net-(Q2-Pad2)"))
(pad "" smd roundrect (at 0.345 0) (size 0.318 0.36) (layers F.Paste) (roundrect_rratio 0.25))
(pad "" smd roundrect (at -0.345 0) (size 0.318 0.36) (layers F.Paste) (roundrect_rratio 0.25))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0201_0603Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0201_0603Metric (layer B.Cu) (tedit 5F68FEEE) (tstamp 5FE7A5AF)
(at 143.51 77.343)
(descr "Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5FEE5E38)
(attr smd)
(fp_text reference R1 (at -0.254 1.397 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 27k (at 0 -1.05) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.3 -0.15) (end -0.3 0.15) (layer B.Fab) (width 0.1))
(fp_line (start -0.3 0.15) (end 0.3 0.15) (layer B.Fab) (width 0.1))
(fp_line (start 0.3 0.15) (end 0.3 -0.15) (layer B.Fab) (width 0.1))
(fp_line (start 0.3 -0.15) (end -0.3 -0.15) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 -0.35) (end -0.7 0.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.7 0.35) (end 0.7 0.35) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.7 0.35) (end 0.7 -0.35) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.7 -0.35) (end -0.7 -0.35) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0.68) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 2 smd roundrect (at 0.32 0) (size 0.46 0.4) (layers B.Cu B.Mask) (roundrect_rratio 0.25)
(net 20 /HPD))
(pad 1 smd roundrect (at -0.32 0) (size 0.46 0.4) (layers B.Cu B.Mask) (roundrect_rratio 0.25)
(net 31 +5V))
(pad "" smd roundrect (at 0.345 0) (size 0.318 0.36) (layers B.Paste) (roundrect_rratio 0.25))
(pad "" smd roundrect (at -0.345 0) (size 0.318 0.36) (layers B.Paste) (roundrect_rratio 0.25))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0201_0603Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 5FE7C114)
(at 137.668 72.898 90)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /5FE6E5E3)
(attr smd)
(fp_text reference Q3 (at 0 2.794 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BSS138 (at 0 2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(pad 3 smd rect (at 1 0 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 13 /DIO9))
(pad 2 smd rect (at -1 0.95 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at -1 -0.95 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 31 +5V))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 5FE7C0C6)
(at 137.668 76.454 180)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /5FE83DFB)
(attr smd)
(fp_text reference Q2 (at 0 -2.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BSS138 (at 0 2.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(pad 3 smd rect (at 1 0 180) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 19 /CEC))
(pad 2 smd rect (at -1 0.95 180) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 32 "Net-(Q2-Pad2)"))
(pad 1 smd rect (at -1 -0.95 180) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 31 +5V))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 5FE7A574)
(at 141.224 77.978)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /5FECC04F)
(attr smd)
(fp_text reference Q1 (at 1.016 2.286) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BSS138 (at 0 2.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(pad 3 smd rect (at 1 0) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 20 /HPD))
(pad 2 smd rect (at -1 0.95) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at -1 -0.95) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
(net 14 /DIO8))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module teensy-toslink-receiver:Amphenol_ICC-10029449-001RLF-MFG locked (layer B.Cu) (tedit 5FC1C608) (tstamp 5FB27026)
(at 136.398 73.66 90)
(path /5FB1FA43)
(fp_text reference J7 (at 4.318 6.858 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
)
(fp_text value HDMI_A_1.4 (at 0 0 270) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror))
)
(fp_line (start -7.5 -4.65) (end -7.5 4.65) (layer B.Fab) (width 0.15))
(fp_line (start -7.5 4.65) (end 7.5 4.65) (layer B.Fab) (width 0.15))
(fp_line (start 7.5 4.65) (end 7.5 -4.65) (layer B.Fab) (width 0.15))
(fp_line (start 7.5 -4.65) (end -7.5 -4.65) (layer B.Fab) (width 0.15))
(fp_line (start 8.875 5.9) (end 8.875 5.9) (layer B.CrtYd) (width 0.15))
(fp_line (start 8.875 5.9) (end -8.874998 5.9) (layer B.CrtYd) (width 0.15))
(fp_line (start -8.874998 5.9) (end -8.874998 -4.675) (layer B.CrtYd) (width 0.15))
(fp_line (start -8.874998 -4.675) (end 8.875 -4.675) (layer B.CrtYd) (width 0.15))
(fp_line (start 8.875 -4.675) (end 8.875 5.9) (layer B.CrtYd) (width 0.15))
(fp_line (start -5.875 4.65) (end -4.775 4.65) (layer B.SilkS) (width 0.15))
(fp_line (start 5.275 4.65) (end 5.875 4.65) (layer B.SilkS) (width 0.15))
(fp_line (start 7.65 0.4) (end 7.65 2.55) (layer B.SilkS) (width 0.15))
(fp_line (start -7.65 0.4) (end -7.65 2.55) (layer B.SilkS) (width 0.15))
(fp_circle (center 4.75 6.45) (end 4.875 6.45) (layer B.SilkS) (width 0.25))
(fp_line (start -8.95 -3.575) (end 8.95 -3.575) (layer B.Fab) (width 0.15))
(pad M3 thru_hole circle (at -7.85 -0.975 90) (size 2 2) (drill oval 0.6 1.1) (layers *.Cu *.Mask)
(net 1 GND))
(pad M4 thru_hole circle (at 7.85 -0.975 90) (size 2 2) (drill oval 0.65 1.1) (layers *.Cu *.Mask)
(net 1 GND))
(pad M1 thru_hole circle (at -7.25 3.925 90) (size 2 2) (drill oval 0.65 1.1) (layers *.Cu *.Mask)
(net 1 GND))
(pad M2 thru_hole circle (at 7.25 3.925 90) (size 2 2) (drill oval 0.65 1.1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 smd rect (at 4.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 21 "Net-(J7-Pad1)"))
(pad 2 smd rect (at 4.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 3 smd rect (at 3.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 22 "Net-(J7-Pad3)"))
(pad 4 smd rect (at 3.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 23 "Net-(J7-Pad4)"))
(pad 5 smd rect (at 2.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 6 smd rect (at 2.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 24 "Net-(J7-Pad6)"))
(pad 7 smd rect (at 1.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 25 "Net-(J7-Pad7)"))
(pad 8 smd rect (at 1.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 9 smd rect (at 0.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 26 "Net-(J7-Pad9)"))
(pad 10 smd rect (at 0.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 27 "Net-(J7-Pad10)"))
(pad 11 smd rect (at -0.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 12 smd rect (at -0.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 28 "Net-(J7-Pad12)"))
(pad 13 smd rect (at -1.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 19 /CEC))
(pad 14 smd rect (at -1.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 3 /ARC))
(pad 15 smd rect (at -2.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 29 "Net-(J7-Pad15)"))
(pad 16 smd rect (at -2.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 30 "Net-(J7-Pad16)"))
(pad 17 smd rect (at -3.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 18 smd rect (at -3.75 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 31 +5V))
(pad 19 smd rect (at -4.25 4.925 90) (size 0.3 1.9) (layers B.Cu B.Paste B.Mask)
(net 20 /HPD))
(model eec.models/Amphenol_ICC_-_10029449-001RLF.step
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module teensy-toslink-receiver:Everlight_PLR135-T10 locked (layer B.Cu) (tedit 5FC1C4B2) (tstamp 5FB27118)
(at 151.892 73.66 90)
(descr "Fiberoptic Reciver, RX, Everlight")
(tags "Fiberoptic Reciver RX Toslink, Replaces TORX170 TORX173 TORX193 TORX194")
(path /5FB1F341)
(fp_text reference U1 (at 2.54 -3.302 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value PLR135-T10 (at 0 5.1 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.85 -2.39) (end -4.85 11.11) (layer B.SilkS) (width 0.12))
(fp_line (start 4.85 -2.39) (end 4.85 11.11) (layer B.SilkS) (width 0.12))
(fp_line (start 4.85 11.11) (end -4.85 11.11) (layer B.SilkS) (width 0.12))
(fp_line (start -4.85 -2.39) (end 4.85 -2.39) (layer B.SilkS) (width 0.12))
(fp_line (start -5 11.2) (end 5 11.2) (layer B.CrtYd) (width 0.05))
(fp_line (start -5 11.2) (end -5 -2.5) (layer B.CrtYd) (width 0.05))
(fp_line (start 5 -2.5) (end 5 11.2) (layer B.CrtYd) (width 0.05))
(fp_line (start 5 -2.5) (end -5 -2.5) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 2.159 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole rect (at 2.54 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at -2.54 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 5 /TOSLINK_RX))
(pad 4 thru_hole circle (at 2.62 2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask))
(pad 5 thru_hole circle (at -2.62 2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/OptoDevice.3dshapes/Toshiba_TORX170_TORX173_TORX193_TORX194.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Inductor_SMD:L_0805_2012Metric (layer F.Cu) (tedit 5F68FEF0) (tstamp 5FE6C304)
(at 147.574 72.39 90)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags inductor)
(path /5FB21D6C)
(attr smd)
(fp_text reference L1 (at 1.27 1.27 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47uH (at 0 1.55 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.45) (end -1 -0.45) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.45) (end 1 -0.45) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.45) (end 1 0.45) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.45) (end -1 0.45) (layer F.Fab) (width 0.1))
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) (layer F.SilkS) (width 0.12))
(fp_line (start -0.399622 0.56) (end 0.399622 0.56) (layer F.SilkS) (width 0.12))
(fp_line (start -1.75 0.85) (end -1.75 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -0.85) (end 1.75 0.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 0.85) (end -1.75 0.85) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1.0625 0 90) (size 0.875 1.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)"))
(pad 1 smd roundrect (at -1.0625 0 90) (size 0.875 1.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 16 +3V3))
(model ${KISYS3DMOD}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm (layer F.Cu) (tedit 5C745284) (tstamp 5FB260F6)
(at 148.194 75.438 180)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "solder jumper open")
(path /5FB24EA3)
(attr virtual)
(fp_text reference JP1 (at -2.174 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Jumper_NC_Small (at 0 1.9 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer F.SilkS) (width 0.12))
(fp_line (start 0.7 1) (end -0.7 1) (layer F.SilkS) (width 0.12))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer F.SilkS) (width 0.12))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05))
(fp_poly (pts (xy 0.25 -0.3) (xy -0.25 -0.3) (xy -0.25 0.3) (xy 0.25 0.3)) (layer F.Cu) (width 0))
(fp_arc (start -0.7 -0.3) (end -0.7 -1) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start -0.7 0.3) (end -1.4 0.3) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start 0.7 0.3) (end 0.7 1) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start 0.7 -0.3) (end 1.4 -0.3) (angle -90) (layer F.SilkS) (width 0.12))
(pad 1 smd custom (at -0.65 0 180) (size 1 0.5) (layers F.Cu F.Mask)
(net 2 "Net-(C1-Pad1)") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0))
(gr_poly (pts
(xy 0 -0.75) (xy 0.5 -0.75) (xy 0.5 0.75) (xy 0 0.75)) (width 0))
))
(pad 2 smd custom (at 0.65 0 180) (size 1 0.5) (layers F.Cu F.Mask)
(net 16 +3V3) (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0))
(gr_poly (pts
(xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75)) (width 0))
))
)
(module Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FE6B831)
(at 144.78 73.66)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /5FB20587)
(fp_text reference J6 (at 0 -2.286 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x04 (at 0 9.95) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 3.81 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 /HPD))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 /ARC))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 +3V3))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FE7C390)
(at 144.78 68.58 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path /5FB690E1)
(fp_text reference J5 (at 1.778 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 0 7.41 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 /CEC))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 +3V3))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FB2608A)
(at 157.48 68.58)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(path /5FB46955)
(fp_text reference J4 (at -2.032 1.016 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at 0 12.49) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 /VBat))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 +3V3))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 /Program))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 /OnOff))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FB26071)
(at 147.32 81.28 90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(path /5FB477D8)
(fp_text reference J3 (at 2.032 7.366 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at 0 12.49 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 5.08) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 5 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 /DIO12))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 /DIO11))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 /DIO10))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 /DIO9))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 /DIO8))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FC233F9)
(at 152.4 78.74 270)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path /5FB35B53)
(fp_text reference J1 (at -0.762 -2.286 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 0 7.41 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 /ARC))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 /SPDIF_IN))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 /TOSLINK_RX))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FB26028)
(at 150.114 72.136 270)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5FB213AD)
(attr smd)
(fp_text reference C1 (at 0.9525 1.27 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at 0 1.43 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer F.SilkS) (width 0.12))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 1 smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text v1.1.0 (at 137.668 68.326 90) (layer F.SilkS) (tstamp 5FE6DEFC)
(effects (font (size 1.2 1.2) (thickness 0.25)))
)
(gr_text "wut a mess" (at 135.128 73.66 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 159.004 81.534) (end 159.004 65.786) (layer Edge.Cuts) (width 0.05) (tstamp 5FB281CE))
(gr_arc (start 157.734 65.786) (end 157.734 64.516) (angle 90) (layer Edge.Cuts) (width 0.05) (tstamp 5FB281CF))
(gr_arc (start 157.734 81.534) (end 157.734 82.804) (angle -90) (layer Edge.Cuts) (width 0.05) (tstamp 5FB281CD))
(gr_arc (start 135.382 81.534) (end 135.382 82.804) (angle 90) (layer Edge.Cuts) (width 0.05) (tstamp 5FB2818C))
(gr_arc (start 135.382 65.786) (end 135.382 64.516) (angle -90) (layer Edge.Cuts) (width 0.05))
(gr_line (start 157.734 64.516) (end 135.382 64.516) (layer Edge.Cuts) (width 0.05) (tstamp 5FB27888))
(gr_line (start 134.112 81.534) (end 134.112 65.786) (layer Edge.Cuts) (width 0.05) (tstamp 5FB276B5))
(gr_line (start 157.734 82.804) (end 135.382 82.804) (layer Edge.Cuts) (width 0.05))
(segment (start 151.651 73.901) (end 151.892 73.66) (width 0.25) (layer F.Cu) (net 1))
(segment (start 150.114 73.165) (end 150.127 73.165) (width 0.25) (layer F.Cu) (net 1))
(via (at 138.684 72.898) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1) (tstamp 5FE7C0A1))
(segment (start 138.618 72.964) (end 138.684 72.898) (width 0.25) (layer F.Cu) (net 1) (tstamp 5FE7C146))
(segment (start 138.618 73.898) (end 138.618 72.964) (width 0.25) (layer F.Cu) (net 1) (tstamp 5FE7C0AD))
(segment (start 139.68 72.41) (end 141.323 72.41) (width 0.25) (layer B.Cu) (net 1))
(segment (start 138.684 72.898) (end 139.172 72.41) (width 0.25) (layer B.Cu) (net 1) (tstamp 5FE7C0A7))
(segment (start 149.8265 71.3275) (end 150.114 71.615) (width 0.25) (layer F.Cu) (net 2))
(segment (start 148.844 75.438) (end 148.844 72.136) (width 0.25) (layer F.Cu) (net 2))
(segment (start 150.0805 71.3275) (end 150.114 71.361) (width 0.25) (layer F.Cu) (net 2))
(segment (start 147.574 71.3275) (end 150.0805 71.3275) (width 0.25) (layer F.Cu) (net 2))
(segment (start 149.619 71.361) (end 148.844 72.136) (width 0.25) (layer F.Cu) (net 2))
(segment (start 150.114 71.361) (end 149.619 71.361) (width 0.25) (layer F.Cu) (net 2))
(segment (start 151.651 71.361) (end 151.892 71.12) (width 0.25) (layer F.Cu) (net 2))
(segment (start 150.114 71.361) (end 151.651 71.361) (width 0.25) (layer F.Cu) (net 2))
(segment (start 143.99 75.41) (end 144.78 76.2) (width 0.25) (layer B.Cu) (net 3))
(segment (start 141.323 75.41) (end 143.99 75.41) (width 0.25) (layer B.Cu) (net 3))
(segment (start 147.32 78.74) (end 144.78 76.2) (width 0.25) (layer B.Cu) (net 3))
(segment (start 152.4 66.04) (end 152.4 66.548) (width 0.25) (layer F.Cu) (net 4))
(segment (start 151.224999 67.215001) (end 152.4 66.04) (width 0.25) (layer B.Cu) (net 4))
(segment (start 151.224999 69.701999) (end 151.224999 67.215001) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.86 71.066998) (end 151.224999 69.701999) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.86 78.74) (end 149.86 71.066998) (width 0.25) (layer B.Cu) (net 4))
(segment (start 152.4 76.708) (end 151.892 76.2) (width 0.25) (layer B.Cu) (net 5))
(segment (start 152.4 78.74) (end 152.4 76.708) (width 0.25) (layer B.Cu) (net 5))
(segment (start 144.018 66.04) (end 147.32 66.04) (width 0.25) (layer F.Cu) (net 6))
(segment (start 141.036 69.022) (end 144.018 66.04) (width 0.25) (layer F.Cu) (net 6))
(segment (start 141.036 74.168) (end 141.036 69.022) (width 0.25) (layer F.Cu) (net 6))
(segment (start 141.036 74.168) (end 141.036 74.676) (width 0.25) (layer F.Cu) (net 6))
(segment (start 149.86 81.28) (end 148.732599 80.152599) (width 0.25) (layer F.Cu) (net 13))
(segment (start 148.732599 80.152599) (end 148.732599 78.484045) (width 0.25) (layer F.Cu) (net 13))
(segment (start 148.732599 78.484045) (end 145.321153 75.072599) (width 0.25) (layer F.Cu) (net 13))
(segment (start 145.321153 75.072599) (end 144.238846 75.072599) (width 0.25) (layer F.Cu) (net 13))
(segment (start 144.238846 75.072599) (end 143.082444 76.229001) (width 0.25) (layer F.Cu) (net 13))
(segment (start 137.957999 76.229001) (end 137.668 75.939002) (width 0.25) (layer F.Cu) (net 13))
(segment (start 137.668 75.939002) (end 137.668 71.898) (width 0.25) (layer F.Cu) (net 13))
(segment (start 143.082444 76.229001) (end 137.957999 76.229001) (width 0.25) (layer F.Cu) (net 13))
(segment (start 143.764 77.47) (end 143.322 77.028) (width 0.25) (layer F.Cu) (net 14))
(segment (start 145.542 77.47) (end 143.764 77.47) (width 0.25) (layer F.Cu) (net 14))
(segment (start 146.05 77.978) (end 145.542 77.47) (width 0.25) (layer F.Cu) (net 14))
(segment (start 146.05 80.01) (end 146.05 77.978) (width 0.25) (layer F.Cu) (net 14))
(segment (start 143.322 77.028) (end 140.224 77.028) (width 0.25) (layer F.Cu) (net 14))
(segment (start 147.32 81.28) (end 146.05 80.01) (width 0.25) (layer F.Cu) (net 14))
(segment (start 147.574 75.408) (end 147.544 75.438) (width 0.25) (layer F.Cu) (net 16))
(segment (start 147.574 73.4525) (end 147.574 75.408) (width 0.25) (layer F.Cu) (net 16))
(segment (start 147.544 76.185592) (end 147.544 75.438) (width 0.25) (layer F.Cu) (net 16))
(segment (start 147.871418 76.51301) (end 147.544 76.185592) (width 0.25) (layer F.Cu) (net 16))
(segment (start 149.182328 76.51301) (end 147.871418 76.51301) (width 0.25) (layer F.Cu) (net 16))
(segment (start 150.570339 75.124999) (end 149.182328 76.51301) (width 0.25) (layer F.Cu) (net 16))
(segment (start 156.404999 75.124999) (end 150.570339 75.124999) (width 0.25) (layer F.Cu) (net 16))
(segment (start 157.48 76.2) (end 156.404999 75.124999) (width 0.25) (layer F.Cu) (net 16))
(segment (start 146.05 69.85) (end 144.78 68.58) (width 0.25) (layer F.Cu) (net 16))
(segment (start 146.0965 73.4525) (end 146.05 73.406) (width 0.25) (layer F.Cu) (net 16))
(segment (start 146.05 73.406) (end 146.05 69.85) (width 0.25) (layer F.Cu) (net 16))
(segment (start 147.574 73.4525) (end 146.0965 73.4525) (width 0.25) (layer F.Cu) (net 16))
(segment (start 144.9875 73.4525) (end 144.78 73.66) (width 0.25) (layer F.Cu) (net 16))
(segment (start 146.0965 73.4525) (end 144.9875 73.4525) (width 0.25) (layer F.Cu) (net 16))
(segment (start 143.002 75.438) (end 144.78 73.66) (width 0.25) (layer F.Cu) (net 16))
(segment (start 141.036 75.438) (end 143.002 75.438) (width 0.25) (layer F.Cu) (net 16))
(segment (start 141.323 74.91) (end 146.03 74.91) (width 0.25) (layer B.Cu) (net 19))
(segment (start 147.32 73.62) (end 147.32 68.58) (width 0.25) (layer B.Cu) (net 19))
(segment (start 146.03 74.91) (end 147.32 73.62) (width 0.25) (layer B.Cu) (net 19))
(via (at 137.582509 76.849205) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19) (tstamp 5FE7C13D))
(segment (start 137.063205 76.849205) (end 136.668 76.454) (width 0.25) (layer F.Cu) (net 19) (tstamp 5FE7C0AA))
(segment (start 137.582509 76.849205) (end 137.063205 76.849205) (width 0.25) (layer F.Cu) (net 19) (tstamp 5FE7C149))
(segment (start 139.521714 74.91) (end 137.582509 76.849205) (width 0.25) (layer B.Cu) (net 19))
(segment (start 141.323 74.91) (end 139.521714 74.91) (width 0.25) (layer B.Cu) (net 19))
(segment (start 143.95 77.91) (end 144.78 78.74) (width 0.25) (layer B.Cu) (net 20))
(segment (start 141.323 77.91) (end 143.95 77.91) (width 0.25) (layer B.Cu) (net 20))
(segment (start 143.83 77.79) (end 143.95 77.91) (width 0.25) (layer B.Cu) (net 20))
(segment (start 143.83 77.343) (end 143.83 77.79) (width 0.25) (layer B.Cu) (net 20))
(segment (start 142.986 78.74) (end 142.224 77.978) (width 0.25) (layer F.Cu) (net 20))
(segment (start 144.78 78.74) (end 142.986 78.74) (width 0.25) (layer F.Cu) (net 20))
(segment (start 136.353205 77.574207) (end 138.497793 77.574207) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C0A4))
(segment (start 138.497793 77.574207) (end 138.668 77.404) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C140))
(segment (start 135.89 75.692) (end 135.89 77.111002) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C0F8))
(segment (start 136.718 74.864) (end 135.89 75.692) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C14F))
(segment (start 135.89 77.111002) (end 136.353205 77.574207) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C143))
(segment (start 136.718 73.898) (end 136.718 74.864) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C0B0))
(segment (start 143.123 77.41) (end 141.323 77.41) (width 0.25) (layer B.Cu) (net 31))
(segment (start 143.19 77.343) (end 143.123 77.41) (width 0.25) (layer B.Cu) (net 31))
(via (at 138.938 78.486) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 31) (tstamp 5FE7C14C))
(segment (start 138.938 77.674) (end 138.668 77.404) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C0F5))
(segment (start 138.938 78.486) (end 138.938 77.674) (width 0.25) (layer F.Cu) (net 31) (tstamp 5FE7C0EF))
(segment (start 138.938 78.087) (end 138.938 78.486) (width 0.25) (layer B.Cu) (net 31))
(segment (start 139.615 77.41) (end 138.938 78.087) (width 0.25) (layer B.Cu) (net 31))
(segment (start 141.323 77.41) (end 139.615 77.41) (width 0.25) (layer B.Cu) (net 31))
(segment (start 138.734 75.438) (end 138.668 75.504) (width 0.25) (layer F.Cu) (net 32))
(segment (start 140.396 75.438) (end 138.734 75.438) (width 0.25) (layer F.Cu) (net 32))