-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPong.kicad_pcb
executable file
·25626 lines (25593 loc) · 924 KB
/
Pong.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(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
(pad_to_mask_clearance 0)
(grid_origin 83.82 154.94)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerbers 1.02/")
)
)
(net 0 "")
(net 1 "Net-(C2-Pad1)")
(net 2 "Net-(R1-Pad2)")
(net 3 "Net-(C1-Pad1)")
(net 4 "Net-(R10-Pad1)")
(net 5 "R_POT_WIPE")
(net 6 "Net-(R4-Pad2)")
(net 7 "GND")
(net 8 "L_POT_WIPE")
(net 9 "Net-(R8-Pad2)")
(net 10 "Net-(R9-Pad2)")
(net 11 "Net-(R10-Pad2)")
(net 12 "Net-(R11-Pad2)")
(net 13 "unconnected-(U1-Pad1)")
(net 14 "SOUND")
(net 15 "VCC")
(net 16 "BALLOUT")
(net 17 "SPEED")
(net 18 "RPLAYEROUT")
(net 19 "LPLAYEROUT")
(net 20 "BATSIZE")
(net 21 "unconnected-(U1-Pad14)")
(net 22 "unconnected-(U1-Pad15)")
(net 23 "SYNC")
(net 24 "Net-(U1-Pad17)")
(net 25 "unconnected-(U1-Pad18)")
(net 26 "unconnected-(U1-Pad19)")
(net 27 "TENNIS")
(net 28 "SOCCER")
(net 29 "unconnected-(U1-Pad22)")
(net 30 "PRACTICE")
(net 31 "FIELDOUT")
(net 32 "RESET")
(net 33 "unconnected-(U1-Pad26)")
(net 34 "unconnected-(U1-Pad27)")
(net 35 "unconnected-(U1-Pad28)")
(net 36 "unconnected-(J2-Pad2)")
(net 37 "unconnected-(J2-Pad14)")
(net 38 "Net-(J3-Pad2)")
(net 39 "Net-(Q1-Pad3)")
(net 40 "Net-(Q1-Pad2)")
(net 41 "Net-(C4-Pad1)")
(net 42 "Net-(J4-Pad2)")
(footprint "Capacitor_THT:C_Disc_D8.0mm_W5.0mm_P7.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 111cfd5a-fd8c-4fd1-9782-e61e6df90e25)
(at 110.86 102.01 -90)
(descr "C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf")
(tags "C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/ae6173c3-07b0-48c5-a15a-1fa87f52566f")
(attr through_hole)
(fp_text reference "C3" (at 3.75 -3.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97f4eaa6-9011-46f2-a257-7fdf448621c2)
)
(fp_text value ".1uF" (at 9.75 3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a4d1a88-aa10-4322-b5bd-0b23d5fa6336)
)
(fp_text user "${REFERENCE}" (at 3.75 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77cfe351-a36b-4374-a1b9-964a4dc0e05c)
)
(fp_line (start -0.37 2.62) (end 7.87 2.62) (layer "F.SilkS") (width 0.12) (tstamp 12bb0f82-6022-452d-8710-29137ff4b49c))
(fp_line (start 7.87 1.256) (end 7.87 2.62) (layer "F.SilkS") (width 0.12) (tstamp 4aacbfb3-219e-4fa6-a07d-a28b62dedb75))
(fp_line (start -0.37 -2.62) (end -0.37 -1.256) (layer "F.SilkS") (width 0.12) (tstamp 665791eb-f96c-4b48-8c2f-7c993f57e965))
(fp_line (start -0.37 -2.62) (end 7.87 -2.62) (layer "F.SilkS") (width 0.12) (tstamp 6847702a-411d-4aa2-8bad-fbf35734336e))
(fp_line (start -0.37 1.256) (end -0.37 2.62) (layer "F.SilkS") (width 0.12) (tstamp a2aeb978-e139-45cc-b9a2-1bbeeac218b9))
(fp_line (start 7.87 -2.62) (end 7.87 -1.256) (layer "F.SilkS") (width 0.12) (tstamp bf1cc484-3a62-4044-977d-80384d498c01))
(fp_line (start 8.75 2.75) (end 8.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 445463a8-6cd6-4abb-a267-a7ead136e386))
(fp_line (start -1.25 -2.75) (end -1.25 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 6c0b5026-9557-4723-a46b-ed3078079e0e))
(fp_line (start 8.75 -2.75) (end -1.25 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 94e4e06b-f4ba-4858-8fc6-2faa7bd4f6b0))
(fp_line (start -1.25 2.75) (end 8.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp e7fc282e-7ae6-4774-a787-0c4f8f6365a8))
(fp_line (start 7.75 -2.5) (end -0.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp bd9b7d19-1a7f-43f6-9473-01c3b17fcc80))
(fp_line (start 7.75 2.5) (end 7.75 -2.5) (layer "F.Fab") (width 0.1) (tstamp cc71fc4a-4c93-4674-a14a-f0aad3e2c5f4))
(fp_line (start -0.25 2.5) (end 7.75 2.5) (layer "F.Fab") (width 0.1) (tstamp e79ed113-144b-4375-a706-ec594aed7cc3))
(fp_line (start -0.25 -2.5) (end -0.25 2.5) (layer "F.Fab") (width 0.1) (tstamp f4661bc7-1bb8-4cbf-8f4c-0ff8c6ea5f7a))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(R4-Pad2)") (pintype "passive") (tstamp cb1e0c4f-bdd9-41ad-9864-abaf34b97d63))
(pad "2" thru_hole circle (at 7.5 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "passive") (tstamp 8610eb4f-4619-4bc9-9cb1-17043e479273))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D8.0mm_W5.0mm_P7.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D8.0mm_W5.0mm_P7.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 127bf1d8-9bf5-4bbd-8bf8-e17b01a411d1)
(at 103.24 102.01 -90)
(descr "C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf")
(tags "C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/94b56d8e-e0f4-407d-a49a-9acdcf20aa1e")
(attr through_hole)
(fp_text reference "C4" (at 3.75 -3.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e410e8c7-79a2-4d50-bfed-04a646d04332)
)
(fp_text value ".1uF" (at 9.75 1.64 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 757990a8-10b0-426b-9b36-2951469e50a3)
)
(fp_text user "${REFERENCE}" (at 3.75 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e49ae34-2e24-4c54-ad12-ec477249ce56)
)
(fp_line (start -0.37 -2.62) (end -0.37 -1.256) (layer "F.SilkS") (width 0.12) (tstamp 208b13ee-67a3-462d-907e-2a74d9a4fedf))
(fp_line (start -0.37 1.256) (end -0.37 2.62) (layer "F.SilkS") (width 0.12) (tstamp 2e9eed9d-27c3-4714-9e97-f9ebded569e8))
(fp_line (start -0.37 -2.62) (end 7.87 -2.62) (layer "F.SilkS") (width 0.12) (tstamp 4906d507-5252-4421-a8af-85124ff5e806))
(fp_line (start 7.87 1.256) (end 7.87 2.62) (layer "F.SilkS") (width 0.12) (tstamp 8edb23d9-9e32-499e-8043-58f4290bceed))
(fp_line (start 7.87 -2.62) (end 7.87 -1.256) (layer "F.SilkS") (width 0.12) (tstamp dea1d43d-319b-4be6-b9c8-8c546174d6c9))
(fp_line (start -0.37 2.62) (end 7.87 2.62) (layer "F.SilkS") (width 0.12) (tstamp df24248a-9a7c-431d-920e-854bb9f50dc9))
(fp_line (start -1.25 2.75) (end 8.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 1d78bbe3-54cd-4d38-b598-bca91afd76d7))
(fp_line (start 8.75 -2.75) (end -1.25 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 23fcffd9-d4af-44c5-a3bc-af25c6ad952e))
(fp_line (start 8.75 2.75) (end 8.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 41d7f009-7fa5-40c8-8228-5766692ee119))
(fp_line (start -1.25 -2.75) (end -1.25 2.75) (layer "F.CrtYd") (width 0.05) (tstamp b4df586e-d5a5-44b0-8476-8af82c3b0381))
(fp_line (start 7.75 -2.5) (end -0.25 -2.5) (layer "F.Fab") (width 0.1) (tstamp 3cf06bd5-b5e7-4894-96e2-32cddb6ecd7d))
(fp_line (start -0.25 -2.5) (end -0.25 2.5) (layer "F.Fab") (width 0.1) (tstamp 778ef5dd-875b-4f92-951f-7b0645341749))
(fp_line (start 7.75 2.5) (end 7.75 -2.5) (layer "F.Fab") (width 0.1) (tstamp 7fd452c5-beaa-4086-a289-68320a2a34a9))
(fp_line (start -0.25 2.5) (end 7.75 2.5) (layer "F.Fab") (width 0.1) (tstamp 9f564ed6-7349-474e-852f-5a9554ce9d85))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 41 "Net-(C4-Pad1)") (pintype "passive") (tstamp 4c27a43d-cc35-42a3-8789-0ef091f21574))
(pad "2" thru_hole circle (at 7.5 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "passive") (tstamp 7b6a1bdb-b25a-49e3-9290-898438faeb57))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D8.0mm_W5.0mm_P7.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 16be62eb-03f8-4355-bc46-8b51ca867d7b)
(at 81.28 110.49 90)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/ff673b67-03cb-4e97-8c25-bb07f0420188")
(attr through_hole)
(fp_text reference "R7" (at 6.35 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56ca4976-e48c-480b-a3d6-d3d7fa4a96d9)
)
(fp_text value "10K" (at 6.35 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df1a13fb-35fa-4358-8990-9c5455c0974e)
)
(fp_text user "${REFERENCE}" (at 6.35 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14d36502-41eb-4b87-ba79-228b0a1a91bf)
)
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 033d2f78-9356-49fe-9620-a05d7c898928))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 6b2d4087-c59e-4266-91d7-4dfefff7b91d))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp aacabb8f-4895-4d8c-84eb-d433fcd270bf))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp c78eb4b6-9237-4a6b-bd2f-95b68952f8d1))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp e9fca38c-94ca-45ec-b02c-0a84c59f9ae2))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp fa77a6a6-c227-421a-9019-4b5f6fed646b))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 16e296ff-7690-4e2b-8398-c321b3b3743d))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 1a4b9c6a-d847-4b74-90cb-2ab6a38b1a54))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 8ba4558c-9f72-439d-bba6-b196f24a29ca))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp a1aa7600-7497-489e-ba63-56c8c5924f92))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 056da63f-97ec-4df2-b901-91bc35317f83))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 16ab8243-e906-4227-87c9-8e3da06d50f5))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 1d35170f-bb35-473f-a67d-96ba2ff52a9a))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp bb631a87-4cec-45f7-a5ff-132d79d251a9))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp c22fd128-4eab-4bb3-809f-afe3c4f8bd48))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp eedf4113-b065-4c56-999b-f5b7d70cc2a6))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "L_POT_WIPE") (pintype "passive") (tstamp 6fe2fd53-2444-42cf-b4b0-38ca16fbde59))
(pad "2" thru_hole oval (at 12.7 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "Net-(C4-Pad1)") (pintype "passive") (tstamp ec41c4ad-93a3-45df-8a7b-538b19747f7d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_HC52-8mm_Horizontal" (layer "F.Cu")
(tedit 5A1AD3B8) (tstamp 2b151643-e082-405d-b678-9f9200ed45ee)
(at 52.91 102.24 -90)
(descr "Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf")
(tags "THT crystal")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/810e7b83-a154-4222-b0d6-e8d4f511c6fe")
(attr through_hole)
(fp_text reference "Y1" (at -3.475 1.8125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55ce5de7-9647-4d0f-9c60-7ebd239f4c36)
)
(fp_text value "2MHz" (at 7.275 1.8125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 266ad4dc-2285-4fbb-9be7-1fe5291a4f7e)
)
(fp_text user "${REFERENCE}" (at 2 4.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71b95a8f-16fa-47f4-b4f4-63c846eecfec)
)
(fp_line (start 3.8 0.95) (end 3.8 0.95) (layer "F.SilkS") (width 0.12) (tstamp 06f6fcda-932f-44aa-bbea-7830868f2728))
(fp_line (start -2.3 1.3) (end -2.3 9.7) (layer "F.SilkS") (width 0.12) (tstamp 2eff9abe-2f05-4b93-b86d-6d94e3f0fcdb))
(fp_line (start 0 1.3) (end 0 0.95) (layer "F.SilkS") (width 0.12) (tstamp 4a5f5106-9ea9-49b0-baf9-630bb43065ec))
(fp_line (start 6.1 1.3) (end -2.3 1.3) (layer "F.SilkS") (width 0.12) (tstamp 624252f5-0398-4512-8040-2cb5deeab5a9))
(fp_line (start -2.65 1.18) (end 6.45 1.18) (layer "F.SilkS") (width 0.12) (tstamp 68ff4844-b311-4721-91f0-dfc9f264d810))
(fp_line (start 6.1 9.7) (end 6.1 1.3) (layer "F.SilkS") (width 0.12) (tstamp 70d5ca16-2d46-4974-aa14-00b33562c668))
(fp_line (start -2.3 9.7) (end 6.1 9.7) (layer "F.SilkS") (width 0.12) (tstamp a73d7166-73b6-4534-9146-511b786d54f6))
(fp_line (start 0 0.95) (end 0 0.95) (layer "F.SilkS") (width 0.12) (tstamp aee8a029-eda7-4cbb-b893-8276af2b88aa))
(fp_line (start -2.65 1.3) (end -2.65 1.18) (layer "F.SilkS") (width 0.12) (tstamp bcce68e5-483e-452d-ab6d-a528a338f9c2))
(fp_line (start 3.8 1.3) (end 3.8 0.95) (layer "F.SilkS") (width 0.12) (tstamp d62c79f5-7c3e-4c43-98db-75fb1f11b680))
(fp_line (start 6.45 1.3) (end -2.65 1.3) (layer "F.SilkS") (width 0.12) (tstamp d6c97b55-f01e-4a4e-b6b1-e83b61a19426))
(fp_line (start 6.45 1.18) (end 6.45 1.3) (layer "F.SilkS") (width 0.12) (tstamp fb94bdb0-c40d-470b-8a3c-5de6406d1a2e))
(fp_line (start 7 10.3) (end 7 -1) (layer "F.CrtYd") (width 0.05) (tstamp 2b2b007f-0e1a-4bee-ac62-8211700681cb))
(fp_line (start 7 -1) (end -3.2 -1) (layer "F.CrtYd") (width 0.05) (tstamp 4f97f78f-2705-4711-b66c-520ce451554d))
(fp_line (start -3.2 10.3) (end 7 10.3) (layer "F.CrtYd") (width 0.05) (tstamp 59ada661-ba90-498d-b809-905554399b64))
(fp_line (start -3.2 -1) (end -3.2 10.3) (layer "F.CrtYd") (width 0.05) (tstamp 6e063666-c9ea-49d9-a08a-d82750450004))
(fp_line (start 6.25 1.5) (end -2.45 1.5) (layer "F.Fab") (width 0.1) (tstamp 0568d384-007c-4952-b7ac-86742161ca03))
(fp_line (start 3.8 0.75) (end 3.8 0) (layer "F.Fab") (width 0.1) (tstamp 0db54b5d-8810-4f7e-bbca-d1c69695e6a5))
(fp_line (start 0 1.5) (end 0 0.75) (layer "F.Fab") (width 0.1) (tstamp 421dd807-b5cc-4e91-8aa8-5a2ed21aca0b))
(fp_line (start 5.9 9.5) (end 5.9 1.5) (layer "F.Fab") (width 0.1) (tstamp 4c718872-0518-4c0d-a25f-1c3ca01a2de0))
(fp_line (start -2.1 9.5) (end 5.9 9.5) (layer "F.Fab") (width 0.1) (tstamp 61a9e686-9718-452a-b972-03e48aa416bf))
(fp_line (start 6.25 1.4) (end 6.25 1.5) (layer "F.Fab") (width 0.1) (tstamp 6adb15ec-6b5b-45f5-b60b-dad6514b0868))
(fp_line (start 0 0.75) (end 0 0) (layer "F.Fab") (width 0.1) (tstamp 7a60edaa-a222-4b49-a508-de6912b2a46c))
(fp_line (start -2.45 1.5) (end -2.45 1.4) (layer "F.Fab") (width 0.1) (tstamp a2949d36-4393-4355-a7b7-6ad131e4bf14))
(fp_line (start -2.1 1.5) (end -2.1 9.5) (layer "F.Fab") (width 0.1) (tstamp ae1206ac-7861-4e3e-91ad-bfae217feaa5))
(fp_line (start 5.9 1.5) (end -2.1 1.5) (layer "F.Fab") (width 0.1) (tstamp d2d7a7e4-8946-46b6-adf5-e34e815b66b7))
(fp_line (start -2.45 1.4) (end 6.25 1.4) (layer "F.Fab") (width 0.1) (tstamp f1d3a619-d483-4566-af26-dc89650f2959))
(fp_line (start 3.8 1.5) (end 3.8 0.75) (layer "F.Fab") (width 0.1) (tstamp f91271e0-dcde-4b8b-9ffe-9eb8bfb39793))
(pad "1" thru_hole circle (at 0 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 74659740-c4b3-46f3-b89c-fb691901bc4c))
(pad "2" thru_hole circle (at 3.8 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C2-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 3fabb848-6f47-4b72-8b59-c596eda5ec8b))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_HC52-8mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 4f01dae3-0a6a-49b1-8d60-48eacdcd0270)
(at 58.42 110.49 90)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/497b82c8-d168-4aa9-a430-a8c47b8e647b")
(attr through_hole)
(fp_text reference "R2" (at 6.35 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4fe0ce7-73ca-4c4e-b71c-fcf4376f411e)
)
(fp_text value "220" (at 6.35 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a35d0302-fb97-4709-8488-f97cb8454f41)
)
(fp_text user "${REFERENCE}" (at 6.35 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e753e303-6a5c-4ca8-a810-25181516c493)
)
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 5cf7097e-ce08-4b5f-85fa-50a7f050b559))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 5fec113f-0dd3-47ce-bc9d-d64837806fae))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp a853aba5-2032-458a-bfeb-dd47d7f98520))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp ae052220-af9d-4d94-86b8-dbbf17b39e6f))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp bde797e0-66ef-420f-91cd-c00b6a482719))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp ee84c4df-5b37-441a-8a1c-00537de5568c))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp b5aecef7-c6bf-45c6-a1c0-2908ddf1b69d))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp b960de0f-c68e-4e91-abe1-084a62587d08))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp c630b212-e4e9-4188-bd67-41b088c20f61))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp dd495335-629b-4fe9-b091-d548ddee1a2f))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 04bb4002-9975-494f-b729-5da35b3fcd0c))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 2949ef39-ec94-424a-a7c2-2899b1942a2b))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp a2488883-c749-466e-9f4b-7ac6ccadb6e7))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp a4c5efd0-cada-4121-ac26-742051cbde50))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp ac5f6b0a-0d81-450f-add0-776d3fd7abe7))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp d63f9038-ddf1-448b-b28d-7139048b6e8f))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R1-Pad2)") (pintype "passive") (tstamp 28a7ccf4-1ea4-4765-a8ce-b5ec423ee8f9))
(pad "2" thru_hole oval (at 12.7 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp 194f3c67-69aa-40f2-a7d2-55e13a91b21b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 5c53e872-999d-4ddf-8646-ec3f51028ab5)
(at 73.66 110.49 90)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/5986d8c3-9329-4dbd-a9c1-f1bccb33b26d")
(attr through_hole)
(fp_text reference "R4" (at 6.35 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 176a41cc-e100-4825-b02f-c162fdc0b7b4)
)
(fp_text value "10K" (at 6.35 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c4661f7-1d59-42f5-b6ea-6cda7e229d15)
)
(fp_text user "${REFERENCE}" (at 6.35 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd11ac8b-8f4a-4134-87fe-93c647233f16)
)
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 2eef2b03-b2bc-4b8b-a76b-62d1400759cb))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 714b5ec7-2b50-40f2-9725-c212162ba6c9))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 7ea13708-fe69-4873-be74-6ec4f7d4e2d1))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 8be295d4-ae0a-4e30-8b7f-1d4fa98c33ea))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp d35a5148-4bab-4acc-9b5c-4f13b403e8e9))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp ed39e7e3-cb72-4b39-87f1-568ce3b656ec))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 08e5b665-c474-42a5-8752-82a6b076630a))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 96e4c638-7e9c-42f2-aae1-dc5afd80661f))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp ea3c1a3c-cedc-476d-9f37-98e1c5ad1916))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp fecc2add-9976-4204-bb7c-3e706c25f115))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 40afe883-71fb-4386-a2e4-19aaef8efaa9))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 4aa8b254-c35f-475f-9ab9-c7fbced0be82))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp acb415f7-c4de-4a2b-ab58-9770527403fb))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp c06e3d2f-9e83-494b-a42e-f63708da8059))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp d252235a-8bef-435c-850b-b7f7ee9faecc))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp fd1cbd51-f9c3-44f5-860b-a4ccb13d799c))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "R_POT_WIPE") (pintype "passive") (tstamp b47905f2-25ba-4d26-bea6-0094516189e1))
(pad "2" thru_hole oval (at 12.7 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(R4-Pad2)") (pintype "passive") (tstamp f9c3a882-1518-4ec2-9cc5-b4a837274f77))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 610dbcab-cbbf-4468-8d1a-288665de9c69)
(at 118.11 71.12)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/008c8e25-bdbb-4aed-a175-23f498cd11c1")
(attr through_hole)
(fp_text reference "R5" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2586dc66-c6f8-4ca8-93a4-00419b634a68)
)
(fp_text value "220" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0e98611-e976-4b6a-9725-7dd068fc6983)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c808de0a-2aae-4e03-b1f3-2f201ba5ad13)
)
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 2ef946ed-370d-4166-834e-c7f086f7fc48))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 49f51daf-b4e4-4b34-b9d1-4847fc0a499b))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp da0ac719-9ca9-439e-a232-1a5faa40a966))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp e30292bb-4838-4b29-8669-b2cd6cf69fae))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp e6d8cf6b-8016-490a-a039-22f4d04c44e3))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp f17d23dd-f9bb-4b74-9186-e0b7a7eeb7b6))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 25f46815-dab9-4807-b5c0-50fbada68067))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 294f414e-b53e-4266-9e5f-46531e3df24c))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp b67a20cd-df24-469e-a237-353d9faabeb8))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp cc1ee185-2a76-4e05-a712-17f27db257ea))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 082aa54d-5475-4748-aa93-c4f128083d6d))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 5c35cc93-7a83-4878-aa4f-b7438bf98e33))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 7f968a87-7c41-4eae-84e1-1e27a32056a8))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 90304cf2-51e6-4a6b-9d89-a1f3cbfb9cc5))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp bd96a4ec-df0b-4982-9c41-244a371cf0f0))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp cbe5fb48-534b-44ab-94e6-ba0d88e429b6))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "passive") (tstamp 159c4939-5f77-4752-abb6-5ee1289ba77c))
(pad "2" thru_hole oval (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(R10-Pad1)") (pintype "passive") (tstamp f6986fb4-2a0a-471b-8535-5fe3a6163426))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 62665550-0bd1-4654-bdc3-7dca7b0dcdd5)
(at 45.72 58.42 -90)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/80b870c0-8a37-4bd5-98f0-b2d2ea3628a0")
(attr through_hole)
(fp_text reference "R12" (at 6.35 -5.08 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b2bfaff-548e-4e4c-9996-d674f3bcb984)
)
(fp_text value "47" (at 6.35 -7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c12761a0-42ce-4a7a-bb35-614af401498d)
)
(fp_text user "${REFERENCE}" (at 6.35 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd27e755-b95a-4ccc-93fb-c09caae13208)
)
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 06a081aa-5336-4e78-93f0-bce15b09a346))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 1a23772d-0fb8-4a33-bbe1-52a59be387e8))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 2696b79d-5c52-43b3-a445-fbe81df59ee2))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 5fe11d46-0afd-409b-b921-ec97ce42ea38))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 6ce89ee2-791e-4baf-b095-8fb6eab67e97))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 7164bb9c-041c-4f3d-b65c-3ac2e35f910d))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 33a16d04-9cb5-4354-8955-f99792a8d25c))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 37b99d49-83bc-459e-8f1a-e4d0a8420a91))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 73c59d05-b3a4-4fdb-ac71-a01f90f8e23e))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 873635c9-8789-454e-a350-b15caa77b349))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 3a2c139c-5e98-4b69-bb6d-97b32a1493c7))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 520db6d2-c4e4-4426-b916-38cc49fc4198))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 8ae8f9bd-7bb7-4e82-8aa2-e6aa4282a38b))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp a9c4b30d-a706-4521-871c-d57948b74d5f))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp e9fa934a-b708-4d35-b293-f753a1b8b5eb))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp f69ddff2-d5c0-44ca-a902-0a58a4a3a8cf))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "Net-(Q1-Pad3)") (pintype "passive") (tstamp 19ffa995-3d67-44af-a40a-6e3cd46041c9))
(pad "2" thru_hole oval (at 12.7 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "VCC") (pintype "passive") (tstamp 4fc23835-1912-4da6-b6be-8e7cd29eabf2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W15.24mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 64df51ed-946c-44f4-9463-f03d9079899a)
(at 81.275 59.675)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/bedbaeab-32a2-4234-9a6e-83dce5962349")
(attr through_hole)
(fp_text reference "U1" (at 7.62 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f48ea911-470b-41d3-a6b6-78f7f2cc2949)
)
(fp_text value "AY-3-8500" (at 7.62 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62004eb4-39f1-4624-83a7-235dd29212c2)
)
(fp_text user "${REFERENCE}" (at 7.62 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e641bebf-4683-47dc-b866-9931316afbb1)
)
(fp_line (start -1.44 -1.39) (end -1.44 34.41) (layer "F.SilkS") (width 0.12) (tstamp 0415fa7f-5c61-46ec-b89f-aa27006fbe46))
(fp_line (start 1.56 -1.33) (end 1.56 34.35) (layer "F.SilkS") (width 0.12) (tstamp 1a1ef826-ea01-46bb-9264-af02772e04b4))
(fp_line (start 16.68 34.41) (end 16.68 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 8214b843-c936-451b-82a1-9f936b9109f0))
(fp_line (start -1.44 34.41) (end 16.68 34.41) (layer "F.SilkS") (width 0.12) (tstamp d37b5bc3-0be1-4db9-80c5-570d52e64048))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp d3d1a504-c073-4356-bb26-328c23e7c290))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp dcc790c4-2b83-402d-a393-f072f0d7bbad))
(fp_line (start 1.56 34.35) (end 13.68 34.35) (layer "F.SilkS") (width 0.12) (tstamp e47073f6-dfcd-4911-b75f-8aa7ad46bdbe))
(fp_line (start 13.68 34.35) (end 13.68 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ea282d40-2d3b-4077-bbb4-88926c3f0bc6))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f546a77a-de40-4ac3-bc19-125894f15826))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ae8e6501-2655-47db-aefd-aee96264f1f8))
(fp_line (start -1.55 34.65) (end 16.8 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 4c8fcae0-e92e-47f8-820c-b8921f1d7c1d))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 74cd23aa-68ad-484e-b9b8-fad4ccaf32d5))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 873d672f-4d05-485e-8ff8-a263c3003564))
(fp_line (start 16.8 34.65) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 8a4c5203-815e-4260-8987-70f05b4d415b))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp 099a7af1-261f-460d-a6ff-fc5be549efba))
(fp_line (start -1.27 34.35) (end 16.51 34.35) (layer "F.Fab") (width 0.1) (tstamp 62e6d5af-6c19-42c5-99b4-44b86235dd8f))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 8361bad2-5b5b-4d2a-9460-e5b9ecd54541))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 900850ba-4e00-4d0b-ba57-93f1dfa9735f))
(fp_line (start 14.985 -1.27) (end 14.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 96607765-5235-445d-ad0b-c442eb6607ea))
(fp_line (start 0.255 34.29) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp a471a6bc-4063-4b59-8d87-1e9d14a482af))
(fp_line (start 14.985 34.29) (end 0.255 34.29) (layer "F.Fab") (width 0.1) (tstamp b2db46a6-90a5-45ed-b1ba-55662bb09544))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp c073ce67-b1f2-4358-b744-c6df974cb2ad))
(fp_line (start 16.51 34.35) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp fd85a5b9-446e-4348-9c8f-0b4e56043b05))
(pad "1" thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "unconnected-(U1-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 01dcbe49-ea37-4845-96e4-1de1ca0fa4cf))
(pad "2" thru_hole oval (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "Vss") (pintype "input") (tstamp 3782cecb-f46b-4f1f-b3c3-87b178d154bf))
(pad "3" thru_hole oval (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "SOUND") (pinfunction "Sound") (pintype "output") (tstamp a25df213-987b-4dbf-b6f5-558e687fc5b9))
(pad "4" thru_hole oval (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "VCC") (pinfunction "Vcc") (pintype "input") (tstamp 73ef5b4b-9b1f-4c07-b7b4-503796977e06))
(pad "5" thru_hole oval (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "Ball_Angles") (pintype "input") (tstamp 622d77d5-a0f9-4259-8389-b967697f4432))
(pad "6" thru_hole oval (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "BALLOUT") (pinfunction "BallOutput") (pintype "output") (tstamp 10a2f345-ea59-4eec-bdf6-79a8b1a55997))
(pad "7" thru_hole oval (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "SPEED") (pinfunction "BallSpeed") (pintype "input") (tstamp 9c88326b-5657-47ac-bd2b-33cfadc6b893))
(pad "8" thru_hole oval (at 0 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "ManualServe") (pintype "input") (tstamp 8101b626-3ad4-4941-89ce-ab9bca37f2cd))
(pad "9" thru_hole oval (at 0 20.32) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "RPLAYEROUT") (pinfunction "RPlayerOut") (pintype "output") (tstamp 02cfdccf-7b32-4184-b0c2-0882b55ecefc))
(pad "10" thru_hole oval (at 0 22.86) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "LPLAYEROUT") (pinfunction "LPlayerOut") (pintype "output") (tstamp 05332486-9440-48d9-9304-5b3151d5c139))
(pad "11" thru_hole oval (at 0 25.4) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(R8-Pad2)") (pinfunction "RBatInput") (pintype "input") (tstamp 52898427-3c80-4f64-9774-04c59ebfad3f))
(pad "12" thru_hole oval (at 0 27.94) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(R9-Pad2)") (pinfunction "LBatInput") (pintype "input") (tstamp e5f67f4a-c01b-4124-8ea1-0f52059211bb))
(pad "13" thru_hole oval (at 0 30.48) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "BATSIZE") (pinfunction "BatSize") (pintype "input") (tstamp 823ffed3-309a-458e-9952-42aaab096a32))
(pad "14" thru_hole oval (at 0 33.02) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "unconnected-(U1-Pad14)") (pinfunction "NC") (pintype "no_connect") (tstamp 382c7ed3-7e72-40e2-b95f-3f1832047138))
(pad "15" thru_hole oval (at 15.24 33.02) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "unconnected-(U1-Pad15)") (pinfunction "NC") (pintype "no_connect") (tstamp 9a181be9-1244-44c1-ba3c-930181fcfabd))
(pad "16" thru_hole oval (at 15.24 30.48) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "SYNC") (pinfunction "SYNC") (pintype "output") (tstamp c5121667-e296-4702-978c-96e30487f4ab))
(pad "17" thru_hole oval (at 15.24 27.94) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "Net-(U1-Pad17)") (pinfunction "CLK") (pintype "input") (tstamp ab73c0ff-3710-48c0-9a61-18f94af2f19a))
(pad "18" thru_hole oval (at 15.24 25.4) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "unconnected-(U1-Pad18)") (pinfunction "RifleGame2") (pintype "no_connect") (tstamp b5c32b6f-dabb-4ea7-9938-148d549f5320))
(pad "19" thru_hole oval (at 15.24 22.86) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-Pad19)") (pinfunction "RifleGame1") (pintype "no_connect") (tstamp ed17fac9-f596-4f2b-99aa-67870d3ae0fb))
(pad "20" thru_hole oval (at 15.24 20.32) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "TENNIS") (pinfunction "Tennis") (pintype "input") (tstamp 8237d246-c8b5-4187-8c6f-abbd6438db4c))
(pad "21" thru_hole oval (at 15.24 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "SOCCER") (pinfunction "Soccer") (pintype "input") (tstamp 2118abec-cb36-4b29-b837-ecb86244a6cc))
(pad "22" thru_hole oval (at 15.24 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "unconnected-(U1-Pad22)") (pinfunction "Squash") (pintype "no_connect") (tstamp be14d49a-5b3f-4af5-baa1-a691f8f2ebc6))
(pad "23" thru_hole oval (at 15.24 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "PRACTICE") (pinfunction "Practice") (pintype "input") (tstamp a1ae500c-31c6-4fbd-a9cf-b4d3e313d92e))
(pad "24" thru_hole oval (at 15.24 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "FIELDOUT") (pinfunction "FieldOutput") (pintype "output") (tstamp 284b21c7-27da-4e9c-8bac-e09e0e8b0a6f))
(pad "25" thru_hole oval (at 15.24 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "RESET") (pinfunction "RESET") (pintype "input") (tstamp 748c7d77-dd7b-4649-b23b-3e2c7442399f))
(pad "26" thru_hole oval (at 15.24 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "unconnected-(U1-Pad26)") (pinfunction "ShotInput") (pintype "no_connect") (tstamp de8b9dc6-61bb-4d01-9204-7b68a5b454ea))
(pad "27" thru_hole oval (at 15.24 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "unconnected-(U1-Pad27)") (pinfunction "HitInput") (pintype "no_connect") (tstamp dac8d683-05e6-4b61-bddf-8d4495f1af51))
(pad "28" thru_hole oval (at 15.24 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "unconnected-(U1-Pad28)") (pinfunction "NC") (pintype "no_connect") (tstamp 2b6ec0e6-c650-4915-adc3-e01c30fce4f0))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W15.24mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 70899403-6df1-4e2f-b66e-7621a12bf56f)
(at 102.88 71.115)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/9db5bacf-2e08-46c1-b0cb-fce6f1181764")
(attr through_hole)
(fp_text reference "U2" (at -3.82 0.005 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 387e216b-a5da-4531-9725-bc6e60bddff3)
)
(fp_text value "4072" (at 3.81 17.57) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8e8d9cf-62c1-4545-a278-df235c0c67e0)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d75d1a18-e1cd-40da-b846-e791b4311c66)
)
(fp_line (start 9.06 16.63) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 09d9b973-6515-4db0-b0d3-881bc5cd9a2d))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6079ef3f-00c3-4e03-aca7-bd2f87664ed0))
(fp_line (start -1.44 16.63) (end 9.06 16.63) (layer "F.SilkS") (width 0.12) (tstamp 6bb111c6-5ce8-4853-bf72-5f74a2454575))
(fp_line (start -1.44 -1.39) (end -1.44 16.63) (layer "F.SilkS") (width 0.12) (tstamp 9b45781e-6859-48ff-b7dd-a4e417af05d1))
(fp_line (start 1.56 -1.33) (end 1.56 16.57) (layer "F.SilkS") (width 0.12) (tstamp d6d37af8-1315-407e-b81f-93cf9c16717c))
(fp_line (start 6.06 16.57) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp db9bfc77-e655-4978-8edd-2f75c1974a10))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e94c112c-f000-446f-a95a-a4c3c2cb5acb))
(fp_line (start 1.56 16.57) (end 6.06 16.57) (layer "F.SilkS") (width 0.12) (tstamp ecb1fae4-be35-443e-8d4a-3ac0edf7ef38))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp fab9f373-6be1-499d-b18e-c75e75a5a4b6))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 60786197-b5e9-4cd9-82ac-edebc63ab646))
(fp_line (start -1.55 -1.6) (end -1.55 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 69a781e3-dee3-4820-a425-f8184e97106c))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp ad67055d-a4cb-46e5-9842-d9b226a0fc97))
(fp_line (start 9.15 16.85) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp c500f0f1-a19b-421a-90a7-039c5d8d72ea))
(fp_line (start -1.55 16.85) (end 9.15 16.85) (layer "F.CrtYd") (width 0.05) (tstamp db30b456-fa82-4641-a312-daae31adccda))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 012250fa-52ce-4e08-b57b-bc294dcca1f0))
(fp_line (start 8.89 16.57) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 200bb22f-20bc-4dd0-9f30-5423f59a7546))
(fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 304469c1-fe6a-4678-81a4-59dc7f5566a5))
(fp_line (start -1.27 -1.33) (end -1.27 16.57) (layer "F.Fab") (width 0.1) (tstamp 76e80347-94bf-4d38-969c-be7b4b1e78eb))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 8e9015bb-fb44-4de1-bde0-69faa411d094))
(fp_line (start -1.27 16.57) (end 8.89 16.57) (layer "F.Fab") (width 0.1) (tstamp 96d1b209-4e52-44c4-a21d-f95cba866608))
(fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp b71cd518-662c-4cf6-a2f7-f23b13872d3b))
(fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp ba9981a1-3d0f-48a0-8bfe-239b254a5eb1))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp d5c9a1dc-e6e1-4e41-93c0-6bf0b7c20fab))
(pad "1" thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(R10-Pad2)") (pintype "output") (tstamp 9f216678-9be1-4513-915e-ccb60a054bba))
(pad "2" thru_hole oval (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "BALLOUT") (pintype "input") (tstamp d3df1ffe-62ae-4e78-8d3b-2056c3a131a3))
(pad "3" thru_hole oval (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "FIELDOUT") (pintype "input") (tstamp 8eb347a0-e8f9-4ceb-a0a8-bfba2bfafbc3))
(pad "4" thru_hole oval (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "LPLAYEROUT") (pintype "input") (tstamp 1f2414b7-dc76-4e90-a58a-b3da4b250c79))
(pad "5" thru_hole oval (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "RPLAYEROUT") (pintype "input") (tstamp 0b54ec13-f1e9-4093-9a25-98ea482ca4aa))
(pad "6" thru_hole oval (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 90dc48ec-25f8-4e12-b8f4-252dfbc34228))
(pad "7" thru_hole oval (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 797b0ac7-fa37-440f-ac58-89d5479bb2c7))
(pad "8" thru_hole oval (at 7.62 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 73c377d8-9e93-4a69-8543-e206b57cf0db))
(pad "9" thru_hole oval (at 7.62 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "input") (tstamp 0f1e9da0-31b4-4e6d-b705-b7527dcb4f8d))
(pad "10" thru_hole oval (at 7.62 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "input") (tstamp 32b4533b-a442-4ae4-845a-31ea002be4e9))
(pad "11" thru_hole oval (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "input") (tstamp b8d0577d-ad80-4a8e-9f47-31b773616ba2))
(pad "12" thru_hole oval (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "SYNC") (pintype "input") (tstamp 7c0958e1-5e5d-45c5-9b8a-1595f8f25cdc))
(pad "13" thru_hole oval (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(R11-Pad2)") (pintype "output") (tstamp 472f8a19-dc64-4897-a086-65c9b27160c8))
(pad "14" thru_hole oval (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp a6f12135-ddf4-4a76-a83a-6a1ae969ba39))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 70b5c1fb-f1f5-4549-9205-640d51c5bb94)
(at 130.81 86.36 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/5347d1c2-e490-418b-89ab-ac65e95fb775")
(attr through_hole)
(fp_text reference "R10" (at 6.35 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce89bb73-d93f-42e4-82ab-39f6128a3fd8)
)
(fp_text value "330" (at 6.35 -2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41a897b6-829b-4fab-9285-0cc826c63443)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d08a2d11-8c61-4658-9d61-e53ad990b3dc)
)
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 4e08ecad-99fc-49ca-bfbc-305931fe8cfa))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 66d94e6f-3c6a-4ebc-a25b-f845239629c7))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 6e4eaa1e-33ba-42aa-9281-94f0bd93a55c))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 8ce7961a-e162-41ce-bf21-9e4173f1d071))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp ed662524-c404-4af6-9d29-406989c32aba))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp f7e8c28b-787a-4ede-87a6-a2b45a94bcdd))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp bfe444ba-c516-4589-bfa1-22dde45307d9))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp e0d768c5-aab0-45eb-8191-22ebe203957c))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp efe67723-3e1f-4a84-b2f3-705f44898df8))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp fffb28db-395d-4586-98ec-02d4dd165c71))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 299015d1-54fd-4c7a-952c-711f668676e7))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 4805ac05-a9d2-44af-a675-19e925ab6da6))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 4bf491e9-718b-4545-be7b-549b5b31e8c3))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 4c08305f-712f-4be9-9892-3ed01d867279))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp e805e85b-42f6-4d2a-960c-10c8160c45ca))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp f9015763-9d0e-48d0-8cdc-9e75374ab8c7))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(R10-Pad1)") (pintype "passive") (tstamp dc9d2cc5-e05c-4b78-8dbc-658d4317169b))
(pad "2" thru_hole oval (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(R10-Pad2)") (pintype "passive") (tstamp e206606f-c4e2-47d5-8669-2357d258c66b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 71cc391d-2b96-4b7e-b19a-bcb51fe3f5fa)
(at 118.11 55.88)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/6c35df08-9961-41aa-9741-de19478b20d9")
(attr through_hole)
(fp_text reference "R6" (at 6.35 -2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb40efb5-7ee1-4cb8-927b-434c8d97627f)
)
(fp_text value "75" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2139fd74-d7e3-493c-a207-a024f5b64d1f)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23fcb77f-ab54-4ab0-b026-18af1629cc94)
)
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 02225587-3c1b-4c3b-85b2-156ec4ef7806))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 3e14703c-36f3-4c9e-a410-2d43995e6d11))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 5daad541-70c0-41a9-934f-279a5e8c76e9))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp b2f45670-95e3-42bd-8f1d-7ddeaf2a8ca8))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp d7d0b120-0597-4565-a711-6f30d856b8f5))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp f62a9a8e-bd47-4db2-822e-35cd2b8277ec))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5a43d133-16b6-4201-91f9-22ec4ad7446c))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 81b34eee-7e07-45d1-8d6f-6899940e3d5e))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 9fcf6606-0403-4dc4-9fcb-6cc28662dbc8))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp a730bb23-1443-4301-b0bf-cd888061d17b))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 65d85bfd-e798-49a8-b9cf-de71bd5ffb58))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp a73b63bf-6e6d-4044-ae4d-7e44099fcba1))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp b9c0f316-0d38-42c8-9c50-497e89096945))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp cc39909f-adfe-4e27-9cdd-29e3deae2543))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp ed00ba0d-9486-4238-af37-8c7dd78ae24b))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp f0f75d27-27bd-4f79-bc0b-8732930dbd7b))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "passive") (tstamp e48522c6-8763-4417-a27e-8ee471fe7cb9))
(pad "2" thru_hole oval (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "Net-(J3-Pad2)") (pintype "passive") (tstamp e41b89c3-5ee8-4442-af55-e9d6b895744c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_BarrelJack:BarrelJack_CUI_PJ-063AH_Horizontal" (layer "F.Cu")
(tedit 5B0886BD) (tstamp 74756b86-8c5b-406c-9563-a31c60d4e041)
(at 139.28 88.9 90)
(descr "Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf")
(tags "barrel jack cui dc power")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/109911c3-e593-4c6a-a30c-7a8f680bff0c")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65017093-b319-4b62-9bfa-2fa385523c17)
)
(fp_text value "Power" (at 0 13 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5c1ecef-65b5-43eb-8d6a-419681a249e2)
)
(fp_text user "${REFERENCE}" (at 0 5.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d3deb30-861b-481d-beae-ce82ef7da4d3)
)
(fp_line (start 5.11 12.11) (end -5.11 12.11) (layer "F.SilkS") (width 0.12) (tstamp 56b05baf-b1ff-4f0d-aa43-ff878546dd79))
(fp_line (start -5.11 -1.11) (end -2.3 -1.11) (layer "F.SilkS") (width 0.12) (tstamp 602230cb-1790-4350-9038-c319d53ce11e))
(fp_line (start 5.11 -1.11) (end 5.11 4.95) (layer "F.SilkS") (width 0.12) (tstamp 67e022da-497a-485a-84e4-c6b1aacf748b))
(fp_line (start 2.3 -1.11) (end 5.11 -1.11) (layer "F.SilkS") (width 0.12) (tstamp 9883058c-c7b6-4de5-80ba-79315eeca604))
(fp_line (start -5.11 12.11) (end -5.11 9.05) (layer "F.SilkS") (width 0.12) (tstamp c79b958a-14d9-4c1a-bc6d-6d0249fcdaeb))
(fp_line (start 5.11 9.05) (end 5.11 12.11) (layer "F.SilkS") (width 0.12) (tstamp cb4263ab-571a-4616-8c78-94444edbe25b))
(fp_line (start -1 -1.3) (end 1 -1.3) (layer "F.SilkS") (width 0.12) (tstamp e22f1a48-0cb6-4c82-b180-fd50d13f04ce))
(fp_line (start -5.11 4.95) (end -5.11 -1.11) (layer "F.SilkS") (width 0.12) (tstamp f9c34eeb-bf8c-4316-b76c-d471d26bf04e))
(fp_line (start -6 -1.5) (end -6 12.5) (layer "F.CrtYd") (width 0.05) (tstamp 47557ee0-4827-4c3c-bd15-3a43de0afdeb))
(fp_line (start 6 -1.5) (end -6 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4c4715fc-ae65-4b88-b09b-c626d1fd2926))
(fp_line (start -6 12.5) (end 6 12.5) (layer "F.CrtYd") (width 0.05) (tstamp de6b7932-851a-451a-9a69-984a02febcd0))
(fp_line (start 6 12.5) (end 6 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e2e12dd7-453c-40fb-bc43-70365c4bfabb))
(fp_line (start -1 -1) (end 0 0) (layer "F.Fab") (width 0.1) (tstamp 048b8079-180a-48a2-88b4-b568cc5b1b9f))
(fp_line (start 5 -1) (end 5 12) (layer "F.Fab") (width 0.1) (tstamp 18885e2c-9746-4d28-aad7-1da2ee05504e))
(fp_line (start 5 12) (end -5 12) (layer "F.Fab") (width 0.1) (tstamp 6817532b-314b-40db-af89-c52fd751eafb))
(fp_line (start 1 -1) (end 5 -1) (layer "F.Fab") (width 0.1) (tstamp 7ed798d4-caae-4fa2-9b58-5311a33afead))
(fp_line (start -5 -1) (end -1 -1) (layer "F.Fab") (width 0.1) (tstamp c3ac61fb-68d9-467a-8d5f-96b2bb1292bd))
(fp_line (start -5 12) (end -5 -1) (layer "F.Fab") (width 0.1) (tstamp f230a106-4367-4d31-b4a5-6f66f3fa4941))
(fp_line (start 0 0) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp ffad0792-074a-46c0-8db0-10421720d72f))
(pad "" np_thru_hole circle (at 0 9 90) (size 1.6 1.6) (drill 1.6) (layers *.Cu *.Mask) (tstamp c2f076b8-04ed-4024-a6ae-52859f071779))
(pad "1" thru_hole rect (at 0 0 90) (size 4 2) (drill oval 3 1) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "passive") (tstamp 8e0686e7-5a5a-4a0e-a1aa-0dde1cf039e9))
(pad "2" thru_hole oval (at 0 6 90) (size 3.3 2) (drill oval 2.3 1) (layers *.Cu *.Mask)
(net 42 "Net-(J4-Pad2)") (pintype "passive") (tstamp dcecb215-49f9-4667-8b1e-049cad1a35db))
(pad "MP" thru_hole oval (at -4.5 7 90) (size 2 3.5) (drill oval 1 2.5) (layers *.Cu *.Mask) (tstamp 1786e4fa-03c2-40e3-8f3e-c7319f4c5cb7))
(pad "MP" thru_hole oval (at 4.5 7 90) (size 2 3.5) (drill oval 1 2.5) (layers *.Cu *.Mask) (tstamp 49330e0a-34ab-497d-8198-dec0c76ac218))
(model "${KICAD6_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_CUI_PJ-063AH_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 7690973b-dbe4-4842-9486-581d79274792)
(at 121.92 96.52)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/d3be3387-9fd5-4d8f-b78c-6476cd835b8c")
(attr through_hole)
(fp_text reference "U3" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eb0158e-08b1-42b4-adbb-326edb42a36a)
)
(fp_text value "4001" (at 3.81 17.57) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e05a444e-8004-4880-9cfe-0822067b5ac4)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ada0121-c3c9-4f45-a422-4f16ca0563a3)
)
(fp_line (start 6.06 16.57) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2389868c-45da-4174-8306-07887aca4daf))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2b716e33-40b7-4959-9316-52b98b0b9b49))
(fp_line (start 1.56 16.57) (end 6.06 16.57) (layer "F.SilkS") (width 0.12) (tstamp 3556f420-a8df-4cb8-b6f7-e8948b3b5e41))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 86afc6e2-fa0c-454a-a5a1-9cc932db469c))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 9eb18df4-9afd-480d-a997-2d9887909ca5))
(fp_line (start 9.06 16.63) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp a4031189-169d-4d7d-a935-bcf64b3817f9))
(fp_line (start 1.56 -1.33) (end 1.56 16.57) (layer "F.SilkS") (width 0.12) (tstamp b9375eb7-7c8b-4643-a6f6-e241f28c8973))
(fp_line (start -1.44 16.63) (end 9.06 16.63) (layer "F.SilkS") (width 0.12) (tstamp ec6b737d-3c16-4334-bde4-d26541f61479))
(fp_line (start -1.44 -1.39) (end -1.44 16.63) (layer "F.SilkS") (width 0.12) (tstamp f93f83b7-277f-4948-85ae-b0223aea1d1f))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 874f1135-0859-476e-a9d0-1255ef8d7df9))
(fp_line (start -1.55 -1.6) (end -1.55 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 8169d54f-7cb0-4772-9ae2-84071238b8bb))
(fp_line (start -1.55 16.85) (end 9.15 16.85) (layer "F.CrtYd") (width 0.05) (tstamp a95e640b-4e1d-4b51-b243-f53a339c68b7))
(fp_line (start 9.15 16.85) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp f363ca09-5d88-4653-9ecb-27e20da506bf))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp f9e1270d-3307-4db6-b31b-db69d800b619))
(fp_line (start 8.89 16.57) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 05367071-3555-4b34-a91d-de6113e8b3c2))
(fp_line (start -1.27 -1.33) (end -1.27 16.57) (layer "F.Fab") (width 0.1) (tstamp 0adfb535-e83a-4def-8010-6aaf9afaee9f))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 315d5cf7-d62b-4f4e-bb65-2edc0abb5623))
(fp_line (start -1.27 16.57) (end 8.89 16.57) (layer "F.Fab") (width 0.1) (tstamp 5196ccc7-54f9-42d7-9445-58ac11afe086))
(fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp 7dc5b230-fd3d-498c-8ce3-6188406a8fac))
(fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8c6c0c3e-9886-4d7f-a947-b541a1f932b8))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 99786672-a03b-45b8-9cb7-9a5f910b004a))
(fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp b8f47c86-325f-47ef-8a6d-3f74589d730a))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp fb2bd804-7c89-40a2-936a-46f9b6328a26))
(pad "1" thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C2-Pad1)") (pintype "input") (tstamp ffcdf4d9-b288-41cd-893a-6ec8fe9d56d3))
(pad "2" thru_hole oval (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C2-Pad1)") (pintype "input") (tstamp 712ffa03-117d-4c7e-b339-76bc8daa242b))
(pad "3" thru_hole oval (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R1-Pad2)") (pintype "output") (tstamp 89c4f08e-2722-4f43-ad39-833cc5cc840b))
(pad "4" thru_hole oval (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "Net-(U1-Pad17)") (pintype "output") (tstamp 5854851f-88c0-4085-8a5e-5032841e8a20))
(pad "5" thru_hole oval (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R1-Pad2)") (pintype "input") (tstamp 2ffa1c79-9843-4294-b909-1452501e7faa))
(pad "6" thru_hole oval (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(R1-Pad2)") (pintype "input") (tstamp 5ca7751b-df00-4b39-be39-1d9d276198c7))
(pad "7" thru_hole oval (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 41056c8b-4a3b-4ccf-aa9f-ba3f117eb9e5))
(pad "8" thru_hole oval (at 7.62 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 2fd2b441-0f56-4fe4-bc32-fa658ca245c2))
(pad "9" thru_hole oval (at 7.62 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 4bc163e6-266f-441d-883a-93d5fc850426))
(pad "10" thru_hole oval (at 7.62 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 4ef80b67-c62c-4cb5-b554-91fec5bb7b50))
(pad "11" thru_hole oval (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 87d27cd1-4a57-4fb7-ab9f-f8b8f9ad482c))
(pad "12" thru_hole oval (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 92c42b14-b0b2-42e9-b3bd-3184d2242984))
(pad "13" thru_hole oval (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp e019e21d-0950-4b9c-afe9-e2bc13fd766c))
(pad "14" thru_hole oval (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp d9870b20-cd1d-4462-89c1-367145f34897))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RCJ-044:CUI_RCJ-044" (layer "F.Cu")
(tedit 638CE479) (tstamp 7b3293d4-0f83-453f-bef6-0b12f4274cb3)
(at 144.78 60.96)
(property "MANUFACTURER" "CUI Devices")
(property "MAXIMUM_PACKAGE_HEIGHT" "11.6 mm")
(property "PARTREV" "1.02")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/f4e2d6db-8569-4aff-a03d-35f7f72112e9")
(attr through_hole)
(fp_text reference "J3" (at -2.825 -6.635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c989867-0e6a-4467-9280-16a3f2b06df0)
)
(fp_text value "RCJ-044" (at 0.985 6.635) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f42f7826-4a87-4aa5-b340-cfe9090dd903)
)
(fp_line (start -6 -2) (end -6 -5) (layer "F.SilkS") (width 0.127) (tstamp 10225fee-2d5f-4358-8f82-6766da88dafa))
(fp_line (start -6 5) (end -6 2) (layer "F.SilkS") (width 0.127) (tstamp 114531ff-854f-41c8-9b13-9f40e3636a21))
(fp_line (start -6 5) (end 1.98 5) (layer "F.SilkS") (width 0.127) (tstamp 3b490d70-4b4b-462a-aa81-b9d129674efa))
(fp_line (start -6 2) (end -5.6 2) (layer "F.SilkS") (width 0.127) (tstamp 70f1743b-ffd1-448f-ae24-d9b6a468a01d))
(fp_line (start -5.6 -2) (end -6 -2) (layer "F.SilkS") (width 0.127) (tstamp 80e0e1cd-e9e1-4e19-9c88-2338863ce4b4))
(fp_line (start -6 -5) (end 1.98 -5) (layer "F.SilkS") (width 0.127) (tstamp a8c25c91-0c8d-473a-881f-29c6966a4b3f))
(fp_line (start -5.6 2) (end -5.6 1.17) (layer "F.SilkS") (width 0.127) (tstamp ad3f83e3-5df1-4eb1-9404-7468f1f1072f))
(fp_line (start 4 3) (end 4 -3) (layer "F.SilkS") (width 0.127) (tstamp aedccb1e-782c-4ea8-aea4-bfbe36bf8fa2))
(fp_line (start -5.6 -1.17) (end -5.6 -2) (layer "F.SilkS") (width 0.127) (tstamp ee4f2080-7ce7-42b2-ae7f-9c27004cf74b))
(fp_circle (center 0 5.513) (end 0.1 5.513) (layer "F.SilkS") (width 0.2) (fill none) (tstamp ede1949f-95f1-407e-95ce-f0b28b58ce88))
(fp_line (start 4 3.35) (end 2.3 3.35) (layer "Edge.Cuts") (width 0.01) (tstamp 227f2b25-2767-4fc4-a77f-07e605416892))
(fp_line (start 2.3 -5.15) (end 2.3 -3.35) (layer "Edge.Cuts") (width 0.01) (tstamp 5a8eddc6-88ca-45f8-bb44-8562fecbfd5e))
(fp_line (start 2.3 5.15) (end 4 5.15) (layer "Edge.Cuts") (width 0.01) (tstamp 6f1b349d-73a5-4b66-a73a-ca8be15a57de))
(fp_line (start 2.3 -3.35) (end 4 -3.35) (layer "Edge.Cuts") (width 0.01) (tstamp 748f38e8-5176-4efe-8e57-28516200e800))
(fp_line (start 4 -3.35) (end 4 -5.15) (layer "Edge.Cuts") (width 0.01) (tstamp 969a6b40-654e-4f6b-b72e-e0b4127e712f))
(fp_line (start 2.3 3.35) (end 2.3 5.15) (layer "Edge.Cuts") (width 0.01) (tstamp d8120928-ad05-43c4-918c-3c5dc1928bf9))
(fp_line (start 4 -5.15) (end 2.3 -5.15) (layer "Edge.Cuts") (width 0.01) (tstamp dbd3c38b-cd7e-4fe0-a6e1-0c605cfed2e8))
(fp_line (start 4 5.15) (end 4 3.35) (layer "Edge.Cuts") (width 0.01) (tstamp fb0c0c13-7157-49ff-a218-e98cbf1af5f0))
(fp_line (start 13.75 4.4) (end 13.75 -4.4) (layer "F.CrtYd") (width 0.05) (tstamp 00a94d26-c010-41e1-a598-2c66335cb292))
(fp_line (start 2.05 5.4) (end 4.25 5.4) (layer "F.CrtYd") (width 0.05) (tstamp 10c04b26-bfb3-480c-b448-1eeb6a983bb3))
(fp_line (start 4.25 5.4) (end 4.25 4.4) (layer "F.CrtYd") (width 0.05) (tstamp 299bd29a-18fb-4aaa-b98c-b3cd6773fe77))
(fp_line (start -6.45 5.25) (end 2.05 5.25) (layer "F.CrtYd") (width 0.05) (tstamp 5bad3c90-b6dd-4e12-9c4a-1f671e27a36c))
(fp_line (start 4.25 -5.4) (end 2.05 -5.4) (layer "F.CrtYd") (width 0.05) (tstamp 636e5e96-d1f3-457d-9c46-a11f8b1fd5c2))
(fp_line (start 2.05 5.25) (end 2.05 5.4) (layer "F.CrtYd") (width 0.05) (tstamp 7891a56f-a3d3-40c8-9ac9-f370305eb3e3))
(fp_line (start 2.05 -5.4) (end 2.05 -5.25) (layer "F.CrtYd") (width 0.05) (tstamp bfc1bb86-6b03-48b3-9a20-8d0a7ef6bcd4))
(fp_line (start -6.45 -5.25) (end -6.45 5.25) (layer "F.CrtYd") (width 0.05) (tstamp e1e1c647-7409-4a06-aa70-6cbfcd8e7d54))
(fp_line (start 13.75 -4.4) (end 4.25 -4.4) (layer "F.CrtYd") (width 0.05) (tstamp e502c75d-c685-4729-a8ce-b7e01267980d))
(fp_line (start 4.25 4.4) (end 13.75 4.4) (layer "F.CrtYd") (width 0.05) (tstamp e9f7f154-2df7-4be4-a977-5b6d17b7e1f4))
(fp_line (start 4.25 -4.4) (end 4.25 -5.4) (layer "F.CrtYd") (width 0.05) (tstamp f2187a40-c9e8-4c8f-843f-821a72d8089f))
(fp_line (start 2.05 -5.25) (end -6.45 -5.25) (layer "F.CrtYd") (width 0.05) (tstamp fc338c1b-c10c-4932-a29c-76c8bf53a3b6))
(fp_line (start -5.6 2) (end -5.6 -2) (layer "F.Fab") (width 0.127) (tstamp 182f164d-0e28-4a9a-ace1-753e8fa81dee))
(fp_line (start -6 -2) (end -6 -5) (layer "F.Fab") (width 0.127) (tstamp 1d77f09d-3b8c-4e76-9eab-c1cdd0562a0d))
(fp_line (start -6 2) (end -5.6 2) (layer "F.Fab") (width 0.127) (tstamp 269d3eaa-6e7f-4468-952c-b54c6e91ab46))
(fp_line (start -6 -5) (end 4 -5) (layer "F.Fab") (width 0.127) (tstamp 2e7e35c3-534c-474b-809e-e60d59df4dd2))
(fp_line (start 4 5) (end -6 5) (layer "F.Fab") (width 0.127) (tstamp 337b0b2d-0d5c-4ed6-a0f2-9fb6681838d5))
(fp_line (start 4 -4.15) (end 12.91 -4.15) (layer "F.Fab") (width 0.127) (tstamp 5bfb895c-f1c3-4d99-99a9-52d3677160a2))
(fp_line (start 4 -5) (end 4 -4.15) (layer "F.Fab") (width 0.127) (tstamp 6159db53-7b18-4ffd-84c1-8dfee3fe1e67))
(fp_line (start -5.6 -2) (end -6 -2) (layer "F.Fab") (width 0.127) (tstamp 65c52bf4-361b-4ad2-9ca9-6bc29c657e32))
(fp_line (start 13.5 -3.56) (end 13.5 3.76) (layer "F.Fab") (width 0.127) (tstamp 684a6eb8-a855-43c4-9e92-3206e0a013eb))
(fp_line (start 4 4.15) (end 4 5) (layer "F.Fab") (width 0.127) (tstamp 92050a99-8aba-47e4-a176-ee1b2915c313))
(fp_line (start -6 5) (end -6 2) (layer "F.Fab") (width 0.127) (tstamp 94154776-6833-4647-9106-4a890bf2b18f))
(fp_line (start 4 -4.15) (end 4 4.15) (layer "F.Fab") (width 0.127) (tstamp 9b1d868b-7cc3-4e0b-a4b6-b3359e7c85dc))
(fp_line (start 13.11 4.15) (end 4 4.15) (layer "F.Fab") (width 0.127) (tstamp df6deace-33ca-4be9-a72d-4fb48e7a0ec9))
(fp_arc (start 13.5 3.76) (mid 13.385772 4.035772) (end 13.11 4.15) (layer "F.Fab") (width 0.127) (tstamp 8b9efab2-2d59-4e02-9bd5-ac9c7de1ebd5))
(fp_arc (start 12.91 -4.15) (mid 13.327193 -3.977193) (end 13.5 -3.56) (layer "F.Fab") (width 0.127) (tstamp d2c60580-fa64-476c-a451-7ebc19484b05))
(fp_circle (center 0 5.513) (end 0.1 5.513) (layer "F.Fab") (width 0.2) (fill none) (tstamp 4cb61805-c41a-4053-9b66-5dc9fbfa07ba))
(pad "1" thru_hole oval locked (at 0 0) (size 1.95 3.9) (drill oval 1.3 2.5) (layers *.Cu *.Mask)
(net 7 "GND") (pintype "passive") (tstamp b97100d1-d7f4-4093-9a76-f08138913fa7))
(pad "2" thru_hole oval locked (at -4.5 0) (size 3.4 1.7) (drill oval 2.5 1) (layers *.Cu *.Mask)
(net 38 "Net-(J3-Pad2)") (pintype "passive") (tstamp 057b5183-3e9b-426b-a65d-b8f0ab60c41e))
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp 839ebed9-3319-4af3-b204-ef9220ece1be)
(at 109.22 60.96 -90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "Pong.kicad_sch")
(property "Sheetname" "")
(path "/e616bcf0-aa5c-4d10-a540-f0c095a4dbd9")
(attr through_hole)