-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoy2usb.kicad_pcb
21667 lines (21639 loc) · 780 KB
/
joy2usb.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "joy2usb")
(rev "7.0")
(company "[email protected]")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "joy2usb_gerber/")
)
)
(net 0 "")
(net 1 "/UBTN")
(net 2 "/DBTN")
(net 3 "/LBTN")
(net 4 "/RBTN")
(net 5 "/F3BTN")
(net 6 "/FBTN")
(net 7 "VCC")
(net 8 "GND")
(net 9 "/F2BTN")
(net 10 "Net-(U1-Digital7{slash}PE6)")
(net 11 "/RST")
(net 12 "Net-(D1-K)")
(net 13 "/PF7")
(net 14 "/PF6")
(net 15 "/PF5")
(net 16 "/PF4")
(net 17 "/F2F3MODE")
(net 18 "unconnected-(U1-Digital8{slash}PB4-Pad11)")
(net 19 "unconnected-(U1-Digital16{slash}PB2-Pad14)")
(net 20 "unconnected-(U1-Digital14{slash}PB3-Pad15)")
(net 21 "unconnected-(U1-Digital15{slash}PB1-Pad16)")
(net 22 "unconnected-(U1-RAW-Pad24)")
(net 23 "Net-(D2-A)")
(net 24 "Net-(D3-A)")
(net 25 "unconnected-(U1-Digital5{slash}PC6-Pad8)")
(footprint "misc:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal_Oval" (layer "F.Cu")
(tstamp 10bd49f5-d02d-4e4a-b181-72f71ea21e3d)
(at 127 90.84 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/ab5672dd-0bb1-4774-8d3f-4be279780e10")
(attr through_hole)
(fp_text reference "R3" (at 5.08 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67b47ae0-cbca-46cb-97d8-b9eb08205c7e)
)
(fp_text value "R10KΩ" (at 5.08 2.37 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b6efdf8-81be-4086-b482-73393d4fe856)
)
(fp_text user "${REFERENCE}" (at 5.08 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0042ab69-c18d-469c-9abe-44e1b4cb06e4)
)
(fp_line (start 1.21 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f72a753-6370-40bf-94d0-45f749133693))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fc3f84f-d783-4f27-aaf2-47e0a48e8f87))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09e72fe2-68e6-4a02-8878-19340fda8d6b))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff250cd8-74b0-4fcd-b96f-0167bfcd5a1c))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d53dd85-ea9b-4113-b638-9919510650a0))
(fp_line (start 8.95 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75b29daa-8c46-4eea-af57-e11111be84aa))
(fp_line (start -1.4 -1.5) (end -1.4 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d83a1da3-2770-489b-aba0-6425700d4aa9))
(fp_line (start -1.4 -1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 1f5f1c36-b700-4e21-a3c8-0ef16cdc99df))
(fp_line (start -1.4 1.5) (end 11.56 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 6a91586e-c9f8-43df-9423-00c48ed26a05))
(fp_line (start 11.56 1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7184a18e-81ea-447e-b7de-43f3d0ba8599))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a076bd87-f8fb-4aa4-996f-a03f5d3d423f))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4445cba0-db08-460d-881f-9ca2c4d2401b))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2664dea-dd15-4f43-8724-c9d0e05da9ff))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3005d381-d117-4d9d-a492-8b3b5ad7e790))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba676e3b-5444-4520-9e0b-bdea07031ea5))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee886654-ede0-4b4a-a363-976c670dcdd8))
(pad "1" thru_hole oval (at 0 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 24 "Net-(D3-A)") (pintype "passive") (tstamp 2bedca9f-411c-433f-ae9d-3d715d8d3eaa))
(pad "2" thru_hole oval (at 10.16 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "Net-(U1-Digital7{slash}PE6)") (pintype "passive") (tstamp 0df7a298-88e7-44c8-a1c6-add156cd2b6e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal_Oval" (layer "F.Cu")
(tstamp 1739f764-408d-4dc4-bba0-3053544ff0ff)
(at 127 93.84 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/98ed0830-210e-4aa4-9a76-52f6885f5ab9")
(attr through_hole)
(fp_text reference "R2" (at 5.08 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48a8d0dc-55e4-406f-aee4-f6f61e416a73)
)
(fp_text value "RxΩ" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f0e9cfb-a818-4bb4-9f0f-0a1a1a8e1e99)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5c4b5f8-e73c-43cc-9d1f-e0eb9740476e)
)
(fp_line (start 1.21 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12746523-5072-4c49-afd4-05960b8221d1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 011064f8-9558-4254-8d15-592c2d4358e9))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba459443-5b2c-4320-b305-ff476330308a))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e233c69-3203-4480-8f06-4e3c24cb5964))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba60f882-2086-406e-a152-b49e796a4165))
(fp_line (start 8.95 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06c5fbdf-e32f-4fcf-8fd2-813dfaedf4c4))
(fp_line (start -1.4 -1.5) (end -1.4 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15690357-bb55-4c65-adb3-e902334fd933))
(fp_line (start -1.4 -1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 42157377-1956-4b9d-a4de-8450b5e7368b))
(fp_line (start -1.4 1.5) (end 11.56 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 03d20fd0-8ede-4881-ba1a-8c8d596b7c79))
(fp_line (start 11.56 1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ef62da6-d503-4f17-8067-8bcd3d8c2176))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43bba156-a173-4782-bdae-69e983d0b79b))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de55a551-4fc5-464a-ba61-fee828b6db80))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 985c7610-56ee-4ba4-88a8-44c6d4bc6d5e))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64d71d99-953b-4b81-b09a-044a4bb7c4bb))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5e67633-ab00-4c31-8af7-e8be5da73341))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0998264-940c-4ca3-a619-dcaa1fda578f))
(pad "1" thru_hole oval (at 0 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "VCC") (pintype "passive") (tstamp 6900fdc9-3731-486c-82d8-1be71eaf261b))
(pad "2" thru_hole oval (at 10.16 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "Net-(D2-A)") (pintype "passive") (tstamp 0fdb4c48-4f65-46b4-be54-1ef0f086ef20))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal_Oval" (layer "F.Cu")
(tstamp 3883b205-f965-4927-ad02-2910085c2315)
(at 127.08 96.84 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/44719f11-68da-48b2-aff5-6da4095a5086")
(attr through_hole)
(fp_text reference "R1" (at 5.08 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp def3c761-d9f0-4744-abf7-406961c57299)
)
(fp_text value "RxΩ" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97c2e615-df42-4ca4-bbfe-4b78732da2ed)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f189c73-1bc7-49bb-b651-10afc2f4e773)
)
(fp_line (start 1.21 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19c61aee-1110-4397-ab60-680e87ecc959))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87d15097-306b-489c-a141-dba2d43197a6))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77a48fcf-1143-41c0-8695-6988a407abaa))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed25e7d1-bbf8-4a4e-82fb-14192c3a7f42))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 724ab02a-35c9-49c1-bd6b-1d3c08ee7aab))
(fp_line (start 8.95 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bac08223-4fe0-4609-b7fa-79035174053b))
(fp_line (start -1.4 -1.5) (end -1.4 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5e7e29f-c54a-473e-a3df-0c9adb7b0bfc))
(fp_line (start -1.4 -1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp a4510b23-4900-49a4-b44c-d5d7fa4a9df4))
(fp_line (start -1.4 1.5) (end 11.56 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 45360fb1-4729-4e47-bc56-d9fbe85b6d30))
(fp_line (start 11.56 1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64a668c6-77ae-4907-ad38-6af258bd252a))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2950052a-29ab-4252-ba51-c5f553db333b))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9354d9ca-ed8e-4794-ba14-74ee69864bd7))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 447731ed-f7dd-4a44-a79f-6ea9c2bec605))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 263344ff-65de-4301-b7c4-a2b9c3123a09))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 544ab5ee-92a6-4a39-8dcd-63bd54c34c34))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63a2f719-b1b4-4fdc-b04e-60209458cb50))
(pad "1" thru_hole oval (at 0 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "GND") (pintype "passive") (tstamp 334e8a2e-79f6-4612-b74a-84374c889072))
(pad "2" thru_hole oval (at 10.16 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "Net-(D1-K)") (pintype "passive") (tstamp ee4d4509-f4e5-46f5-827a-ad4bdc897630))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" (layer "F.Cu")
(tstamp 4ad41247-4263-4bd6-8cdf-41fab8e753ba)
(at 163 135)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/5a148dfb-1433-449d-914f-166e76c4617b")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6de57499-a581-48bf-89cc-6fc55951b223)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e41666c-4058-4673-b6b4-859e6459fb93)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 450a2807-4e8b-4031-ad1c-efe8f6dae336)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 317f79e4-e8c0-4cd7-aa0b-249b82523843))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e7dd1895-00d8-4c65-b495-977ca257fe7d))
(pad "" np_thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp e1ba04b7-51c0-4525-ab81-6bab4f9568b5))
)
(footprint "misc:LED_D3.0mm_Oval" (layer "F.Cu")
(tstamp 4fbb8513-c42a-4ecf-a5f4-4b8ec9c6d8ee)
(at 120 116.5)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/7103a152-955d-46f2-b518-53e114332f41")
(attr through_hole)
(fp_text reference "D1" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c15282c-9327-4aca-bd6f-5e2b99448a29)
)
(fp_text value "AMIGA" (at 1.27 4.5) (layer "F.SilkS")
(effects (font (size 2 2) (thickness 0.4) bold))
(tstamp 74d0abb3-777e-4c56-ad98-2d7b423101d0)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92d150e5-9d48-4e22-8016-25dfaa816661))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63a63b39-75bb-4fd0-9ffe-09508dfd6385))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fb34776-025a-4fde-9206-41139d3cbcc2))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bff7e9b8-1ec8-4d17-84ea-1df6e9f2462b))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a96a1d0-cf7d-4e45-b814-019438776056))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ab0f064-4c53-4f69-bded-1578ae6eda5b))
(fp_line (start -1.75 -2.25) (end -1.75 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88843f3f-36a1-4e46-8a14-43e14806af0d))
(fp_line (start -1.75 2.25) (end 4.25 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27bfe7ee-c8c9-462f-a69a-73fb6f5aae84))
(fp_line (start 4.25 -2.25) (end -1.75 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52c2b483-1c96-4e5d-9246-0c6a40d03c4a))
(fp_line (start 4.25 2.25) (end 4.25 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d68d965e-236e-4dff-b11a-f475e0e0935b))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f0d63f9-81dd-4f5f-a829-1ff38a3755f4))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6f8421a-40bc-4a32-8d4b-c5361e8e7afd))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp f862ccf4-9d0e-4cd3-9b27-a852ab94ade5))
(pad "1" thru_hole rect (at 0 0 90) (size 1.8 2.3) (drill 0.9 (offset 0 -0.25)) (layers "*.Cu" "*.Mask")
(net 12 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp e8a24d1b-2dea-4af8-9e04-988da898f637))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.8 2.3) (drill 0.9 (offset 0 0.25)) (layers "*.Cu" "*.Mask")
(net 17 "/F2F3MODE") (pinfunction "A") (pintype "passive") (tstamp 34a468a2-dc93-4253-a1f0-6e4345d394f6))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:Joystick_LOGO_14x14mm" (layer "F.Cu")
(tstamp 68a2c541-eee3-483d-be8d-6df7541a66b2)
(at 140.5 99)
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "G***" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp e4f426d2-f5ea-4a66-9d0c-e70d179ecb2f)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp bff798ec-f8c1-4892-b8a3-21f35b5eef5e)
)
(fp_poly
(pts
(xy 0.595774 -6.912211)
(xy 0.984754 -6.712523)
(xy 1.313787 -6.42315)
(xy 1.563462 -6.056473)
(xy 1.71437 -5.624875)
(xy 1.751062 -5.262431)
(xy 1.685408 -4.772763)
(xy 1.493747 -4.337553)
(xy 1.184027 -3.969443)
(xy 0.7642 -3.681079)
(xy 0.753285 -3.675471)
(xy 0.419 -3.504912)
(xy 0.437539 -1.319446)
(xy 0.456077 0.866021)
(xy 0.865967 0.959089)
(xy 1.275357 1.08415)
(xy 1.557862 1.237953)
(xy 1.711868 1.410144)
(xy 1.735761 1.590366)
(xy 1.627931 1.768265)
(xy 1.386762 1.933483)
(xy 1.038602 2.067513)
(xy 0.693358 2.136045)
(xy 0.268165 2.170489)
(xy -0.187723 2.171456)
(xy -0.625053 2.139557)
(xy -0.99457 2.075402)
(xy -1.112383 2.040836)
(xy -1.459175 1.886312)
(xy -1.669942 1.715689)
(xy -1.746732 1.537953)
(xy -1.69159 1.362088)
(xy -1.506565 1.197081)
(xy -1.193702 1.051917)
(xy -0.865967 0.959089)
(xy -0.456077 0.866021)
(xy -0.437539 -1.319446)
(xy -0.419 -3.504912)
(xy -0.753284 -3.675471)
(xy -1.175557 -3.961848)
(xy -1.487904 -4.328261)
(xy -1.682377 -4.762067)
(xy -1.751026 -5.250621)
(xy -1.751062 -5.262431)
(xy -1.685534 -5.752546)
(xy -1.495228 -6.186881)
(xy -1.189553 -6.55071)
(xy -0.777922 -6.829309)
(xy -0.73674 -6.849349)
(xy -0.284384 -6.993006)
(xy 0.166258 -7.009832)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 9b73e62c-f3bd-4d16-b5ad-ebbf546f186d))
(fp_poly
(pts
(xy 4.18832 -0.485382)
(xy 4.828244 -0.207911)
(xy 5.397688 0.04446)
(xy 5.885965 0.266733)
(xy 6.282388 0.453907)
(xy 6.57627 0.600982)
(xy 6.756925 0.70296)
(xy 6.804961 0.738814)
(xy 6.868664 0.806362)
(xy 6.914838 0.877054)
(xy 6.946304 0.973184)
(xy 6.965882 1.117043)
(xy 6.976392 1.330926)
(xy 6.980654 1.637123)
(xy 6.981488 2.057928)
(xy 6.981492 2.134283)
(xy 6.980325 2.579495)
(xy 6.975324 2.906432)
(xy 6.964239 3.137144)
(xy 6.944821 3.29368)
(xy 6.914819 3.398087)
(xy 6.871985 3.472416)
(xy 6.84116 3.509557)
(xy 6.752005 3.571069)
(xy 6.549646 3.688032)
(xy 6.246722 3.853799)
(xy 5.855874 4.061723)
(xy 5.389742 4.305157)
(xy 4.860964 4.577454)
(xy 4.282182 4.871967)
(xy 3.666036 5.182048)
(xy 3.55818 5.235984)
(xy 2.847685 5.590687)
(xy 2.250961 5.887562)
(xy 1.756365 6.131747)
(xy 1.352255 6.328381)
(xy 1.026988 6.482599)
(xy 0.768922 6.599539)
(xy 0.566416 6.684339)
(xy 0.407826 6.742136)
(xy 0.28151 6.778067)
(xy 0.175825 6.79727)
(xy 0.07913 6.804881)
(xy 0 6.806077)
(xy -0.097911 6.80406)
(xy -0.19545 6.794583)
(xy -0.304258 6.772508)
(xy -0.435978 6.732699)
(xy -0.602253 6.670018)
(xy -0.814724 6.579328)
(xy -1.085034 6.455492)
(xy -1.424826 6.293371)
(xy -1.845741 6.087829)
(xy -2.359422 5.833729)
(xy -2.977511 5.525933)
(xy -3.55818 5.235984)
(xy -4.179435 4.923912)
(xy -4.765481 4.626275)
(xy -5.303677 4.349721)
(xy -5.781383 4.100896)
(xy -6.185959 3.886449)
(xy -6.504766 3.713025)
(xy -6.725163 3.587272)
(xy -6.834511 3.515836)
(xy -6.84116 3.509557)
(xy -6.892266 3.442487)
(xy -6.929263 3.357831)
(xy -6.954403 3.233542)
(xy -6.969934 3.047571)
(xy -6.978106 2.777869)
(xy -6.981169 2.402387)
(xy -6.981492 2.134283)
(xy -6.980935 1.693862)
(xy -6.977384 1.371478)
(xy -6.968019 1.144841)
(xy -6.95002 0.991657)
(xy -6.920567 0.889633)
(xy -6.87684 0.816478)
(xy -6.816019 0.749897)
(xy -6.804961 0.738814)
(xy -6.693172 0.664595)
(xy -6.462102 0.542446)
(xy -6.12244 0.377367)
(xy -5.684871 0.174359)
(xy -5.160083 -0.061581)
(xy -4.558763 -0.32545)
(xy -4.18832 -0.485382)
(xy -1.74821 -1.533047)
(xy -1.789226 -0.530935)
(xy -3.91174 0.378123)
(xy -4.420723 0.59735)
(xy -4.885904 0.800084)
(xy -5.292196 0.979565)
(xy -5.624509 1.129028)
(xy -5.867754 1.241712)
(xy -6.006842 1.310855)
(xy -6.034254 1.329352)
(xy -5.973529 1.368638)
(xy -5.800127 1.463282)
(xy -5.527205 1.606526)
(xy -5.167922 1.791611)
(xy -4.735435 2.01178)
(xy -4.242901 2.260274)
(xy -3.70348 2.530335)
(xy -3.455663 2.65376)
(xy -2.751085 3.00294)
(xy -2.157963 3.293005)
(xy -1.662784 3.528682)
(xy -1.252033 3.714693)
(xy -0.912197 3.855764)
(xy -0.629761 3.956619)
(xy -0.391211 4.021982)
(xy -0.183034 4.056579)
(xy 0.008284 4.065134)
(xy 0.196258 4.052371)
(xy 0.394401 4.023015)
(xy 0.438536 4.01519)
(xy 0.588979 3.977783)
(xy 0.789081 3.908933)
(xy 1.049906 3.803648)
(xy 1.382519 3.656936)
(xy 1.797982 3.463805)
(xy 2.307359 3.219261)
(xy 2.921713 2.918314)
(xy 3.455663 2.65376)
(xy 4.011487 2.376377)
(xy 4.526189 2.117599)
(xy 4.986612 1.884184)
(xy 5.379598 1.682891)
(xy 5.691989 1.520478)
(xy 5.910627 1.403702)
(xy 6.022354 1.339322)
(xy 6.034254 1.329352)
(xy 5.972167 1.292647)
(xy 5.795966 1.207939)
(xy 5.520739 1.081989)
(xy 5.161575 0.921559)
(xy 4.733564 0.733412)
(xy 4.251794 0.52431)
(xy 3.91174 0.378123)
(xy 1.789227 -0.530935)
(xy 1.768718 -1.031991)
(xy 1.74821 -1.533047)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 83208c8a-ec65-4539-ad69-b2248dbdc7bb))
)
(footprint "misc:LED_D3.0mm_Oval" (layer "F.Cu")
(tstamp 6b831010-5297-46cc-bd4d-44c879d7775a)
(at 120 73)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/3e9ffdf3-7959-4586-958e-5be3e46527f8")
(attr through_hole)
(fp_text reference "D3" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfdf8ea9-ad8a-4705-ba27-47390a150c35)
)
(fp_text value "STATUS" (at 1.27 4.5) (layer "F.SilkS")
(effects (font (size 2 2) (thickness 0.4) bold))
(tstamp 58ba7658-faab-460a-8722-9954af8ce46c)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51b8a77e-4433-450f-b93c-80df57259841))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bdfe1bda-d4ed-4884-bf43-84b695823144))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1c8d881-e10c-43d8-8249-1cfb76385b1b))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35bff9c5-a60c-48ba-a489-6b9337399e7e))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e56ab37f-fd7b-4788-9927-8fe86eb00f79))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8dc8b54-2045-4621-bd33-55155931e606))
(fp_line (start -1.75 -2.25) (end -1.75 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de52f307-3015-421c-a99c-f18aaa4c49bc))
(fp_line (start -1.75 2.25) (end 4.25 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c69d0c6-2444-4457-a575-1e5c75e5ea60))
(fp_line (start 4.25 -2.25) (end -1.75 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61c1df6c-8460-4e9e-99fd-d8173bd46229))
(fp_line (start 4.25 2.25) (end 4.25 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7471a9c-7b1b-433c-a1ad-9fac0369d0d0))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cac7bec3-8587-4244-8bc1-5b6fe533dba9))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 041ebbad-74ca-4820-ac08-e49eba730cfa))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 9b6391b7-740c-4867-b7ad-4d403abc0a57))
(pad "1" thru_hole rect (at 0 0 90) (size 1.8 2.3) (drill 0.9 (offset 0 -0.25)) (layers "*.Cu" "*.Mask")
(net 8 "GND") (pinfunction "K") (pintype "passive") (tstamp a89bfbbd-1495-4abb-9e8a-3d446b0ddc0b))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.8 2.3) (drill 0.9 (offset 0 0.25)) (layers "*.Cu" "*.Mask")
(net 24 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp f9299b7d-3cde-4d1e-9e0d-254299fae4cc))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" (layer "F.Cu")
(tstamp 6c92ae7a-7336-47c7-98e0-bcf3dbfd3742)
(at 163 60)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/c50bbc5f-125e-47bb-ad41-9f4e82bc0d71")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -4.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ec700d6-58d8-4c28-a803-c9cc003066e0)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eebda547-4660-4728-b378-517e7ac1e816)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d6c6952-b47c-4597-acd3-7dac9062c34c)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 5663b0fe-cedc-4119-ac32-3d518f149258))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ad760dac-0eca-4227-9618-c5b5970ff533))
(pad "" np_thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp 1e95b121-1e73-4889-a9e0-e184de772411))
)
(footprint "misc:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal_Oval" (layer "F.Cu")
(tstamp 78665ce5-f68a-4554-80f0-7d6336e818bf)
(at 127 87.84 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c2f8745b-4ab5-4337-b4b8-5f9c4ab70d35")
(attr through_hole)
(fp_text reference "R4" (at 5.08 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69bfec94-7b70-48df-9552-f7d88f7a26b9)
)
(fp_text value "R10KΩ" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccd2151f-5245-428f-94e4-36a5dcfe2d33)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a0026b2-920c-4e08-a46b-4084adae3144)
)
(fp_line (start 1.21 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 339c609f-6488-4486-8cea-bee3f8583d8a))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5e3d3c0-5666-4e70-8443-69c5f81acd3a))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98b00462-93d6-48db-8586-386a303cf2b7))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4add1cad-ef6b-49de-a68a-1ec121a791da))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f2f7cf1-0708-4629-838e-6320674418c2))
(fp_line (start 8.95 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 727db31e-7da4-4a71-8268-2c70e79c9a8a))
(fp_line (start -1.4 -1.5) (end -1.4 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c3be1f5-1c5f-4de8-88ce-29a4fa94e80e))
(fp_line (start -1.4 -1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 1c37d9e7-4f04-43fd-b584-2ecb13dcccba))
(fp_line (start -1.4 1.5) (end 11.56 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 65448d5f-5000-4ae8-b18a-1bebd54beefd))
(fp_line (start 11.56 1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e910c173-2343-4024-ac88-af610f566daa))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6494c87d-c1d9-4903-a74b-5de2833d3666))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a238c466-ede0-4514-a010-8d944557ca6c))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0caf8c4d-22a5-4761-b482-d90dc9ff9a16))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09456443-236e-412f-b701-770b7d0e1a2d))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb8cff74-e709-45c0-a659-871e69317f88))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4e2b6bb-a12f-410c-b122-9a786241c706))
(pad "1" thru_hole oval (at 0 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "/F3BTN") (pintype "passive") (tstamp f73287bb-21fa-49fd-a7f1-025523af472f))
(pad "2" thru_hole oval (at 10.16 0 180) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "/F2F3MODE") (pintype "passive") (tstamp efcba6e7-819e-4f65-a7e4-d354b5e92cc7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:E-Switch-EG1218-Manufacturer_Recommended_Oval" (layer "F.Cu")
(tstamp a0ac4ab1-89ae-4337-9dba-0f60b0df2858)
(at 161 109.5 -90)
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Switch, single pole double throw")
(property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
(path "/8b367067-ea80-456f-a4e2-3081b73f0bf6")
(attr through_hole)
(fp_text reference "SW2" (at 2.5 -5.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b5156ca-2ccb-4601-927a-24b276f8a73f)
)
(fp_text value "C64MODESW" (at 2.5 3.25 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 3b35d191-ef6a-403f-8abb-cfe317066239)
)
(fp_text user "AMIGA" (at 11.5 0) (layer "F.SilkS")
(effects (font (size 2 2) (thickness 0.4) bold))
(tstamp 210a7f15-1ff1-4053-b044-a114449179e4)
)
(fp_text user "C64" (at -6.5 0) (layer "F.SilkS")
(effects (font (size 2 2) (thickness 0.4) bold))
(tstamp 52d19ef8-9583-4092-8504-beae8b0183c6)
)
(fp_line (start -3.300001 -2.000001) (end 8.300001 -2.000001)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3ae0a39f-1b02-45e7-8259-327dd4119133))
(fp_line (start -3.300001 2.000001) (end -3.300001 -2.000001)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 942d27c2-a486-4cbb-a80e-83bb26ef8505))
(fp_line (start -3.300001 2.000001) (end 8.300001 2.000001)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e9e41e6d-00bb-4837-a72c-3917f6857d7c))
(fp_line (start 8.300001 2.000001) (end 8.300001 -2.000001)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c9f49be6-5ff3-4b5f-a88f-ea97278460eb))
(fp_line (start -3.325001 -2.025001) (end -3.325001 2.025001)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp de68d05e-02c8-43b6-9f21-c921474ad5d0))
(fp_line (start -3.325001 2.025001) (end 8.325001 2.025001)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 7cc4b053-9ff8-45da-a18f-2b8df2038a8b))
(fp_line (start 8.325001 -2.025001) (end -3.325001 -2.025001)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 54a97502-2a06-41ab-830f-489545aa9f7e))
(fp_line (start 8.325001 -2.025001) (end 8.325001 -2.025001)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 663ceedc-7b5a-4c63-b1cd-5937ad9e9659))
(fp_line (start 8.325001 2.025001) (end 8.325001 -2.025001)
(stroke (width 0.15) (type solid)) (layer "F.CrtYd") (tstamp 7420e5bc-5d9d-4a24-bd88-10d58f332e71))
(fp_line (start -3.300001 -2.000001) (end 8.300001 -2.000001)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b42837b5-2b96-4075-97f4-d5652e7c6bc6))
(fp_line (start -3.300001 2.000001) (end -3.300001 -2.000001)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 008e2e12-cea1-41bc-a727-cf01fa35e756))
(fp_line (start -3.300001 2.000001) (end 8.300001 2.000001)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b28da0cc-e906-4f1c-a2f8-f2b4029c7e0b))
(fp_line (start 8.300001 2.000001) (end 8.300001 -2.000001)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f645bf5-99e9-496c-bd58-ea2e0682160a))
(pad "1" thru_hole roundrect (at 0 0 270) (size 1.6 2.2) (drill 1.000001) (layers "*.Cu" "*.Mask") (roundrect_rratio 0)
(chamfer_ratio 0.2) (chamfer top_left)
(net 8 "GND") (pinfunction "A") (pintype "passive") (tstamp 50626948-acde-4a1f-bba7-b880901eb123))
(pad "2" thru_hole oval (at 2.5 0 270) (size 1.6 2.2) (drill 1.000001) (layers "*.Cu" "*.Mask")
(net 17 "/F2F3MODE") (pinfunction "B") (pintype "passive") (tstamp 298fd5c0-683f-493e-a13c-9b3a5a671cdf))
(pad "3" thru_hole oval (at 5 0 270) (size 1.6 2.2) (drill 1.000001) (layers "*.Cu" "*.Mask")
(net 7 "VCC") (pinfunction "C") (pintype "passive") (tstamp 4c168794-0d52-402e-b8b7-9ec0ee1fc368))
(model "eec.models/E-Switch_-_EG1218.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H4.3mm" (layer "F.Cu")
(tstamp bb3c7528-5b58-4d53-be6d-d59756eeb5ae)
(at 158.2 78 90)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/f10cf077-af51-41eb-8458-2168bc737f54")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 2.25 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2234e45-7ebc-4083-96d5-25e9616ab7e3)
)
(fp_text value "RST" (at -2.75 2.25 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55308009-3852-41ea-b43c-2f653b3a9169)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c575f31a-5fbf-4d5b-9154-c697e82afea8)
)
(fp_line (start -0.25 1.5) (end -0.25 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71cb54a1-122f-40b6-a7b2-064668073b18))
(fp_line (start 1 5.5) (end 5.5 5.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d18a3d29-ffd3-434f-a216-8c4d59050ff6))
(fp_line (start 5.5 -1) (end 1 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6262ef3-33f6-4e13-9db4-1eac53bd61e0))
(fp_line (start 6.75 3) (end 6.75 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f8646c2-203c-461f-a987-bdcf9b603bf5))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63814b4b-3249-450a-a534-809a03306164))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1cfcd23-0048-46f7-a038-24c98c7c2076))
(fp_line (start -1.5 5.75) (end -1.5 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1dbeda7c-580e-47de-9ec1-894b3ad0096d))
(fp_line (start -1.5 5.75) (end -1.5 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22179c10-5e26-4bc5-8bc6-f5807230ab75))
(fp_line (start -1.5 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c003796c-cd93-45d8-b9f2-5890cec8c32c))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95fadc22-bf10-49e3-aaca-47ed71013cd4))
(fp_line (start 7.75 -1.5) (end 8 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a194da67-8231-4ca3-8072-71e6a8c68be2))
(fp_line (start 7.75 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68918d7f-7082-4e49-9a15-12656bec54eb))
(fp_line (start 7.75 6) (end 8 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4546598c-3fb0-4cd1-b6ef-f943b8f27493))
(fp_line (start 8 -1.5) (end 8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 491ca74e-8a96-4fb1-9f03-b4bfb7a6a08a))
(fp_line (start 8 -1.25) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14e4c12b-e757-4a09-8016-7ff95e4ee084))
(fp_line (start 8 6) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52dd9a2d-b095-4940-a789-893049d6eae5))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06d9c2e7-5798-436f-a4b7-b7df9a6bf684))
(fp_line (start 0.25 5.25) (end 0.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10aef852-97b0-43eb-9437-40f72b626b27))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84ce5f6b-fad1-436f-bc6b-452395d5750e))
(fp_line (start 6.25 -0.75) (end 6.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82d38f6d-dbc9-4956-9d04-38a966e3263e))
(fp_line (start 6.25 5.25) (end 0.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6d79fb3-975f-45d6-a373-843b5cc10b99))
(fp_circle (center 3.25 2.25) (end 1.25 2.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 8e71f04b-81cd-4dbd-b4f4-1b0b2db37f17))
(pad "1" thru_hole circle (at 0 0 180) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 11 "/RST") (pinfunction "A") (pintype "passive") (tstamp f8768f2f-0e91-49e0-bce3-af2a4dc09302))
(pad "1" thru_hole circle (at 6.5 0 180) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 11 "/RST") (pinfunction "A") (pintype "passive") (tstamp fbca66b0-f159-403f-ae3a-00561cba3404))
(pad "2" thru_hole circle (at 0 4.5 180) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "GND") (pinfunction "B") (pintype "passive") (tstamp 2b7c8509-3d4a-47dc-a24d-4352b94e58e6))
(pad "2" thru_hole circle (at 6.5 4.5 180) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "GND") (pinfunction "B") (pintype "passive") (tstamp da4d6efc-b0bc-48ca-b877-16d913923508))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H4.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_OVAL_MountingHolesOffset11.32mm" locked (layer "F.Cu")
(tstamp cd5a7e26-cf94-4d7d-b222-1a1d8c9fbed3)
(at 134.96 126.569669)
(descr "9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
(tags "9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm")
(property "Sheetfile" "joy2usb-simple.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "9-pin male plug pin D-SUB connector")
(property "ki_keywords" "connector male plug D-SUB DB9")
(path "/904b9dce-e0fa-4996-95ed-5106b4f66a12")
(attr through_hole)
(fp_text reference "J1" (at 5.54 -2.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 803f7684-e7fb-47ff-a05f-cb80528c7730)
)
(fp_text value "DB9_Male" (at 5.54 20.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1538fd62-b3d9-4542-859e-390e094f87c5)
)
(fp_text user "${REFERENCE}" (at 5.54 16.14) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4547efd3-fd49-424c-8da6-f5056588110f)
)
(fp_line (start -9.945 -1.86) (end 21.025 -1.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4660aaf7-e2e1-42e2-87fd-8a23757f2035))
(fp_line (start -9.945 12.68) (end -9.945 -1.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d20aee9d-220d-4396-bb1b-39a11fb193e1))
(fp_line (start -0.25 -2.754338) (end 0.25 -2.754338)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8fc3336-f314-4d8a-97ee-fff985c760b5))
(fp_line (start 0 -2.321325) (end -0.25 -2.754338)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79f09dfa-2313-48eb-b608-c1d6445ea82a))
(fp_line (start 0.25 -2.754338) (end 0 -2.321325)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a880bde9-0eec-43f6-b0ec-a718ecff7d38))
(fp_line (start 21.025 -1.86) (end 21.025 12.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 162882a4-1c39-4b5f-abe9-74ebea2291c2))
(fp_line (start -10.4 -2.35) (end -10.4 19.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 305e76ee-fec7-44c5-85fa-b3e47f8a251c))
(fp_line (start -10.4 19.65) (end 21.5 19.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dcb4a65-9539-4ae7-b455-bb8b7f6133f3))
(fp_line (start 21.5 -2.35) (end -10.4 -2.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffbe5aa3-395c-48cb-ae5f-e8b2752e163a))
(fp_line (start 21.5 19.65) (end 21.5 -2.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b025714-e025-458f-8f6e-fe807557ca74))
(fp_line (start -9.885 -1.8) (end -9.885 12.74)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7212f034-7f16-4bfd-a7ec-4ede092652bf))
(fp_line (start -9.885 12.74) (end -9.885 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3aae5a1-22bd-4d59-a3a8-1da0f12362cc))
(fp_line (start -9.885 12.74) (end 20.965 12.74)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d97c778-7c86-4a48-9dec-a4efafe51073))
(fp_line (start -9.885 13.14) (end 20.965 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ce122dc-0317-4236-9e3d-12485f8c561b))
(fp_line (start -9.46 13.14) (end -9.46 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb2f7a15-98ba-4c4d-b459-dd694cb2ac37))
(fp_line (start -9.46 18.14) (end -4.46 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a64425a6-702e-4ad0-abab-208876eff4f1))
(fp_line (start -8.56 12.74) (end -8.56 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c6a525c-6020-4571-9cdf-1ff579fe125d))
(fp_line (start -5.36 12.74) (end -5.36 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d24736c-3d6f-4803-ab3d-f02bb554aba6))
(fp_line (start -4.46 13.14) (end -9.46 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04d121f8-0422-4ad4-b0dc-99ffc5234258))
(fp_line (start -4.46 18.14) (end -4.46 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ccd0d9c7-7388-459c-ba71-5c00846c3ded))
(fp_line (start -2.61 13.14) (end -2.61 19.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9eb65baf-beaf-42cd-bbd6-210fedd4ccb5))
(fp_line (start -2.61 19.14) (end 13.69 19.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46323e62-d47b-4dbd-a798-de2a3405afea))
(fp_line (start 13.69 13.14) (end -2.61 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48686aa0-74a8-4c28-b9b0-13bae384db14))
(fp_line (start 13.69 19.14) (end 13.69 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00c945c5-1b5a-4552-a1a4-cba3a5fcfd90))
(fp_line (start 15.54 13.14) (end 15.54 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f80e7de4-a6ae-4af3-8033-9cba5f49f018))
(fp_line (start 15.54 18.14) (end 20.54 18.14)