-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalog2HDMI.kicad_pcb
21117 lines (21088 loc) · 852 KB
/
Analog2HDMI.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 146.911249 93.479228)
(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 "Analog2HDMI_gbr")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+5V")
(net 3 "Net-(J1-PadA5)")
(net 4 "unconnected-(J1-PadA6)")
(net 5 "/VS")
(net 6 "/HS")
(net 7 "/B|Pb")
(net 8 "/G|Y")
(net 9 "/R|Pr")
(net 10 "/AUDIO_R")
(net 11 "/AUDIO_L")
(net 12 "/SPDIF")
(net 13 "/~{RGBHV}")
(net 14 "/~{ANALOG}")
(net 15 "unconnected-(J1-PadA7)")
(net 16 "unconnected-(J1-PadA8)")
(net 17 "unconnected-(J1-PadB6)")
(net 18 "unconnected-(J1-PadB7)")
(net 19 "unconnected-(J1-PadB8)")
(net 20 "unconnected-(J2-Pad0)")
(net 21 "unconnected-(J2-Pad4)")
(net 22 "unconnected-(J2-Pad11)")
(net 23 "unconnected-(J2-Pad12)")
(net 24 "unconnected-(J2-Pad15)")
(net 25 "unconnected-(SW1-Pad1)")
(net 26 "unconnected-(SW2-Pad1)")
(net 27 "Net-(J1-PadB5)")
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tedit 5D3C0721) (tstamp 00000000-0000-0000-0000-000061b76933)
(at 103.01 60.435 -90)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b85fa9")
(attr smd)
(fp_text reference "J1" (at -6.333 -3.162 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a10e7213-1c98-4b04-aa9a-6a9c4f9be34b)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 5.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 697a2a42-69fd-436b-8fcf-3eb612b271b7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80f4181c-1361-4a50-8a42-29c05a576eb5)
)
(fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 11cfe17b-5d08-41bb-a069-160e7f431351))
(fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 1353279e-34e6-4bfb-a17a-aa12fc62c538))
(fp_line (start -4.7 2) (end -4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 46e69041-2c68-4e50-b952-4312bd028dba))
(fp_line (start -4.7 3.9) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 678454c7-572a-4ac9-a952-11504ff844e1))
(fp_line (start 4.7 2) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 91920d21-df1b-4888-98b3-16cd5420c917))
(fp_line (start -5.32 -5.27) (end -5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 03b950cc-d086-4154-951c-1c9f8a654f3a))
(fp_line (start 5.32 -5.27) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 264fb2aa-5efe-4c17-9303-ca0d68ae4eca))
(fp_line (start -5.32 4.15) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 52c4e66b-718b-4a2d-8a16-a62432c8fa45))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp d1a6949e-04d4-4c1c-b488-f7d497860452))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp 1e45069d-383c-4419-85d1-8330e71bdf59))
(fp_line (start -4.47 3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 4df27aa5-9436-4ee7-b203-34335a137d59))
(fp_line (start 4.47 -3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 8c22ea36-9264-4e4e-bc1e-e8b0c0168743))
(fp_line (start -4.47 -3.65) (end -4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp df12478a-c8e6-4c02-b2b1-9c7664222422))
(pad "" np_thru_hole circle locked (at -2.89 -2.6 270) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 1135a936-ede7-481e-a484-d3fab85b2d0e))
(pad "" np_thru_hole circle locked (at 2.89 -2.6 270) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 1f73c229-2255-4e1e-8f3a-baf695ef532e))
(pad "A1" smd rect locked (at -3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2c882f6d-c85e-4acb-b1f1-ae2afe5fe10a))
(pad "A4" smd rect locked (at -2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 9e58615c-92b8-45bb-84ed-001f427d2a1b))
(pad "A5" smd rect locked (at -1.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 11344e65-61ba-43a4-9419-489bb9f5afec))
(pad "A6" smd rect locked (at -0.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "unconnected-(J1-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp 0fc38bf5-0fca-4faa-b954-c141481de966))
(pad "A7" smd rect locked (at 0.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(J1-PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp b3b47613-de0c-4776-818a-daa1e6432be3))
(pad "A8" smd rect locked (at 1.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(J1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional") (tstamp 4392ac95-6c04-4b06-9436-aec60cb4db74))
(pad "A9" smd rect locked (at 2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 71c221bc-dca1-4693-a24f-871a5d27ff81))
(pad "A12" smd rect locked (at 3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 51ab285b-2404-43cd-b366-e266fe02d745))
(pad "B1" smd rect locked (at 3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp ecd4dcbe-5c59-4c0a-8539-b697a382d30a))
(pad "B4" smd rect locked (at 2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 4e97e277-9919-47dd-8b61-f52380b0d43c))
(pad "B5" smd rect locked (at 1.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "Net-(J1-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 73a085fe-f555-47ba-9eef-dfd71e3bdfa4))
(pad "B6" smd rect locked (at 0.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(J1-PadB6)") (pinfunction "D+") (pintype "bidirectional") (tstamp e15c9047-0424-44e4-8b04-6e3ff8196e41))
(pad "B7" smd rect locked (at -0.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "unconnected-(J1-PadB7)") (pinfunction "D-") (pintype "bidirectional") (tstamp fa82d4a7-5bf8-4ba1-84f7-394856af0853))
(pad "B8" smd rect locked (at -1.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(J1-PadB8)") (pinfunction "SBU2") (pintype "bidirectional") (tstamp 6caba216-7f89-4559-a20f-435fefc56032))
(pad "B9" smd rect locked (at -2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp cb132942-cd26-42fd-95ee-868602b53b37))
(pad "B12" smd rect locked (at -3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp f54c2c52-fa78-4539-a601-59415b7d6873))
(pad "S1" thru_hole oval locked (at -4.32 -3.13 270) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 20ec74bb-77d2-4b6f-a40c-c578cb255ece))
(pad "S1" thru_hole oval locked (at 4.32 -3.13 270) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 36a335a7-738b-4359-82a6-2e39adef3046))
(pad "S1" thru_hole oval locked (at -4.32 1.05 270) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp c8786aa9-3f18-48c7-bac6-4a3cce603fc6))
(pad "S1" thru_hole oval locked (at 4.32 1.05 270) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp db0ec5a3-8a8a-4b13-a60d-fbb1914e57fb))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "$(KICAD6_USER_SYMBOL_DIR)/../3dmodels/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.stp"
(offset (xyz 0 3.5 1.5))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "Button_Switch_THT:SW_CuK_OS102011MA1QN1_SPDT_Angled" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 00000000-0000-0000-0000-000061b769eb)
(at 102.616 70.866 -90)
(descr "CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf")
(tags "switch SPDT")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b69874")
(attr through_hole)
(fp_text reference "SW1" (at 6.096 -3.556 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2467f7d1-91b3-4bd2-abb6-f23c7361360b)
)
(fp_text value "SW_Push_SPDT" (at 1.7 7.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51bf7a25-09cb-458d-97aa-3ccc536fdded)
)
(fp_text user "${REFERENCE}" (at 2.3 1.7 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 3c290281-20de-41f6-ac4d-d67acc3d12c1)
)
(fp_line (start 4 2.3) (end 6.3 2.3) (layer "F.SilkS") (width 0.15) (tstamp 497c1702-992c-48f9-b649-d9d3911718ef))
(fp_line (start -2.3 2.3) (end -0.1 2.3) (layer "F.SilkS") (width 0.15) (tstamp 59069f0c-cc70-4d07-bc37-804dc3ea7664))
(fp_line (start -2.3 -2.3) (end 6.3 -2.3) (layer "F.SilkS") (width 0.15) (tstamp 95a7427e-6525-445e-a8b9-84d38111f181))
(fp_line (start -3.7 6.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 16b57ba4-054b-41f0-819a-51a68f73b524))
(fp_line (start 7.7 6.7) (end -3.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 594a9d50-9f15-4bcb-ba92-19c977730260))
(fp_line (start 7.7 -2.7) (end 7.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 7e967aeb-4479-4720-ba3c-6df2a32c60ab))
(fp_line (start -3.7 -2.7) (end 7.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp f4aab422-c542-43e3-8476-eae6a2df1847))
(fp_line (start 0 6.2) (end 0 2.2) (layer "F.Fab") (width 0.1) (tstamp 044f7c79-a10c-473e-9b27-a59c295ffdf1))
(fp_line (start -2.3 2.2) (end 6.3 2.2) (layer "F.Fab") (width 0.1) (tstamp 3e4fa335-b4ad-42d3-b963-d6ba403b12bd))
(fp_line (start 2 6.2) (end 0 6.2) (layer "F.Fab") (width 0.1) (tstamp 5e51cd7d-dce9-4bbf-b1e2-8712a52ce40d))
(fp_line (start 2 2.2) (end 2 6.2) (layer "F.Fab") (width 0.1) (tstamp 970604e1-e3af-403e-8d4a-19c9dbd6bf38))
(fp_line (start 6.3 2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp cff4e32b-58a6-4e66-8953-bf4ced4fdee8))
(fp_line (start -2.3 -2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp de09fd1a-26a8-4769-af3f-9cd5e161dd50))
(fp_line (start -2.3 -2.2) (end -2.3 2.2) (layer "F.Fab") (width 0.1) (tstamp f1754aad-ec19-42a0-abcb-4913d5091802))
(pad "" thru_hole oval locked (at 6.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 1316ffae-54b5-461f-a1c3-c1dcd4a8204c))
(pad "" thru_hole oval locked (at -2.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 5292f98b-2c83-4c64-93e5-363a90dff236))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 25 "unconnected-(SW1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 3d517e64-c57c-4b63-ac24-3a91be578050))
(pad "2" thru_hole oval locked (at 2 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 13 "/~{RGBHV}") (pinfunction "B") (pintype "passive") (tstamp ed741df9-51b8-4ca6-86fc-56edf0e7ec8b))
(pad "3" thru_hole oval locked (at 4 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "C") (pintype "passive") (tstamp 2f6ff2cb-c1c6-4a04-b4e8-f633c0bc46bc))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "$(KICAD6_USER_SYMBOL_DIR)/../3dmodels/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.stp"
(offset (xyz -2.25 -2.25 4.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_CuK_OS102011MA1QN1_SPDT_Angled" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 00000000-0000-0000-0000-000061b76a03)
(at 102.616 84.836 -90)
(descr "CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf")
(tags "switch SPDT")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b6a696")
(attr through_hole)
(fp_text reference "SW2" (at 6.35 -3.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c0dc6f1-5f68-4cef-b58d-9e7c22be5cc8)
)
(fp_text value "SW_Push_SPDT" (at 1.7 7.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c2060be-3fa9-499b-b71b-36291f0bcaa4)
)
(fp_text user "${REFERENCE}" (at 2.3 1.7 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 67f9b3bf-6a58-46de-bd3f-889d20b5ab94)
)
(fp_line (start -2.3 -2.3) (end 6.3 -2.3) (layer "F.SilkS") (width 0.15) (tstamp 06b3ddc6-f223-4c67-be11-cd55ca91c6ca))
(fp_line (start -2.3 2.3) (end -0.1 2.3) (layer "F.SilkS") (width 0.15) (tstamp 504320bd-cfa7-4952-b386-fafd8ac8a19a))
(fp_line (start 4 2.3) (end 6.3 2.3) (layer "F.SilkS") (width 0.15) (tstamp f488e431-44e6-4c3b-b784-b22fbf6c9f9e))
(fp_line (start -3.7 6.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 37ba5092-40c8-4846-9918-61689070af38))
(fp_line (start 7.7 6.7) (end -3.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 4924a752-cd9f-47c4-9844-b55324c55159))
(fp_line (start 7.7 -2.7) (end 7.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp c3a56073-2271-41b3-979b-770739878d07))
(fp_line (start -3.7 -2.7) (end 7.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp f39cbdaa-7526-4d9a-801e-c86dc235a475))
(fp_line (start 2 6.2) (end 0 6.2) (layer "F.Fab") (width 0.1) (tstamp 50d65e93-702d-4ba8-9a3f-2303421ae781))
(fp_line (start -2.3 2.2) (end 6.3 2.2) (layer "F.Fab") (width 0.1) (tstamp 59c24544-dad1-4a19-a142-efde4f98c32f))
(fp_line (start 0 6.2) (end 0 2.2) (layer "F.Fab") (width 0.1) (tstamp 63064acd-9f8b-4107-bde9-40f5b0a7304c))
(fp_line (start 6.3 2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp d560d59e-193b-4157-a598-2712b0398f0b))
(fp_line (start -2.3 -2.2) (end -2.3 2.2) (layer "F.Fab") (width 0.1) (tstamp e5625f2f-35b3-4300-8687-f8ee31e46cf1))
(fp_line (start 2 2.2) (end 2 6.2) (layer "F.Fab") (width 0.1) (tstamp fadbcad7-c746-4352-b193-39bbb489224a))
(fp_line (start -2.3 -2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp fdc82cbe-6ec7-4791-90d7-4f2a6e34d96d))
(pad "" thru_hole oval locked (at 6.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 48093090-3d87-4cfe-af50-2822fcc2acbc))
(pad "" thru_hole oval locked (at -2.1 0 270) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp bcf4428f-3b5c-443b-b934-44196fa75e76))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 26 "unconnected-(SW2-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 9ff10973-5e01-4cd9-a874-6d63d600e66f))
(pad "2" thru_hole oval locked (at 2 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 14 "/~{ANALOG}") (pinfunction "B") (pintype "passive") (tstamp 3b06c8c9-37e4-4e5a-b663-c15bb45e342d))
(pad "3" thru_hole oval locked (at 4 0 270) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "C") (pintype "passive") (tstamp 74d1be10-4b5e-4ee2-9454-d63d3bb89bc5))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "$(KICAD6_USER_SYMBOL_DIR)/../3dmodels/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.stp"
(offset (xyz -2.25 -2.25 4.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061b77039)
(at 111.661249 59.179228 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b8f2c6")
(attr smd)
(fp_text reference "R1" (at -3.2575 -0.14) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7663fdb4-8770-4583-a874-ecce78dd9771)
)
(fp_text value "5k1" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eae91cba-d07c-496a-a67b-cd0a2f6e08aa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 83494f18-5d83-4ff8-b815-0e3e4e2deefe)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 056cef12-1384-4c87-9094-fd65a4fc9eeb))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp bd6ecc50-4475-4d56-b8a2-9140d4bda6fb))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 44280751-8788-4373-9bb1-cb4db481ef9d))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 85577c7d-90d5-464b-8c9d-231ae8ec5247))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c814aa21-9c46-4566-a094-0e8d80cc6be7))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp e45d9fa8-f0da-4361-b562-8f6805c2d992))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 12827a74-57a4-42ac-90ef-eb30a99dd2e5))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 31e4dccb-f02a-48f3-b05e-518f09273001))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 689e8e0a-7395-40c8-9a70-e2a038c22c49))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 81acb3b4-05e2-4b26-9943-763a8dc4daa1))
(pad "1" smd roundrect locked (at -1.4625 0 180) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 1 "GND") (pintype "passive") (tstamp 90468d0c-3aa7-4c21-90d1-fe4e5e330f04))
(pad "2" smd roundrect locked (at 1.4625 0 180) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 3 "Net-(J1-PadA5)") (pintype "passive") (tstamp 1a8d2671-ef5c-4a13-be45-276b7e3bc987))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.1mm" (layer "F.Cu")
(tedit 5B924765) (tstamp 00000000-0000-0000-0000-000061b7849b)
(at 184.661249 83.979228)
(descr "Mounting Hole 2.1mm, no annular")
(tags "mounting hole 2.1mm no annular")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061ba2ccc")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 0.09) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1de4501-e1b6-4942-b001-88ab83f4db7c)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db478544-8060-43ca-9476-dd90d3bbcf11)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed0567f2-593b-44ef-acd4-ca530eae3938)
)
(fp_circle (center 0 0) (end 2.1 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 73a6a009-f337-4955-97a4-ef652363f668))
(fp_circle (center 0 0) (end 2.35 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fdb7fcfb-d64b-413d-8ebf-123fd156b69c))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.1 2.1) (drill 2.1) (layers *.Cu *.Mask) (tstamp 58aeee1b-6523-4140-98c9-371e6047b257))
)
(footprint "MountingHole:MountingHole_2.1mm" (layer "F.Cu")
(tedit 5B924765) (tstamp 00000000-0000-0000-0000-000061b784cf)
(at 185 55)
(descr "Mounting Hole 2.1mm, no annular")
(tags "mounting hole 2.1mm no annular")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061ba2c47")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 0.118) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b621f56d-b1db-45b0-a11a-e034b1476ae3)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01ebb1b5-4c7a-4fd8-a863-f7885885459b)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7537aea0-b388-442a-aef3-c0c533ab4f03)
)
(fp_circle (center 0 0) (end 2.1 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp eb13127b-57f4-40ae-92df-580d5eb114d3))
(fp_circle (center 0 0) (end 2.35 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8edccde1-1622-4d2c-a78d-855f9cb558c8))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.1 2.1) (drill 2.1) (layers *.Cu *.Mask) (tstamp cd2e5225-5247-4632-9c13-2a6002e60f81))
)
(footprint "Connector_Coaxial:AV-8.4-9" (layer "F.Cu")
(tedit 6235B34E) (tstamp 00000000-0000-0000-0000-000061b7cc25)
(at 196 75.785)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b6d2d5")
(attr through_hole)
(fp_text reference "J6" (at 2.911249 -6.030772 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17351e56-0567-400c-b857-33ebfb1e9b1b)
)
(fp_text value "Conn_Coaxial" (at 0.25 6.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4b4dd5e-42a4-4627-8586-9eebeb529b8b)
)
(fp_line (start 4 -5) (end 4 -2.1) (layer "F.SilkS") (width 0.12) (tstamp 02c43930-2c0e-49d9-b811-155189160739))
(fp_line (start 4 -4.15) (end 12 -4.15) (layer "F.SilkS") (width 0.12) (tstamp 057f577a-da05-4652-b4f1-b1c06a61af8e))
(fp_line (start -7.5 5) (end -10 5) (layer "F.SilkS") (width 0.12) (tstamp 06f480c7-d638-416c-8c08-ed98d430fece))
(fp_line (start 4 -5) (end 1.5 -5) (layer "F.SilkS") (width 0.12) (tstamp 2e6e4da7-4138-4cfe-b625-b386e28a750a))
(fp_line (start -10 5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 67c7719e-37e3-4339-8047-6d0a6be74bdd))
(fp_line (start 4 5) (end 1.5 5) (layer "F.SilkS") (width 0.12) (tstamp 6cfd2195-958c-41c2-9ec2-1e9843064050))
(fp_line (start 13 -3.15) (end 13 3.15) (layer "F.SilkS") (width 0.12) (tstamp 8b250678-8232-4131-9946-a13ccccf913d))
(fp_line (start 4 2.1) (end 4 5) (layer "F.SilkS") (width 0.12) (tstamp 8c58b9c6-42fa-43ad-a456-e387b2c947c3))
(fp_line (start 3.75 -2.1) (end 3.75 2.1) (layer "F.SilkS") (width 0.12) (tstamp 8dd81648-430f-4328-9784-c8d9aad7b841))
(fp_line (start -7.5 -5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 908f8058-f18e-4794-8f26-b9e7a0a95f81))
(fp_line (start 4 -2.1) (end 3.75 -2.1) (layer "F.SilkS") (width 0.12) (tstamp a95cd55b-33bc-4004-8e6c-a8e74b14bb6b))
(fp_line (start 3.75 2.1) (end 4 2.1) (layer "F.SilkS") (width 0.12) (tstamp cea002a4-2d4e-4eb1-abfb-142158fc8b9d))
(fp_line (start 4 4.15) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp d7b9cdb2-7854-4bc2-a467-42f561874a99))
(fp_arc (start 13 3.15) (mid 12.707107 3.857107) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 02f85410-863e-48c8-849b-9fc5ad38babb))
(fp_arc (start 12 -4.15) (mid 12.707107 -3.857107) (end 13 -3.15) (layer "F.SilkS") (width 0.12) (tstamp fcd2433f-19be-49b3-b61b-3fdc25a10a62))
(pad "" np_thru_hole circle (at -6.5 0) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp b6d3e6b1-4fdb-4600-8339-e15317f74269))
(pad "" np_thru_hole circle (at 0 -3.75) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp c71f55ed-8b0d-4053-bda8-e1811b500d5c))
(pad "" np_thru_hole circle (at 0 3.75) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp fcecf13e-8e72-4ca0-b8fb-1d1a6268eff1))
(pad "1" thru_hole oval (at -8 5.25) (size 3.8 2.3) (drill oval 2.8 1.3) (layers *.Cu *.Mask)
(net 10 "/AUDIO_R") (pinfunction "In") (pintype "passive") (tstamp fe57d6c6-6a58-4e27-ae49-abe5c6360092))
(pad "2" thru_hole roundrect (at 0 0 270) (size 3.8 2.8) (drill oval 2.8 1.8) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp f3357485-b6db-4c56-9f2d-9071ae2e39a7))
(model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/AV-8.4-9.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "Connector_Coaxial:AV-8.4-9" (layer "F.Cu")
(tedit 6235B34E) (tstamp 00000000-0000-0000-0000-000061b7cc55)
(at 196 61.83)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b82cf8")
(attr through_hole)
(fp_text reference "J8" (at 2.961249 -6.150772 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd78c6a7-3c4b-4a75-826e-7c0a41e055de)
)
(fp_text value "Conn_Coaxial" (at 0.25 6.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67e4742a-b760-42fd-9522-be254fd4415e)
)
(fp_line (start 13 -3.15) (end 13 3.15) (layer "F.SilkS") (width 0.12) (tstamp 31fa6d01-f08a-43ea-8ee1-231130e6a24b))
(fp_line (start 4 5) (end 1.5 5) (layer "F.SilkS") (width 0.12) (tstamp 321c72f1-77bc-4420-a0b6-f30219eaa4c2))
(fp_line (start 3.75 2.1) (end 4 2.1) (layer "F.SilkS") (width 0.12) (tstamp 3e82fded-c5eb-4f43-9bae-b94627f95032))
(fp_line (start 4 4.15) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 435ead52-c169-443a-8062-5377c2062aaf))
(fp_line (start 4 -4.15) (end 12 -4.15) (layer "F.SilkS") (width 0.12) (tstamp 4d00ba0b-17dd-4236-93d3-4f80d52a01d2))
(fp_line (start -7.5 -5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 53d8783e-26ab-4615-9325-cb5c75f0fb47))
(fp_line (start -7.5 5) (end -10 5) (layer "F.SilkS") (width 0.12) (tstamp 6f351650-f7b7-4858-94c3-8f05440b4c8e))
(fp_line (start 4 -5) (end 1.5 -5) (layer "F.SilkS") (width 0.12) (tstamp 7b2842dc-85a2-45a3-ab4f-abecb6110de2))
(fp_line (start 3.75 -2.1) (end 3.75 2.1) (layer "F.SilkS") (width 0.12) (tstamp 9d7b1418-6c23-4392-bd3f-16d1b3bd9909))
(fp_line (start -10 5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp adc472b6-4ccf-4707-a522-ea736bab0160))
(fp_line (start 4 -2.1) (end 3.75 -2.1) (layer "F.SilkS") (width 0.12) (tstamp c0c42ae1-bb77-4061-9dbe-7d700002ef2b))
(fp_line (start 4 2.1) (end 4 5) (layer "F.SilkS") (width 0.12) (tstamp d5823300-6b02-4e88-bc17-6f4c3d13538e))
(fp_line (start 4 -5) (end 4 -2.1) (layer "F.SilkS") (width 0.12) (tstamp e9df2aa3-1084-4574-9b2a-3d92d0e416c5))
(fp_arc (start 13 3.15) (mid 12.707107 3.857107) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 03a8b23a-c991-47a6-b608-48bb34767196))
(fp_arc (start 12 -4.15) (mid 12.707107 -3.857107) (end 13 -3.15) (layer "F.SilkS") (width 0.12) (tstamp e158092a-b261-4092-8ebe-ce90f3128bdf))
(pad "" np_thru_hole circle (at 0 3.75) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp 2881b16f-9b95-4d0f-aae8-f18dc06e2414))
(pad "" np_thru_hole circle (at -6.5 0) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp 8b6e1462-8690-40c9-8c39-24bfd9390187))
(pad "" np_thru_hole circle (at 0 -3.75) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp ffa004b8-2d3e-4e9a-a384-eefbccb5d81c))
(pad "1" thru_hole oval (at -8 5.25) (size 3.8 2.3) (drill oval 2.8 1.3) (layers *.Cu *.Mask)
(net 12 "/SPDIF") (pinfunction "In") (pintype "passive") (tstamp 25ae00e7-d432-41ff-a53a-cf1dc3a4c65b))
(pad "2" thru_hole roundrect (at 0 0 270) (size 3.8 2.8) (drill oval 2.8 1.8) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 84ffbb13-b4ed-4870-b8de-b6d78fbf3794))
(model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/AV-8.4-9.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "Connector_Coaxial:AV-8.4-9" (layer "F.Cu")
(tedit 6235B34E) (tstamp 00000000-0000-0000-0000-000061b7cc85)
(at 196 89.83)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b6de4c")
(attr through_hole)
(fp_text reference "J7" (at 2.961249 -6.025772 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3b5c5a3-4144-434f-9164-ea5ac70dd05c)
)
(fp_text value "Conn_Coaxial" (at 0.25 6.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e355398f-3002-4484-856c-2436a52eab16)
)
(fp_line (start 3.75 2.1) (end 4 2.1) (layer "F.SilkS") (width 0.12) (tstamp 1571b9d4-6db3-4d13-8517-4e3c9ceea84e))
(fp_line (start -7.5 5) (end -10 5) (layer "F.SilkS") (width 0.12) (tstamp 27477966-69c3-4f44-adcc-e25c8b4658ce))
(fp_line (start 4 -5) (end 1.5 -5) (layer "F.SilkS") (width 0.12) (tstamp 2c884c24-451e-41aa-8de1-33376db18545))
(fp_line (start 4 2.1) (end 4 5) (layer "F.SilkS") (width 0.12) (tstamp 326ddd33-f728-4a12-8512-e44add3d6d0e))
(fp_line (start -7.5 -5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 44a799bd-0d3a-4a2b-87b4-10fa523aa7d6))
(fp_line (start 4 4.15) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 53b1f897-371c-47dd-959a-c072a27d4e74))
(fp_line (start 3.75 -2.1) (end 3.75 2.1) (layer "F.SilkS") (width 0.12) (tstamp 799fec8c-a4b9-49c3-8907-e99e4af365a9))
(fp_line (start -10 5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 8c280046-befe-4ad1-8124-a6c196c5f7d2))
(fp_line (start 4 5) (end 1.5 5) (layer "F.SilkS") (width 0.12) (tstamp 9696cec4-5e81-4cc1-8e56-49f0c994142f))
(fp_line (start 4 -2.1) (end 3.75 -2.1) (layer "F.SilkS") (width 0.12) (tstamp a7bfd492-ada0-410b-9cdd-2c8147aecfba))
(fp_line (start 13 -3.15) (end 13 3.15) (layer "F.SilkS") (width 0.12) (tstamp ac12336a-c2ac-40f8-b055-be8a5ff62426))
(fp_line (start 4 -5) (end 4 -2.1) (layer "F.SilkS") (width 0.12) (tstamp c4172cf6-6254-41bd-a204-b8f4c3d60fd6))
(fp_line (start 4 -4.15) (end 12 -4.15) (layer "F.SilkS") (width 0.12) (tstamp c4c300bc-e982-40ee-bc82-a4fa8a54a3a5))
(fp_arc (start 12 -4.15) (mid 12.707107 -3.857107) (end 13 -3.15) (layer "F.SilkS") (width 0.12) (tstamp 0ffc594a-8618-494a-a6a6-fa090f7832d2))
(fp_arc (start 13 3.15) (mid 12.707107 3.857107) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 880c680a-7e6c-48f7-8226-9c3889b584d9))
(pad "" np_thru_hole circle (at -6.5 0) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp 0a33330b-91f1-4bd4-bc6a-8038c3ef1e8d))
(pad "" np_thru_hole circle (at 0 3.75) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp 11d38456-0a53-43e3-ac05-4f7689b643bc))
(pad "" np_thru_hole circle (at 0 -3.75) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp b5f5179d-051c-4d34-be04-3c4219daac93))
(pad "1" thru_hole oval (at -8 5.25) (size 3.8 2.3) (drill oval 2.8 1.3) (layers *.Cu *.Mask)
(net 11 "/AUDIO_L") (pinfunction "In") (pintype "passive") (tstamp 8f3fe051-b904-48fe-a5e7-125eb0bf21f4))
(pad "2" thru_hole roundrect (at 0 0 270) (size 3.8 2.8) (drill oval 2.8 1.8) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 1bd2436a-c1e3-4d9c-8f2a-60f61e25d5fb))
(model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/AV-8.4-9.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "MountingHole:MountingHole_2.1mm" (layer "F.Cu")
(tedit 5B924765) (tstamp 00000000-0000-0000-0000-000061b7cf78)
(at 115 55)
(descr "Mounting Hole 2.1mm, no annular")
(tags "mounting hole 2.1mm no annular")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b9f7d4")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0.062 0.118) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec989f6a-bd30-4fe2-a39d-26b0c2f9967b)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf6a2fb6-301e-47f3-a4a0-9ef674598de9)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b844e201-b8ae-4f29-a5c5-b71aa7365157)
)
(fp_circle (center 0 0) (end 2.1 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 2a9921d8-2e97-4bc0-bd9d-9526e7d0051e))
(fp_circle (center 0 0) (end 2.35 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c601191d-f582-4c40-8ad8-05855d17c540))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.1 2.1) (drill 2.1) (layers *.Cu *.Mask) (tstamp 423c70a5-efcb-4550-a031-a19504279ae1))
)
(footprint "MountingHole:MountingHole_2.1mm" (layer "F.Cu")
(tedit 5B924765) (tstamp 00000000-0000-0000-0000-000061b7cfb5)
(at 115 85)
(descr "Mounting Hole 2.1mm, no annular")
(tags "mounting hole 2.1mm no annular")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061ba2bc2")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0.062 0.09) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7981509-627f-4763-b195-7ec7276f6ef0)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1de17b2-77f9-4731-89b1-0e00eaea67cd)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ced55ca-7dbd-4769-b59d-e902b8d19a52)
)
(fp_circle (center 0 0) (end 2.1 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 60118ea2-048a-4707-9ef6-b60f60ae831e))
(fp_circle (center 0 0) (end 2.35 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ac2f6069-10bd-47b1-9da6-30ef05a3aac0))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.1 2.1) (drill 2.1) (layers *.Cu *.Mask) (tstamp 661e63a6-57d4-4bd6-8435-e9e47baf2ef9))
)
(footprint "Connector_Coaxial:AV-8.4-9" (layer "F.Cu")
(tedit 6235B34E) (tstamp 00000000-0000-0000-0000-000061b7daf8)
(at 180.17 96 -90)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b6c766")
(attr through_hole)
(fp_text reference "J5" (at 2.929228 -6.116249) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89bddea0-e123-4afd-be16-6b7dd934bb45)
)
(fp_text value "Conn_Coaxial" (at 0.25 6.5 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ecc8176-4de0-4874-8e9f-e489ebc2bc85)
)
(fp_line (start -7.5 5) (end -10 5) (layer "F.SilkS") (width 0.12) (tstamp 2ead883a-2ef5-4441-a2ba-3751c5a3785b))
(fp_line (start 4 -5) (end 1.5 -5) (layer "F.SilkS") (width 0.12) (tstamp 3aa6e313-7972-4b5e-a4c8-3414c36a4b92))
(fp_line (start 4 4.15) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 43108d1f-6fab-4012-bb34-effc39df9879))
(fp_line (start 4 5) (end 1.5 5) (layer "F.SilkS") (width 0.12) (tstamp 5e15ca0e-7d6c-44fa-b0d0-fa5e423ae194))
(fp_line (start 4 -2.1) (end 3.75 -2.1) (layer "F.SilkS") (width 0.12) (tstamp 612da227-f4dc-426d-b00c-940d45a8aedd))
(fp_line (start 3.75 -2.1) (end 3.75 2.1) (layer "F.SilkS") (width 0.12) (tstamp 822f3262-e85b-4eee-ad38-bd8267590c95))
(fp_line (start -10 5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 85878c11-d4b5-4d11-a6be-f032d8348a4d))
(fp_line (start -7.5 -5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp a80327aa-cef0-4f3b-b4be-5dceece67053))
(fp_line (start 4 -4.15) (end 12 -4.15) (layer "F.SilkS") (width 0.12) (tstamp b653e7f3-279a-4cf7-9188-055533b287d4))
(fp_line (start 3.75 2.1) (end 4 2.1) (layer "F.SilkS") (width 0.12) (tstamp bb7cc2a0-fa88-41be-8756-4ed5d43529dc))
(fp_line (start 13 -3.15) (end 13 3.15) (layer "F.SilkS") (width 0.12) (tstamp cd065b82-0cf5-4208-b86e-c662ada48d95))
(fp_line (start 4 -5) (end 4 -2.1) (layer "F.SilkS") (width 0.12) (tstamp cf924a46-a8af-4eda-944f-d464493bb254))
(fp_line (start 4 2.1) (end 4 5) (layer "F.SilkS") (width 0.12) (tstamp ea2c53cb-494d-4021-882d-ab19155ad94f))
(fp_arc (start 12 -4.15) (mid 12.707107 -3.857107) (end 13 -3.15) (layer "F.SilkS") (width 0.12) (tstamp 30313d19-a7f5-41cb-b853-40d1cc09c957))
(fp_arc (start 13 3.15) (mid 12.707107 3.857107) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp a2240f71-3d3a-4a55-b741-43fc358d4155))
(pad "" np_thru_hole circle (at -6.5 0 270) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp 8ea6d60b-dcfd-430e-a709-9a9e8389cd2f))
(pad "" np_thru_hole circle (at 0 3.75 270) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp b01861f4-d8b4-4e4a-abe8-e79abd992746))
(pad "" np_thru_hole circle (at 0 -3.75 270) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp bf998e76-d7c2-4caa-b810-f7390a8dd86a))
(pad "1" thru_hole oval (at -8 5.25 270) (size 3.8 2.3) (drill oval 2.8 1.3) (layers *.Cu *.Mask)
(net 9 "/R|Pr") (pinfunction "In") (pintype "passive") (tstamp 93af4ed3-f074-4873-b513-7d2625e5fd96))
(pad "2" thru_hole roundrect (at 0 0 180) (size 3.8 2.8) (drill oval 2.8 1.8) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp dfa32f98-a4bd-402e-99a2-8dc183b112be))
(model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/AV-8.4-9.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "Connector_Coaxial:AV-8.4-9" (layer "F.Cu")
(tedit 6235B34E) (tstamp 00000000-0000-0000-0000-000061b7db58)
(at 152.17 96 -90)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b6ab79")
(attr through_hole)
(fp_text reference "J3" (at 2.879228 -6.141249) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8fbedd9-bbf3-4187-842a-3510bcba1e5f)
)
(fp_text value "Conn_Coaxial" (at 0.25 6.5 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d039efaa-7da5-4a1c-b849-1cadc9110e4a)
)
(fp_line (start 4 -2.1) (end 3.75 -2.1) (layer "F.SilkS") (width 0.12) (tstamp 20193e1f-fada-4c28-9cae-dcc1516a667c))
(fp_line (start 3.75 2.1) (end 4 2.1) (layer "F.SilkS") (width 0.12) (tstamp 281cba2a-9a0d-4ba9-ae02-4851a4d5ef54))
(fp_line (start -7.5 -5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 32b25f66-826b-47bc-9f26-eae4a5f0a5bf))
(fp_line (start 4 -4.15) (end 12 -4.15) (layer "F.SilkS") (width 0.12) (tstamp 38d5d713-b94e-4d55-b43a-1a75433f7985))
(fp_line (start 4 4.15) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 5591601a-0208-417f-b6e4-bd68e0c1316e))
(fp_line (start 13 -3.15) (end 13 3.15) (layer "F.SilkS") (width 0.12) (tstamp 71397e76-b6a2-431e-a781-9527506befc9))
(fp_line (start 4 2.1) (end 4 5) (layer "F.SilkS") (width 0.12) (tstamp 7869f947-883d-43de-ac85-51a8b8bdfb0f))
(fp_line (start 3.75 -2.1) (end 3.75 2.1) (layer "F.SilkS") (width 0.12) (tstamp ad0f7d9a-9abf-4866-abfe-c678d2624384))
(fp_line (start -7.5 5) (end -10 5) (layer "F.SilkS") (width 0.12) (tstamp af85d2f1-0a95-4326-a8f5-d4abec33b0ff))
(fp_line (start 4 5) (end 1.5 5) (layer "F.SilkS") (width 0.12) (tstamp b168ed7f-2c63-4dbc-90bf-bf3adb3795ed))
(fp_line (start 4 -5) (end 1.5 -5) (layer "F.SilkS") (width 0.12) (tstamp cd446b8a-c08c-42cd-a9a3-cf412885f2b4))
(fp_line (start -10 5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp d38c4111-b22d-4aa6-9f1e-02baca01bfee))
(fp_line (start 4 -5) (end 4 -2.1) (layer "F.SilkS") (width 0.12) (tstamp e5a6a0c6-b654-43a9-9bdb-35d265394583))
(fp_arc (start 13 3.15) (mid 12.707107 3.857107) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 5e6ca305-2b2a-4bbd-8304-3c766e1c0de3))
(fp_arc (start 12 -4.15) (mid 12.707107 -3.857107) (end 13 -3.15) (layer "F.SilkS") (width 0.12) (tstamp 6fd79d3f-e027-49e4-a286-deb8cd8d05de))
(pad "" np_thru_hole circle (at 0 -3.75 270) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp 3abc7938-d635-43a7-b2de-55708c908e10))
(pad "" np_thru_hole circle (at -6.5 0 270) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp c19a0aaa-a238-4547-b1b7-eb1d50b8a38e))
(pad "" np_thru_hole circle (at 0 3.75 270) (size 2.7 2.7) (drill 2.1) (layers F&B.Cu *.Mask) (tstamp ca14d0b0-2600-4ed2-a021-167444e07bec))
(pad "1" thru_hole oval (at -8 5.25 270) (size 3.8 2.3) (drill oval 2.8 1.3) (layers *.Cu *.Mask)
(net 8 "/G|Y") (pinfunction "In") (pintype "passive") (tstamp 23a4b9ee-966e-47a6-b50c-dfc53ee72eff))
(pad "2" thru_hole roundrect (at 0 0 180) (size 3.8 2.8) (drill oval 2.8 1.8) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp d3f99c02-22d0-4155-aa93-2eedfa8072cd))
(model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/AV-8.4-9.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "Analog2HDMI:Analog2HDMI" (layer "F.Cu")
(tedit 61B781B4) (tstamp 00000000-0000-0000-0000-000061b7dc43)
(at 150 67.96)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b67e9c")
(attr through_hole)
(fp_text reference "U1" (at 13.83 13.042) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a13f6b7-0736-4f87-b001-9b8c789e8b87)
)
(fp_text value "Analog2HDMI" (at -0.425 -5.845) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e793f7fb-062f-4ea8-bb84-440faa51c69e)
)
(fp_text user "GND" (at 7.875 15.955) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03d86575-73d3-443d-aeee-ab4224454f92)
)
(fp_text user "+5V" (at 9.2 9.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 104d2ea9-2986-4f32-af49-91118d92b39e)
)
(fp_text user "GND" (at -2.225 15.955) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 110979c7-1eea-415e-8ab4-b339d62f21ee)
)
(fp_text user "R" (at -8.4 10.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f51a2ee-802a-496d-93e6-8c33781b2f11)
)
(fp_text user "HS" (at -3.2 9.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2807793f-2348-49f9-9dc3-4463159e5569)
)
(fp_text user "B/Pb" (at 1.8 8.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2eb3d965-3dc5-45a2-901e-f2de9689248f)
)
(fp_text user "VS" (at -1 9.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d229441-82d7-469c-9682-8be5894f1650)
)
(fp_text user "L" (at -6.4 10.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5df6c0c4-33e8-4e86-9a4c-18a1e9839454)
)
(fp_text user "SPDIF" (at -10.8 8.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a01554d-d64d-47c5-9a2b-d667d94e7c2e)
)
(fp_text user "GND" (at -8.525 15.955) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb0458a5-8de3-402d-bc84-e7300939b3d3)
)
(fp_text user "G/Y" (at 4.2 9.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da2f181b-4558-4a27-9d56-3ca9a9750134)
)
(fp_text user "GND" (at 2.775 15.955) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbe619c4-c98d-4c55-8977-bcd55599895e)
)
(fp_text user "R/Pr" (at 6.4 9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff43067c-f13b-4bbb-abe0-731be03358e0)
)
(fp_poly (pts
(xy 8.5 -2)
(xy 3 -2)
(xy 3 0.5)
(xy 8.5 0.5)
(xy 8.5 6.5)
(xy -8.5 6.5)
(xy -8.5 3)
(xy -4.5 3)
(xy -4.5 0.5)
(xy -8.5 0.5)
(xy -8.5 -16.5)
(xy 8.5 -16.5)
) (layer "B.CrtYd") (width 0.1) (fill solid) (tstamp 3506b753-0d85-43ff-9318-6c29ee04b06a))
(fp_poly (pts
(xy 8.5 -2)
(xy 3 -2)
(xy 3 0.5)
(xy 8.5 0.5)
(xy 8.5 6.5)
(xy -8.5 6.5)
(xy -8.5 3)
(xy -4.5 3)
(xy -4.5 0.5)
(xy -8.5 0.5)
(xy -8.5 -16.5)
(xy 8.5 -16.5)
) (layer "F.CrtYd") (width 0.1) (fill solid) (tstamp ae1a6041-b452-4a9e-b238-b88c557878b9))
(fp_line (start 4.575 -0.145) (end 4.575 -1.445) (layer "F.Fab") (width 0.12) (tstamp 04c17a27-5fce-4ede-a895-d729d7bf56c0))
(fp_line (start 3.275 -1.445) (end 3.275 -1.245) (layer "F.Fab") (width 0.12) (tstamp 052f7e26-2e1d-4d02-b69a-aae707432848))
(fp_line (start -7.5 -7.845) (end -7.5 -19.995) (layer "F.Fab") (width 0.12) (tstamp 0b581ec6-19ce-4132-a34f-b057d6ca88bd))
(fp_line (start 1.5 -12) (end 1.5 -11) (layer "F.Fab") (width 0.12) (tstamp 0c71b5d8-a695-40fb-820d-59a5cec04f71))
(fp_line (start 3.275 -1.245) (end 4.375 -1.245) (layer "F.Fab") (width 0.12) (tstamp 0f340484-43f5-4e43-8a6d-4056e29d2348))
(fp_line (start -6 -13) (end -4 -13) (layer "F.Fab") (width 0.12) (tstamp 1635f522-4106-431e-87cd-0f568dc3816f))
(fp_line (start 3.275 -0.845) (end 4.075 -0.845) (layer "F.Fab") (width 0.12) (tstamp 1d155bda-0e98-4d29-8020-0ec506117ba0))
(fp_line (start -5.6 1.1) (end -5.6 1.9) (layer "F.Fab") (width 0.12) (tstamp 25462596-f958-41c6-b7fb-95a39e5abb30))
(fp_line (start -5.6 1.9) (end -5.7 1.9) (layer "F.Fab") (width 0.12) (tstamp 2a108d6d-73c9-427e-ac34-38a465eb83cc))
(fp_line (start -1.5 -11) (end -1.5 -12) (layer "F.Fab") (width 0.12) (tstamp 2a27ce45-9d61-48fd-991f-04c116cd65f4))
(fp_line (start 7.5 -7.845) (end 7.5 -19.995) (layer "F.Fab") (width 0.12) (tstamp 33a82f10-4417-4c64-86a9-b3ba692dd44c))
(fp_line (start -12.575 14.075) (end -12.575 -14.075) (layer "F.Fab") (width 0.12) (tstamp 3798c140-04fd-494f-aa13-bb990e502791))
(fp_line (start 3.275 -0.845) (end 3.275 -0.745) (layer "F.Fab") (width 0.12) (tstamp 3f3983e5-1ec5-4f7d-bd12-047f6604aa23))
(fp_line (start -5.2 1.1) (end -5.2 2.2) (layer "F.Fab") (width 0.12) (tstamp 3f3ddb2b-f15c-4cf9-a6b6-e71a653bfedb))
(fp_line (start -5.6 1.1) (end -5.7 1.1) (layer "F.Fab") (width 0.12) (tstamp 50c76261-991e-4f8e-b0e3-d44d86d66ff8))
(fp_line (start -5.2 2.2) (end -6.1 2.2) (layer "F.Fab") (width 0.12) (tstamp 52b8a34d-faa1-4525-80a1-ec50299c2f1b))
(fp_line (start -5.7 1.9) (end -5.7 1.1) (layer "F.Fab") (width 0.12) (tstamp 55488de3-b6f2-42b8-945c-a8a78c4c18a1))
(fp_line (start -6 -18) (end -6 -13) (layer "F.Fab") (width 0.12) (tstamp 5e959deb-602d-473b-baf3-ee8fe0124e81))
(fp_line (start -6.2 1.1) (end -6.2 2.3) (layer "F.Fab") (width 0.12) (tstamp 5eb66693-ab1b-4459-a77e-81bcb06ca4d6))
(fp_line (start 3.325 -1.345) (end 4.475 -1.345) (layer "F.Fab") (width 0.12) (tstamp 680ffb16-9f3a-4dd1-ae88-2fb80c87eb70))
(fp_line (start -9.575 -17.075) (end -7.5 -17.075) (layer "F.Fab") (width 0.12) (tstamp 687272a7-823c-45f1-9323-63f4d0c9f2e0))
(fp_line (start -5.1 2.3) (end -5.1 1.15) (layer "F.Fab") (width 0.12) (tstamp 6985d672-0b2c-4d30-85ce-fa4aa143d43e))
(fp_line (start 4.375 -0.345) (end 3.275 -0.345) (layer "F.Fab") (width 0.12) (tstamp 6d5aa90c-f562-4264-9798-f4d6d166d16a))
(fp_line (start -4 -18) (end -6 -18) (layer "F.Fab") (width 0.12) (tstamp 734d7fc0-16f5-46ac-9a62-d1aec48247ec))
(fp_line (start 4.475 -0.245) (end 3.375 -0.245) (layer "F.Fab") (width 0.12) (tstamp 755a8386-3d26-4db0-b886-29308c250852))
(fp_line (start 3.5 -12) (end 1.5 -12) (layer "F.Fab") (width 0.12) (tstamp 76011d54-0bab-4ab5-b2f3-dd59c9efa598))
(fp_line (start -6.1 1.1) (end -6.3 1.1) (layer "F.Fab") (width 0.12) (tstamp 776a4655-1925-4e3a-ae94-97f74e898314))
(fp_line (start -9.575 17.075) (end 9.575 17.075) (layer "F.Fab") (width 0.12) (tstamp 7e47f703-9790-4c34-9d14-1de39c308f06))
(fp_line (start 4 -13) (end 6 -13) (layer "F.Fab") (width 0.12) (tstamp 84813042-26a7-4fc2-9eb0-0358c5dee9f3))
(fp_line (start -6.1 2.2) (end -6.1 1.1) (layer "F.Fab") (width 0.12) (tstamp 862d2709-fd43-46fd-ad9e-c1425f03ecae))
(fp_line (start -6.3 1.1) (end -6.3 2.4) (layer "F.Fab") (width 0.12) (tstamp 888ff86d-eeb6-42bb-a8b9-8bba5d300088))
(fp_line (start -5 1.1) (end -5.2 1.1) (layer "F.Fab") (width 0.12) (tstamp 8eb9444f-6643-489b-8c83-9ba20cc4fb10))
(fp_line (start -5 2.4) (end -5 1.1) (layer "F.Fab") (width 0.12) (tstamp 8f40cd30-616e-41e2-bee9-266c3138b0af))
(fp_line (start 4.075 -0.845) (end 4.075 -0.745) (layer "F.Fab") (width 0.12) (tstamp a56fcb7d-4606-41ed-bac8-c8ff5c7bd3dc))
(fp_line (start -4 -13) (end -4 -18) (layer "F.Fab") (width 0.12) (tstamp a94f0f93-cbe4-4bc1-9579-6d37f43dc384))
(fp_line (start 3.5 -11) (end 3.5 -12) (layer "F.Fab") (width 0.12) (tstamp aa771205-6292-4441-84a3-ac3c95aaf4e1))
(fp_line (start 4.575 -1.445) (end 3.275 -1.445) (layer "F.Fab") (width 0.12) (tstamp b7d9f24b-59ab-4dfb-94fa-ece2e32a8a06))
(fp_line (start 4.475 -1.345) (end 4.475 -0.245) (layer "F.Fab") (width 0.12) (tstamp b99a20e3-f1f1-4651-a6ad-59a44837814b))
(fp_line (start -7.5 -19.995) (end 7.5 -19.995) (layer "F.Fab") (width 0.12) (tstamp b9a50e99-44bb-494d-87fb-f50af41bd4ef))
(fp_line (start 12.575 14.075) (end 12.575 -14.075) (layer "F.Fab") (width 0.12) (tstamp bab3fc61-7ffc-43fd-b7e1-a49971a5fd5e))
(fp_line (start 7.5 -17.075) (end 9.575 -17.075) (layer "F.Fab") (width 0.12) (tstamp c3a18306-5bae-458e-939c-7063afc78e86))
(fp_line (start -6.3 2.4) (end -5 2.4) (layer "F.Fab") (width 0.12) (tstamp d54c0731-b8c4-4021-8804-6c3c01de8f2f))
(fp_line (start 1.5 -11) (end 3.5 -11) (layer "F.Fab") (width 0.12) (tstamp d67c72c0-c93b-4cc5-b15d-acaf44e08394))
(fp_line (start -3.5 -11) (end -1.5 -11) (layer "F.Fab") (width 0.12) (tstamp df485b94-0569-4ae2-9b1f-7e08d191584c))
(fp_line (start 6 -18) (end 4 -18) (layer "F.Fab") (width 0.12) (tstamp e1287ef2-6c69-436b-b51d-a0060d989d21))
(fp_line (start 6 -13) (end 6 -18) (layer "F.Fab") (width 0.12) (tstamp e4c76785-6814-46b7-90ed-89a33aedcc92))
(fp_line (start 4 -18) (end 4 -13) (layer "F.Fab") (width 0.12) (tstamp e5a3e45b-0b8e-496d-ab1d-a9755e69ac61))
(fp_line (start 3.275 -0.345) (end 3.275 -0.145) (layer "F.Fab") (width 0.12) (tstamp eab9674d-6db3-4275-8671-ea5c126b9fa9))
(fp_line (start -1.5 -12) (end -3.5 -12) (layer "F.Fab") (width 0.12) (tstamp ebef5fc7-1829-43ef-a0a9-1cafd4377214))
(fp_line (start 4.075 -0.745) (end 3.275 -0.745) (layer "F.Fab") (width 0.12) (tstamp f2b45768-6fcb-46af-86c6-25bccaebb327))
(fp_line (start -3.5 -12) (end -3.5 -11) (layer "F.Fab") (width 0.12) (tstamp f6e654e6-0b62-44cf-aa6c-98db940c48e7))
(fp_line (start -7.5 -7.845) (end 7.5 -7.845) (layer "F.Fab") (width 0.12) (tstamp fa2bf2ca-bd10-466d-9e68-28cc68c7b620))
(fp_line (start -6.2 2.3) (end -5.1 2.3) (layer "F.Fab") (width 0.12) (tstamp fa5393d6-c3e4-4b31-a507-98a55f9f6a14))
(fp_line (start 3.275 -0.145) (end 4.575 -0.145) (layer "F.Fab") (width 0.12) (tstamp fb67d14e-a15c-45fa-a4d4-50654be68d2c))
(fp_line (start 4.375 -1.245) (end 4.375 -0.345) (layer "F.Fab") (width 0.12) (tstamp fe775beb-f6a9-44e7-b984-d6f0e072f7b9))
(fp_arc (start 9.575 -17.075) (mid 11.69632 -16.19632) (end 12.575 -14.075) (layer "F.Fab") (width 0.12) (tstamp 4e1b4aac-f1ba-407e-a97a-d075f081f049))
(fp_arc (start 12.575 14.075) (mid 11.69632 16.19632) (end 9.575 17.075) (layer "F.Fab") (width 0.12) (tstamp 89acb60d-ff72-405f-a1e3-fb0b108872c6))
(fp_arc (start -12.575 -14.075) (mid -11.69632 -16.19632) (end -9.575 -17.075) (layer "F.Fab") (width 0.12) (tstamp 89fa6ae9-d82b-496b-9f15-25d6bee56d23))
(fp_arc (start -9.575 17.075) (mid -11.69632 16.19632) (end -12.575 14.075) (layer "F.Fab") (width 0.12) (tstamp 93636442-a362-4bc1-9d36-1d279c0698f3))
(fp_circle (center -10.075 -14.075) (end -8.875 -14.075) (layer "F.Fab") (width 0.12) (fill none) (tstamp aa150034-db8e-4e55-b98f-05afdd8af91a))
(fp_circle (center 10.075 -14.075) (end 11.275 -14.075) (layer "F.Fab") (width 0.12) (fill none) (tstamp ea47d726-4587-414c-af79-8f543891f041))
(pad "" np_thru_hole circle locked (at 10.075 -14.075 90) (size 2.4 2.4) (drill 2.4) (layers *.Cu *.Mask) (tstamp 1fa150d9-4de3-4b9f-8fca-6651616614be))
(pad "" np_thru_hole circle locked (at -10.075 -14.075) (size 2.4 2.4) (drill 2.4) (layers *.Cu *.Mask) (tstamp 8c64c50b-8acd-44f2-8c5f-ba9201a3c7bd))
(pad "1" thru_hole circle locked (at -10.805 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 12 "/SPDIF") (pinfunction "SPDIF") (pintype "input") (tstamp d7fda904-08f2-46d0-8e07-896b262d7e46))
(pad "2" thru_hole circle locked (at -8.585 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 10 "/AUDIO_R") (pinfunction "R") (pintype "input") (tstamp cc96e2af-7657-4ad3-b12e-a025de438a67))
(pad "3" thru_hole circle locked (at -6.365 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 11 "/AUDIO_L") (pinfunction "L") (pintype "input") (tstamp 7e67823e-2810-490d-bd9b-8b337d7a4ad5))
(pad "4" thru_hole circle locked (at -3.385 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 6 "/HS") (pinfunction "HS") (pintype "input") (tstamp e9f6f543-7ec8-488b-9aca-e6a196514d16))
(pad "5" thru_hole circle locked (at -1.165 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 5 "/VS") (pinfunction "VS") (pintype "input") (tstamp 1257fa4c-2f92-4e07-b43d-826125b0853c))
(pad "6" thru_hole circle locked (at 1.815 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 7 "/B|Pb") (pinfunction "B/Pb") (pintype "input") (tstamp 7b4da999-f9e4-4c1d-bc75-0b3a3ebad32a))
(pad "7" thru_hole circle locked (at 4.035 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 8 "/G|Y") (pinfunction "G/Y") (pintype "input") (tstamp b589a08d-5a8e-4bb2-90d4-ef5270d09c90))
(pad "8" thru_hole circle locked (at 6.255 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 9 "/R|Pr") (pinfunction "R/Pr") (pintype "input") (tstamp a23e3eb7-dcb3-4b09-a1b0-ba2cb214f0a5))
(pad "9" thru_hole circle locked (at 9.235 11.865 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 2 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp b3a5f2e6-3207-4af3-89e3-6d0fa469246e))
(pad "10" thru_hole circle locked (at 9.235 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 15a65612-f6a1-48be-8425-8f5afb06c4fd))
(pad "10" thru_hole circle locked (at 6.255 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 229202cd-20dc-4eab-ac2e-7f028bc91419))
(pad "10" thru_hole circle locked (at -8.585 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5c458ff7-d3f7-4417-a611-6f2981d0e9cc))
(pad "10" thru_hole circle locked (at -6.365 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6b74ce51-0851-44d9-ba35-f631aa075f73))
(pad "10" thru_hole circle locked (at -1.165 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9f2913ee-f300-41d4-9b7a-339ae5970c4d))
(pad "10" thru_hole circle locked (at 4.035 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c464ac67-d07b-4878-905a-ea6f8d27cd1e))
(pad "10" thru_hole circle locked (at -10.805 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d0bf1a00-cfe8-4773-a4cd-b6dcc139ab1d))
(pad "10" thru_hole circle locked (at -3.385 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ed095ff3-b1af-4001-bf59-d68ad7ef3289))
(pad "10" thru_hole circle locked (at 1.815 14.255 90) (size 1.4 1.4) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f4a6f22f-2296-4e86-8dc7-ba0df5bfb77c))
(pad "11" smd rect locked (at 3.925 -0.795 90) (size 1.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 14 "/~{ANALOG}") (pinfunction "DIGITAL|~{ANALOG}") (pintype "input") (tstamp 122cd6ff-87b3-455d-9734-dd35dee6c1d9))
(pad "12" smd rect locked (at -5.65 1.75 90) (size 1.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 13 "/~{RGBHV}") (pinfunction "YPbPr|~{RGBHV}") (pintype "input") (tstamp cc90c745-434f-4e54-89c7-cbf24870aeb9))
(model "${KIPRJMOD}/Analog2HDMI.pretty/ElectronShepherdLLC_Analog2HDMI.step"
(offset (xyz 12.58 -17.075 0.6))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "Connector_Dsub:DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm" (layer "F.Cu")
(tedit 59FEDEE2) (tstamp 00000000-0000-0000-0000-000061b7ddc4)
(at 131.13395 92.499005)
(descr "15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
(tags "15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm")
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b7714c")
(attr through_hole)
(fp_text reference "J2" (at -21.538 5.036) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48eaa494-0ad3-4e7e-a203-8b82c0c90232)
)
(fp_text value "DB15_Female_HighDensity_MountingHoles" (at -4.315 14.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b401eca2-204c-47b0-a6cc-cbd09a8de2ad)
)
(fp_text user "${REFERENCE}" (at -4.315 10.39) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37f83d32-45f1-46b2-96b2-a40681275916)
)
(fp_line (start 0.25 -2.564338) (end 0 -2.131325) (layer "F.SilkS") (width 0.12) (tstamp 67dca7e5-24d8-4654-9579-d6404307654b))
(fp_line (start -19.8 -1.67) (end 11.17 -1.67) (layer "F.SilkS") (width 0.12) (tstamp 6d8a3226-b0be-4ce6-99a7-7bc208219506))
(fp_line (start -0.25 -2.564338) (end 0.25 -2.564338) (layer "F.SilkS") (width 0.12) (tstamp 8bf37a13-e175-4246-a4f0-4ab526c58c2e))
(fp_line (start 0 -2.131325) (end -0.25 -2.564338) (layer "F.SilkS") (width 0.12) (tstamp 9e477ee6-ad97-4cd4-b02b-4729979c40e2))
(fp_line (start -19.8 6.93) (end -19.8 -1.67) (layer "F.SilkS") (width 0.12) (tstamp a7e7a44c-68d8-4576-a798-ee1db6824dc3))
(fp_line (start 11.17 -1.67) (end 11.17 6.93) (layer "F.SilkS") (width 0.12) (tstamp ae923668-2cb7-47ea-99c5-b6a079045296))
(fp_line (start 11.65 13.9) (end 11.65 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 22b553ec-39b6-4275-9347-df53a7c0db1d))
(fp_line (start -20.25 13.9) (end 11.65 13.9) (layer "F.CrtYd") (width 0.05) (tstamp 3311faf7-cebf-4b03-887f-81682eb2d766))
(fp_line (start -20.25 -2.15) (end -20.25 13.9) (layer "F.CrtYd") (width 0.05) (tstamp 49b3f8e5-beb0-46c0-af33-92b06a5bdff5))
(fp_line (start 11.65 -2.15) (end -20.25 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 4b9cce0d-afc3-48b9-a22f-0ea23c5574b8))
(fp_line (start -19.74 7.39) (end 11.11 7.39) (layer "F.Fab") (width 0.1) (tstamp 11af36ff-3959-41d6-86f2-35df83d416be))
(fp_line (start 11.11 6.99) (end -19.74 6.99) (layer "F.Fab") (width 0.1) (tstamp 11e65687-dee5-42e2-a938-d539a0761571))
(fp_line (start 9.785 6.99) (end 9.785 2.05) (layer "F.Fab") (width 0.1) (tstamp 14ae6814-97a1-417e-bec2-8de437fc055e))
(fp_line (start 3.835 7.39) (end -12.465 7.39) (layer "F.Fab") (width 0.1) (tstamp 194e61d5-d73f-45e1-86ab-95585456b360))
(fp_line (start -15.215 6.99) (end -15.215 2.05) (layer "F.Fab") (width 0.1) (tstamp 207c68d8-2bd6-401c-bbd5-e50fcc95bf20))
(fp_line (start 3.835 13.39) (end 3.835 7.39) (layer "F.Fab") (width 0.1) (tstamp 262f677a-322e-4b8f-8c30-977fdf9e837a))
(fp_line (start 11.11 6.99) (end 11.11 -1.61) (layer "F.Fab") (width 0.1) (tstamp 27f57ab8-9d79-4c76-977a-cd2437a7f9f0))
(fp_line (start 6.585 6.99) (end 6.585 2.05) (layer "F.Fab") (width 0.1) (tstamp 4713b701-0d77-40e8-8184-3a11f9df2324))
(fp_line (start -19.315 7.39) (end -19.315 12.39) (layer "F.Fab") (width 0.1) (tstamp 485f2f0b-adc4-4fd0-914c-e6cdebf32b20))
(fp_line (start -14.315 12.39) (end -14.315 7.39) (layer "F.Fab") (width 0.1) (tstamp 5166ee21-16cc-47d4-a438-2c0e2aa8959c))
(fp_line (start 5.685 12.39) (end 10.685 12.39) (layer "F.Fab") (width 0.1) (tstamp 534d87c1-bf1e-4965-ad11-3e2aa081e8e8))
(fp_line (start -18.415 6.99) (end -18.415 2.05) (layer "F.Fab") (width 0.1) (tstamp 549455c3-ab6e-454e-94b0-5ca9e521ae0b))
(fp_line (start -19.315 12.39) (end -14.315 12.39) (layer "F.Fab") (width 0.1) (tstamp 76c255ae-be6f-425d-a22f-ead2d9b08f5a))
(fp_line (start -14.315 7.39) (end -19.315 7.39) (layer "F.Fab") (width 0.1) (tstamp 83aeead6-c04f-4f61-9dc1-08cad4116066))
(fp_line (start -19.74 -1.61) (end -19.74 6.99) (layer "F.Fab") (width 0.1) (tstamp 87e00674-48bd-4b33-a20f-73f6e677a63e))
(fp_line (start -19.74 6.99) (end -19.74 7.39) (layer "F.Fab") (width 0.1) (tstamp 907b59ac-a3f3-4819-aae3-2f3689254127))
(fp_line (start 11.11 7.39) (end 11.11 6.99) (layer "F.Fab") (width 0.1) (tstamp 95367dce-7348-4e46-8b79-617f0b078986))
(fp_line (start -19.74 6.99) (end 11.11 6.99) (layer "F.Fab") (width 0.1) (tstamp 9c83344b-9459-4d12-b42b-3d55cec57c13))
(fp_line (start -12.465 7.39) (end -12.465 13.39) (layer "F.Fab") (width 0.1) (tstamp 9eacd685-19fc-4714-9d5a-cb390df54aea))
(fp_line (start 11.11 -1.61) (end -19.74 -1.61) (layer "F.Fab") (width 0.1) (tstamp b7699dc1-fcd7-4bab-858a-39d304cad0e0))
(fp_line (start 10.685 7.39) (end 5.685 7.39) (layer "F.Fab") (width 0.1) (tstamp c6821f6d-ae1c-499e-ad7d-74e9a034a4b5))
(fp_line (start 10.685 12.39) (end 10.685 7.39) (layer "F.Fab") (width 0.1) (tstamp c7bd964e-6063-4802-85ea-2a5dd3fba324))
(fp_line (start -12.465 13.39) (end 3.835 13.39) (layer "F.Fab") (width 0.1) (tstamp d07c9852-1fa4-40ca-9b3a-45379faf2beb))
(fp_line (start 5.685 7.39) (end 5.685 12.39) (layer "F.Fab") (width 0.1) (tstamp eb2337fd-ed0c-4c82-a320-4407e6ace0bd))
(fp_arc (start -18.415 2.05) (mid -16.815 0.45) (end -15.215 2.05) (layer "F.Fab") (width 0.1) (tstamp 5d8898d0-524f-4fc9-9e68-966b1883c5f1))
(fp_arc (start 6.585 2.05) (mid 8.185 0.45) (end 9.785 2.05) (layer "F.Fab") (width 0.1) (tstamp 816d9601-af08-4260-a966-ab159c080a6c))
(pad "0" thru_hole circle locked (at 8.185 2.05) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)
(net 20 "unconnected-(J2-Pad0)") (pintype "passive") (tstamp 686ca76e-8dda-4b1b-8ab3-b67af2ba4d17))
(pad "0" thru_hole circle locked (at -16.815 2.05) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)
(net 20 "unconnected-(J2-Pad0)") (pintype "passive") (tstamp b36f4ff6-46a0-4150-af1c-46dc28f62df6))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 9 "/R|Pr") (pintype "passive") (tstamp 212fab70-46ac-4f1d-b2eb-d01b0293c9c2))
(pad "2" thru_hole circle locked (at -2.29 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "/G|Y") (pintype "passive") (tstamp 67265c15-e379-4b53-a75d-f49fb7a22a40))
(pad "3" thru_hole circle locked (at -4.58 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 7 "/B|Pb") (pintype "passive") (tstamp 30cd6950-3901-4121-bc2e-76d91493dbac))
(pad "4" thru_hole circle locked (at -6.87 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 21 "unconnected-(J2-Pad4)") (pintype "passive") (tstamp 2182a114-2363-4f7e-bef9-75c2e1ea9c76))
(pad "5" thru_hole circle locked (at -9.16 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 1d0c8eb1-b7e9-4d15-9b64-30b4a171ead5))
(pad "6" thru_hole circle locked (at 1.145 1.98) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp d0627f29-39cf-42e1-8180-e3534b87ede9))
(pad "7" thru_hole circle locked (at -1.145 1.98) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 74fb89c0-aa40-46b3-94fe-9b1dddf2a03f))
(pad "8" thru_hole circle locked (at -3.435 1.98) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 5b6014de-1271-43a8-ab1a-758dc8888b24))
(pad "9" thru_hole circle locked (at -5.725 1.98) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 2 "+5V") (pintype "passive") (tstamp f2e81adf-3a58-4a59-b3eb-a0f9fae3569d))
(pad "10" thru_hole circle locked (at -8.015 1.98) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 7b725e9e-c797-40ab-827f-7f46385f6ad1))
(pad "11" thru_hole circle locked (at 0 3.96) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 22 "unconnected-(J2-Pad11)") (pintype "passive") (tstamp e0792203-ce8a-4533-97ba-93f46e42224e))
(pad "12" thru_hole circle locked (at -2.29 3.96) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 23 "unconnected-(J2-Pad12)") (pintype "passive") (tstamp a1c0ecb1-83ae-4c51-8bb1-c126d0376b2b))
(pad "13" thru_hole circle locked (at -4.58 3.96) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 6 "/HS") (pintype "passive") (tstamp 6acb6da2-844a-4020-92c2-5034992a34c7))
(pad "14" thru_hole circle locked (at -6.87 3.96) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 5 "/VS") (pintype "passive") (tstamp e650a1ef-49d6-461c-927c-393af2632cef))
(pad "15" thru_hole circle locked (at -9.16 3.96) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 24 "unconnected-(J2-Pad15)") (pintype "passive") (tstamp 7191ae26-09cc-4bce-bcac-88fc79a741e5))
(model "${KICAD6_3DMODEL_DIR}/Connector_Dsub.3dshapes/DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Coaxial:AV-8.4-9" (layer "F.Cu")
(tedit 6235B34E) (tstamp 3dd385ec-e82e-4c38-9d95-f181d30f33c5)
(at 166.161249 96 -90)
(property "Sheetfile" "Analog2HDMI.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061b6bac2")
(attr through_hole)
(fp_text reference "J4" (at 2.929228 -6.125 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29e25708-411d-4bfb-8eaa-6db3d7e1800d)
)
(fp_text value "Conn_Coaxial" (at 0.25 6.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60ac0654-5bad-4c74-902c-ac4758a716cc)
)
(fp_line (start 4 4.15) (end 12 4.15) (layer "F.SilkS") (width 0.12) (tstamp 11010145-3971-4c44-b57e-d39e84a72b4d))
(fp_line (start 3.75 2.1) (end 4 2.1) (layer "F.SilkS") (width 0.12) (tstamp 4223c1f2-6da6-45ef-a2c5-77eff301193b))
(fp_line (start 4 5) (end 1.5 5) (layer "F.SilkS") (width 0.12) (tstamp 4e73f5c1-3e74-44d0-8ee8-4d4a0ba4013f))
(fp_line (start -10 5) (end -10 -5) (layer "F.SilkS") (width 0.12) (tstamp 5ca67d58-45fd-453b-9bee-8c6af89a55f9))
(fp_line (start 4 -2.1) (end 3.75 -2.1) (layer "F.SilkS") (width 0.12) (tstamp 6e54627b-22fe-493d-8b97-c5ecefe9f3e8))
(fp_line (start 4 -5) (end 1.5 -5) (layer "F.SilkS") (width 0.12) (tstamp 759e9ab4-e862-499a-b67a-f55372460440))
(fp_line (start 4 -5) (end 4 -2.1) (layer "F.SilkS") (width 0.12) (tstamp 904c5d1c-ed00-42ca-ad39-b3344cccfe1c))
(fp_line (start 4 -4.15) (end 12 -4.15) (layer "F.SilkS") (width 0.12) (tstamp b2949bd3-9a74-48ff-916d-f9f6a8fb79e6))