-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdmi2c.kicad_pcb
10819 lines (10750 loc) · 526 KB
/
hdmi2c.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 "A5")
(title_block
(title "PRJ6 HDMI2C Monitor Controller")
(date "2021-06-25")
(rev "rev0")
(company "wlcx industries")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (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") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/HDMI1_SCL")
(net 3 "/HDMI1_SDA")
(net 4 "/HDMI2_SCL")
(net 5 "/HDMI2_SDA")
(net 6 "/HDMI1_SCL_3.3")
(net 7 "/HDMI1_SDA_3.3")
(net 8 "/HDMI2_SCL_3.3")
(net 9 "/HDMI2_SDA_3.3")
(net 10 "+3V3")
(net 11 "Net-(R4-Pad2)")
(net 12 "VBUS")
(net 13 "/DTR")
(net 14 "/TXD0")
(net 15 "/RXD0")
(net 16 "/RTS")
(net 17 "Net-(D1-Pad1)")
(net 18 "Net-(D2-Pad1)")
(net 19 "/GPIO0")
(net 20 "/I2C1_SDA")
(net 21 "/I2C1_SCL")
(net 22 "/I2C2_SDA")
(net 23 "/I2C2_SCL")
(net 24 "/RESET")
(net 25 "Net-(C1-Pad1)")
(net 26 "Net-(Q1-Pad1)")
(net 27 "Net-(Q2-Pad1)")
(net 28 "Net-(D1-Pad2)")
(net 29 "Net-(D2-Pad2)")
(net 30 "/USB_D+")
(net 31 "/USB_D-")
(net 32 "/BUTT1")
(net 33 "/BUTT2")
(net 34 "Net-(C6-Pad1)")
(net 35 "/HDMI1_5V")
(net 36 "/HDMI2_5V")
(net 37 "Net-(R15-Pad2)")
(net 38 "/HDMI1_5V_EN")
(net 39 "/HDMI2_5V_EN")
(net 40 "Net-(J7-PadSH)")
(net 41 "Net-(J8-PadSH)")
(net 42 "unconnected-(J1-PadA8)")
(net 43 "Net-(J1-PadA5)")
(net 44 "unconnected-(J1-PadB8)")
(net 45 "Net-(J1-PadB5)")
(net 46 "unconnected-(J7-Pad1)")
(net 47 "unconnected-(J7-Pad3)")
(net 48 "unconnected-(J7-Pad4)")
(net 49 "/HDMI1_D2S")
(net 50 "unconnected-(J7-Pad6)")
(net 51 "unconnected-(J7-Pad7)")
(net 52 "/HDMI1_D1S")
(net 53 "unconnected-(J7-Pad9)")
(net 54 "unconnected-(J7-Pad10)")
(net 55 "/HDMI1_D0S")
(net 56 "unconnected-(J7-Pad12)")
(net 57 "unconnected-(J7-Pad14)")
(net 58 "/HDMI1_CKS")
(net 59 "Net-(J7-Pad19)")
(net 60 "/HDMI1_CEC")
(net 61 "unconnected-(J8-Pad1)")
(net 62 "unconnected-(J8-Pad3)")
(net 63 "unconnected-(J8-Pad4)")
(net 64 "/HDMI2_D2S")
(net 65 "unconnected-(J8-Pad6)")
(net 66 "unconnected-(J8-Pad7)")
(net 67 "/HDMI2_D1S")
(net 68 "unconnected-(J8-Pad9)")
(net 69 "unconnected-(J8-Pad10)")
(net 70 "/HDMI2_D0S")
(net 71 "unconnected-(J8-Pad12)")
(net 72 "unconnected-(J8-Pad14)")
(net 73 "/HDMI2_CKS")
(net 74 "Net-(J8-Pad19)")
(net 75 "/HDMI2_CEC")
(net 76 "/HDMI1_HPD_3.3")
(net 77 "/HDMI2_HPD_3.3")
(net 78 "unconnected-(U1-Pad1)")
(net 79 "unconnected-(U1-Pad10)")
(net 80 "unconnected-(U1-Pad11)")
(net 81 "unconnected-(U1-Pad12)")
(net 82 "unconnected-(U1-Pad15)")
(net 83 "unconnected-(U1-Pad16)")
(net 84 "unconnected-(U1-Pad17)")
(net 85 "unconnected-(U1-Pad18)")
(net 86 "unconnected-(U1-Pad22)")
(net 87 "unconnected-(U1-Pad24)")
(net 88 "unconnected-(U3-Pad4)")
(net 89 "Net-(R22-Pad2)")
(net 90 "unconnected-(U3-Pad5)")
(net 91 "unconnected-(U3-Pad6)")
(net 92 "unconnected-(U3-Pad7)")
(net 93 "unconnected-(U3-Pad10)")
(net 94 "unconnected-(U3-Pad14)")
(net 95 "unconnected-(U3-Pad17)")
(net 96 "unconnected-(U3-Pad18)")
(net 97 "unconnected-(U3-Pad19)")
(net 98 "unconnected-(U3-Pad20)")
(net 99 "unconnected-(U3-Pad21)")
(net 100 "unconnected-(U3-Pad22)")
(net 101 "unconnected-(U3-Pad23)")
(net 102 "unconnected-(U3-Pad24)")
(net 103 "unconnected-(U3-Pad26)")
(net 104 "unconnected-(U3-Pad29)")
(net 105 "unconnected-(U3-Pad32)")
(net 106 "unconnected-(U3-Pad33)")
(net 107 "unconnected-(U3-Pad36)")
(net 108 "unconnected-(U3-Pad37)")
(net 109 "unconnected-(U4-Pad4)")
(net 110 "unconnected-(U5-Pad4)")
(net 111 "unconnected-(U6-Pad4)")
(footprint "Button_Switch_SMD:SW_SPST_Omron_B3FS-101xP" (layer "F.Cu")
(tedit 5E6E8E39) (tstamp 0409043a-2f6e-4d14-ad96-ec52a1097493)
(at 97.95 79.75 180)
(descr "Surface Mount Tactile Switch for High-Density Mounting, 4.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
(tags "Tactile Switch")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/3363a8b5-8c48-4783-b39d-69da4706fdee")
(attr smd)
(fp_text reference "SW1" (at 0 -4.3 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2658a7da-566c-4108-8ddb-45a177952404)
)
(fp_text value "reset_sw" (at 0 4.2 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8af86c13-42b1-49c7-ae68-cdc693fbf7d9)
)
(fp_text user "${REFERENCE}" (at 0 -2.2 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be24b245-ee43-4382-b501-c4af33f9a372)
)
(fp_line (start -5.1 -3.3) (end -4.1 -3.3) (layer "F.SilkS") (width 0.12) (tstamp 2bf5d783-dc57-4f48-b012-3520e34fbe89))
(fp_line (start 3 3.25) (end -3 3.25) (layer "F.SilkS") (width 0.12) (tstamp 3db874a3-7aa2-42d4-bb91-878b2ae374f6))
(fp_line (start -5.1 -2.3) (end -5.1 -3.3) (layer "F.SilkS") (width 0.12) (tstamp 56f7e756-31a1-484c-85a9-c474f865023e))
(fp_line (start 3.1 -1.3) (end 3.1 1.3) (layer "F.SilkS") (width 0.12) (tstamp 872b2930-cd6d-4546-80d8-18c737455e3d))
(fp_line (start -3.1 -1.3) (end -3.1 1.3) (layer "F.SilkS") (width 0.12) (tstamp d948c99f-721c-4b7b-8efb-c713954bf38e))
(fp_line (start 2.9 -3.25) (end -2.9 -3.25) (layer "F.SilkS") (width 0.12) (tstamp e0bc8c7d-d71a-42d4-91d7-da8012bff07d))
(fp_line (start 5.05 3.4) (end -5.05 3.4) (layer "F.CrtYd") (width 0.05) (tstamp 10dbca19-b433-416c-9da5-b32cfac0b563))
(fp_line (start 5.05 1.3) (end 5.05 3.4) (layer "F.CrtYd") (width 0.05) (tstamp 13497be0-f1ae-42ce-a947-a12431dc93d9))
(fp_line (start -5.05 -3.4) (end 5.05 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 17ccd925-be54-4a5a-b551-e1e0b359f2ec))
(fp_line (start 3.25 1.3) (end 5.05 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 272d014d-f5f3-4c09-8e26-749163b17fae))
(fp_line (start 3.25 -1.3) (end 3.25 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 675f809c-dde4-4b7e-b34c-5b7b8a01e015))
(fp_line (start -5.05 3.4) (end -5.05 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 6f02761e-c53a-4b04-aff6-7b00d563393e))
(fp_line (start -3.25 1.3) (end -3.25 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 81c58381-bc12-4216-ac44-047b404650ae))
(fp_line (start -5.05 -1.3) (end -5.05 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp a14bce89-fa01-4faf-b7a9-6996893b695d))
(fp_line (start 5.05 -3.4) (end 5.05 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp b4ecd547-e7a1-497b-a321-b0824668f9c1))
(fp_line (start 5.05 -1.3) (end 3.25 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp e909ce7f-ea8b-4a46-81f0-2b47b3e63576))
(fp_line (start -3.25 -1.3) (end -5.05 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp eecf83a5-9c75-4dd0-abdc-12b540a7d273))
(fp_line (start -5.05 1.3) (end -3.25 1.3) (layer "F.CrtYd") (width 0.05) (tstamp f4a7367a-15c7-4081-8a7f-272832ae0658))
(fp_line (start -3 3.15) (end -3 -3.15) (layer "F.Fab") (width 0.1) (tstamp 1ae1943c-d9eb-4ba5-aa36-ffe123a32608))
(fp_line (start 3 -3.15) (end 3 3.15) (layer "F.Fab") (width 0.1) (tstamp 1cc9cb15-79d7-4472-b7bc-5672c72fc002))
(fp_line (start -3 -3.15) (end 3 -3.15) (layer "F.Fab") (width 0.1) (tstamp 3baa5090-fb49-48e6-b661-1085e68420a8))
(fp_line (start 3 3.15) (end -3 3.15) (layer "F.Fab") (width 0.1) (tstamp a6320b53-1129-4b63-8c22-efcb16287100))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp c90cbf46-8daa-41c1-92d5-bd0b2c18b292))
(pad "1" smd rect locked (at -4 -2.25) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp e2ca44a4-5f6c-4f7e-93b7-d20c4c15f116))
(pad "2" smd rect locked (at 4 -2.25) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp ec302ff7-a6d5-44ae-a01e-c71d659a5100))
(pad "3" smd rect locked (at -4 2.25) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/RESET") (pinfunction "3") (pintype "passive") (tstamp 6b2cd4c6-545d-4d11-8727-a08ddb5f2c6e))
(pad "4" smd rect locked (at 4 2.25) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/RESET") (pinfunction "4") (pintype "passive") (tstamp 5a086a3f-dfb5-4ae4-8a85-13db093c787a))
(model "${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_Omron_B3FS-101xP.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 0799884e-c748-4cb6-b65e-ef808c9dd372)
(at 97.2 63.8 45)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/e82bfb8e-c218-454b-8b70-6e78014d5278")
(attr smd)
(fp_text reference "Q1" (at 0.141421 2.404163 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ee46465-5357-4600-8d53-ddddf2706ada)
)
(fp_text value "Q_NPN_BEC" (at 0 2.5 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 620539b4-4f10-4b2b-a5f3-9430b378f7ab)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 2330f327-72f5-48ae-8a23-dab6457b0006)
)
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 1adf9bf7-0b13-4c50-92ad-d3fbc408d5a2))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 44e5bc2b-ad4d-44a0-a3a4-2b853b781722))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 83336440-7c64-4481-b25a-9d7abe20f2a0))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp c28329bb-c4c2-46da-b0d7-4c8d3ef14539))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7405bb60-066c-4f62-87b7-c10e6141429f))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c23f9ef1-0481-4a9c-b59f-7374ac871ddb))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp dbd859b2-5255-4295-9055-9a8b0de8442b))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp eabbea27-0460-4c4e-ac86-488cafeda015))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 30bdf346-6d9f-4494-9cff-64ad2535fd07))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 4da2c948-323c-4ea6-8f7a-2561ce24b28c))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 9b539841-310b-490f-bbc0-8ee7fed1d94f))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp bec13dcb-2cf4-443b-b0f8-ad9d3cd82f42))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp cca5479f-1db5-4e44-92c5-d8ac0f8091ba))
(pad "1" smd rect locked (at -1 -0.95 45) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(Q1-Pad1)") (pinfunction "B") (pintype "input") (tstamp cb20d8e2-bd42-4f65-8967-98438ba54813))
(pad "2" smd rect locked (at -1 0.95 45) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/DTR") (pinfunction "E") (pintype "passive") (tstamp 1c136246-30ce-40aa-b2a6-ae10f69fde1b))
(pad "3" smd rect locked (at 1 0 45) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/GPIO0") (pinfunction "C") (pintype "passive") (tstamp bf03efab-dc25-4487-9751-96ce0a4f49e4))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 0cc857f2-a2b8-4bb3-bd3a-6a76b3495dbd)
(at 109.8 65 -90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/51a6ff61-303d-4afb-b568-8a9b8ed7584e")
(attr smd)
(fp_text reference "U4" (at 0 2.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6304935e-7626-41dc-96a6-5641bb398db1)
)
(fp_text value "MIC5205-5.0YM5" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 777b76fd-fb66-4381-ab3e-13ad808cb67c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3ff4c316-c0d7-4150-a967-3635b9a8969b)
)
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 39e33e2a-5947-418b-b6e9-17b154646117))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 8787a6ad-2853-4041-85fb-ea7fc0fb0265))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp ba00e2ec-ed23-416b-b5b5-5e02efdb954e))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp ed009bf4-5392-4b7b-8c07-f02b60156ea4))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 553d4b5b-497d-4256-b77f-1fb3ea06c757))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7763ede4-0980-4785-85c5-625897e28a1e))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 9049f382-65e6-4dd1-b476-199003d32636))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 9c546fe1-9346-4969-be9d-c5a4cc9c5a75))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 357e00bd-691a-4fa7-a63b-19ca3d2367ae))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 416dfb23-f978-4995-ad54-f40dc0239282))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 64138c76-feb0-441a-8df5-1292a993ff1d))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 91f79693-6511-4f32-9059-63401beefb5f))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 92ff3fcf-a014-4a9d-be64-dcbaf2d1bbbb))
(pad "1" smd roundrect locked (at -1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "VBUS") (pinfunction "IN") (pintype "power_in") (tstamp 47999021-2ebb-4aa1-90a6-4b98f082673c))
(pad "2" smd roundrect locked (at -1.1375 0 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 85eb3208-aed4-40c2-9b2b-d6c9eeff9248))
(pad "3" smd roundrect locked (at -1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "/HDMI1_5V_EN") (pinfunction "EN") (pintype "input") (tstamp 9318e21c-398e-4803-8cbb-93ae3291f316))
(pad "4" smd roundrect locked (at 1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 109 "unconnected-(U4-Pad4)") (pinfunction "BP") (pintype "input+no_connect") (tstamp f6ad6737-e72e-44f2-9ea7-bf837d9bc008))
(pad "5" smd roundrect locked (at 1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(C1-Pad1)") (pinfunction "OUT") (pintype "power_out") (tstamp d45e4b81-91d5-4a05-a267-613488909fe2))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 10e59c81-8535-40f5-b950-a9e5cd45b2db)
(at 99.8 70.2 45)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/445b6f13-613c-40b9-9bd4-248e08448d48")
(attr smd)
(fp_text reference "R19" (at 0 -1.43 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f458468-e12f-4cc3-86d2-769f48ebe632)
)
(fp_text value "3.3k" (at 0 1.43 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9b4700c-82c3-4946-8cff-097353501e76)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e7690664-6d95-49f8-a7cd-75d78a33b035)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 42cdae81-3ae7-4cd1-846a-3ce870f42655))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp adeba0eb-3ce1-4b63-bb6f-6b45dc3f12b9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1c91f3f4-28ee-46c8-8174-0b0643301cba))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2be9cdcd-f21b-40e4-b52b-ad80d624afc0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6ffb6014-156d-4ef0-b6ff-cb13563d8dab))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 75fa2455-767d-4bd0-a02a-92fac6c81abc))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4769f956-638d-4bac-b398-c5753d0454f5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6f2b5aa9-1937-40a9-b05a-82fbf36df832))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 96592cce-df97-40a7-8efe-f945a93c5cef))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f429b0f3-1cc4-44fb-bd49-4988f392e96c))
(pad "1" smd roundrect locked (at -0.825 0 45) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp fe09069a-cdad-4409-a206-3942a978dc0a))
(pad "2" smd roundrect locked (at 0.825 0 45) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 76 "/HDMI1_HPD_3.3") (pintype "passive") (tstamp 066a334f-de8b-4b5e-9ef5-80bd05ef741a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 15cf3ad7-3b2b-4d42-ab08-58ea659f5d5e)
(at 64.4 78.2 90)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/c5e1d0d8-b5e0-433e-a7d9-0c4826520e0d")
(attr smd)
(fp_text reference "R17" (at 3 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6931a6c-0833-4b3d-8f44-57a32a525088)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61f40132-c53d-449b-a674-f3aa74506480)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8f592119-8498-4e32-8e95-32ebbcb68d8a)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4be7d4df-298b-4d2f-9aac-f31a5f2cb5ce))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ded84854-2f77-4248-bf5d-1d906428231c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 04de24d7-068a-4af9-9708-715257d802bc))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6a782055-4a97-44ad-b2e5-8d2f23517c5d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2c7d3c7-81a5-4bf2-9006-564e6db76a5b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d5c9445b-0a7d-45f8-9bff-0b347fcd5b2e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2bb2f151-8b4b-438d-b0d0-e3f7f5d41e85))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9a63a044-54f1-4cf9-880a-41251b6ea71a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a03388ed-7438-45d5-b147-49caec81969b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e7fdf4b3-a618-49db-b5d9-4f2ef895321f))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Net-(J1-PadA5)") (pintype "passive") (tstamp 76927636-e98e-4a89-8927-1d0e3bc79d69))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6b895924-7a18-4a33-948f-d44bfeac6b3f))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 210284a8-5eb6-4a0d-a222-5c8dd42ca57d)
(at 139 62.4 180)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/e26ac955-ac60-47cf-8e2f-5fd6b52cd50c")
(attr smd)
(fp_text reference "R8" (at 0 1.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41a9a573-1a52-4445-88ab-89a480234107)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b16b85b-e8ef-4f65-86b5-414be28fc640)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b1aa4ffa-abd6-48fa-a1e5-3b3097db80b3)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 608bf257-ab19-4e28-950b-d6735f4e2ebf))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8379d623-ff29-4d89-b1f7-86ca287b5223))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 52247201-88b2-481d-a0e8-8047ad18603b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6e9bc89e-273e-4ca8-8d73-4cdeff332031))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a962f30d-ae82-49d3-bf52-5ec4026f3358))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d467fea8-59ba-4219-aa54-ec534bdc24af))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 53c3443b-d539-4e95-99e1-63a290bd149a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 724153ec-2ab5-46f6-a4fb-e5e50ca9e1ac))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 998083da-5e00-4bee-8f94-95530a9a6054))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp de31dd01-d239-4b63-90c4-a7e35cadcf45))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp e6c4adaf-b336-48cb-a551-6f7dacf8c828))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/HDMI2_SDA_3.3") (pintype "passive") (tstamp 656285bd-555b-4f5c-9016-989ae8d8757c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 23298315-a3a4-44f4-b2a0-690e620ad5ff)
(at 141.40001 70.49999)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/7e1dc766-42a0-4ad8-a9d8-fa12226bd3dd")
(attr smd)
(fp_text reference "R12" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd8beb26-ef7a-41d4-91f6-d150aabbc01d)
)
(fp_text value "2k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 773d4e1d-f6db-439c-816f-c4d948f60aef)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6aa857d6-d49d-4824-9b29-40b24fc65abf)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1424d298-fff0-4d09-a1ce-dbe442432c94))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d7d95a3c-b5a0-4ba2-98ef-4dd46f09f8f3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 16cbf8db-48be-4141-8538-001df099c476))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6d06e143-b68e-44bd-814c-47776891b535))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 776cbaf6-76b5-4b6b-a59d-4b9a20fa39c7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c9a06b6b-3d4a-4dc0-8db2-496c6798f2ff))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8bbe5996-8135-4080-a9fd-c3c7f451c3be))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp aa29c4e6-ab8c-41ae-823b-73defd86a6f1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c1bb1c6a-ecb5-4f94-be5c-b064b12298a3))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c67d40d2-e393-40fe-b5fc-a661104ef505))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "/HDMI2_5V") (pintype "passive") (tstamp 42dee1a3-2abb-47e1-86e5-4cc749a64f22))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/HDMI2_SCL") (pintype "passive") (tstamp f30ccbfb-1c6c-4329-a7c1-cc1600d8fd44))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2c5e2ac7-21aa-410f-a058-44f6928039d1)
(at 86.2 76.8 -90)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/f00f81bc-a627-447b-8e89-7ba5c038663b")
(attr smd)
(fp_text reference "R22" (at -3 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e22f50d-ed5c-479d-8540-6834e8e38c0d)
)
(fp_text value "22k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 765db12c-66ec-4e3b-bb5e-c78cbc538144)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e3f54551-ff2c-412b-bbf3-b116ca85e821)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 68936dfe-fdfa-425d-8e5c-70812102bef1))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp eb2d0944-185e-4c3b-ac9b-2e5178821f17))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4659c971-c28e-4cf9-8526-c6e769243304))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a915a40c-fb24-4645-86bb-e4a0c7b23b1e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ae7f9e37-f6ce-41a4-96f9-aa561742f903))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d30fd43a-8b4f-44c3-9269-3cfd28a77c87))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 04512e0e-69e5-473b-85b2-21f0f8be1f29))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 05e1f1a2-e099-4151-9e65-78f9a07714aa))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 87714fb1-41b8-4377-b05c-517c516eaede))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8f427917-6965-46fa-abaa-b9db8b0924bc))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "VBUS") (pintype "passive") (tstamp e596f5aa-f907-41cf-944a-dc63f5ba2c52))
(pad "2" smd roundrect locked (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 89 "Net-(R22-Pad2)") (pintype "passive") (tstamp 85caad29-bca6-486e-94d7-463f2bfa5259))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 2c6d14b4-483c-4917-ae14-69bccd9a5aa2)
(at 138.90001 65.24999 -90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/24945ac4-66d6-4078-8ac2-44f7c89c9089")
(attr smd)
(fp_text reference "Q6" (at 2.5 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9371ef71-d41b-4d54-802d-e672e087f28f)
)
(fp_text value "BSS138" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b86bf6b-c62a-48d4-bcf2-f18078ae1d1d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 5847c8d8-a19c-49e1-b249-7f6e2354531c)
)
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 137775b8-2d9c-4bea-b686-601d65d7bdfb))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 13be6bb4-0845-4a32-8bfd-5e89162614b3))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 13dcf485-44a8-4583-8f57-961547db38a1))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp e3300285-2884-4ff0-b6b1-abcc07d64a99))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5a65d531-ce49-463d-a432-8f8144dd5058))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7baaeecd-6fa5-4a40-8db1-70010452256c))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp bba16ec9-0a11-4e65-857f-747f679b611b))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp d571404c-031b-4855-952b-2ec1caa4cc9e))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 39a854af-88da-4ef6-b9ff-c79c0577f306))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 50eb0d52-f0fb-451c-bf89-5cc42a11b52c))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 6a9f51cd-2895-483d-bb2c-70ba10a606f7))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 914769d7-fe10-4ea4-8922-8cda8b475f73))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp caaed6d3-b308-44f5-a5d9-5751f0c35e6b))
(pad "1" smd rect locked (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+3V3") (pinfunction "G") (pintype "input") (tstamp e55fe422-ffa5-45fd-93cf-2e8baf96fe7a))
(pad "2" smd rect locked (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/HDMI2_SDA_3.3") (pinfunction "S") (pintype "passive") (tstamp 1ad02d5d-296c-4acc-b50a-8d506f7d7b7b))
(pad "3" smd rect locked (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/HDMI2_SDA") (pinfunction "D") (pintype "passive") (tstamp 7640f10f-1b0b-4ffe-b8ec-b978f43dbd1c))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 2d7efac7-3a9c-4499-9e0f-5c43dd679107)
(at 92.4 68.6 -135)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/0cb21233-c9c9-4fa0-aa56-09d1f79302fa")
(attr smd)
(fp_text reference "Q2" (at 0 -2.5 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15e735d6-8bb6-4317-bda4-28fc98f6808a)
)
(fp_text value "Q_NPN_BEC" (at 0 2.5 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b3ac360-5e51-4457-af81-c7fa2b470081)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 427a4a95-1450-441c-ba81-ceffb675e8cb)
)
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 308142e9-c032-43bb-8c4a-f5e59b7b3e4b))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 750639e5-0701-4d21-8530-bc473ee5e279))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp e438f018-a40a-40a8-bbc0-5d420ec89449))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp e9d98dc7-9347-4064-b544-7c9621bbfd6f))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 292a6c39-d291-464c-8a0d-6df4cd2f5a42))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 2d54624f-75b6-4a7d-b6a7-7b51d0fcca71))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 57359486-4d7b-42cf-a5bd-1acbf521eedf))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a0ccab3c-04c8-4cfe-9795-138597dd8536))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 192e1d59-6b86-4b7b-a251-af1c5c576e3d))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 84402cf6-db3e-48e8-ae86-77eff70e49d7))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 87f470fc-d07e-4ee4-aa08-f432567fc836))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 8d8f5dee-a1d7-424d-b129-5d900d6f25d5))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp fbe7318c-bbb6-41e2-ac85-9c44d86ecdc9))
(pad "1" smd rect locked (at -1 -0.95 225) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "Net-(Q2-Pad1)") (pinfunction "B") (pintype "input") (tstamp 49d81aa0-cbdc-4fcc-9491-a713b86b656e))
(pad "2" smd rect locked (at -1 0.95 225) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/RTS") (pinfunction "E") (pintype "passive") (tstamp 7b54bd63-9ea1-455b-a0d9-95f86e54068a))
(pad "3" smd rect locked (at 1 0 225) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/RESET") (pinfunction "C") (pintype "passive") (tstamp 70bdb18b-1a21-4ff0-bae1-b47607908f07))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "hdmi2c:SW_TH_Tactile_Omron_B3F-312x" (layer "F.Cu")
(tedit 6019C722) (tstamp 2dfda705-5c2f-4975-b1f4-678bc156db7f)
(at 109.95 46.25 180)
(descr "SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "Omron B3F-10xx")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/db127ae8-7efc-4d85-8d6a-d487532fec77")
(attr through_hole)
(fp_text reference "SW3" (at 3.25 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9142df79-6203-41da-9f60-74f3865e542c)
)
(fp_text value "SW_Push_shell" (at 3.2 7.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9aeee30-4ee2-4df2-80b8-082429a14d30)
)
(fp_text user "${REFERENCE}" (at 3.6 0.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32909e7b-a2ce-479a-8c0c-22cb8483580f)
)
(fp_line (start 0 -1.4) (end 7 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 0e7c64ec-5830-4c3d-8eb8-9d8df058a898))
(fp_line (start 0 4.75) (end 7 4.75) (layer "F.SilkS") (width 0.12) (tstamp 261b0e54-f2bf-45cb-ad32-3d085e239c06))
(fp_line (start 0 1.4) (end 0 4.75) (layer "F.SilkS") (width 0.12) (tstamp 4d6511ac-aefc-4715-a8c9-0652a10172f0))
(fp_line (start 7 1.4) (end 7 4.75) (layer "F.SilkS") (width 0.12) (tstamp badefd3e-4066-480e-b186-61fc2f4d3fa6))
(fp_line (start 1.25 6.35) (end 1.25 4.8) (layer "Dwgs.User") (width 0.12) (tstamp 6df8eb3a-ac35-4813-b5ff-89bfb994dcae))
(fp_line (start 5.75 6.35) (end 5.75 4.8) (layer "Dwgs.User") (width 0.12) (tstamp aaaa18b7-ac9e-41bf-a710-1c89dcec895f))
(fp_line (start 1.25 6.35) (end 5.75 6.35) (layer "Dwgs.User") (width 0.12) (tstamp c1fa21b1-1ad7-4174-af10-1c5c532da88d))
(fp_line (start -1.5 -1.5) (end -1.5 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 31ac7482-5f3f-4f44-87af-0b916faf30a9))
(fp_line (start -1.5 -1.5) (end 8.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3ad87e0e-8e6f-4fb7-a3b6-112de4b58c98))
(fp_line (start 8.5 6.7) (end 8.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a3990040-8b6f-4e71-b85b-fab66bb54ce0))
(fp_line (start -1.5 6.7) (end 8.5 6.7) (layer "F.CrtYd") (width 0.05) (tstamp a54d119e-6a40-4c05-b77a-3db80e250cca))
(pad "1" thru_hole circle locked (at 1.25 2.5 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/BUTT2") (pinfunction "1") (pintype "passive") (tstamp 8b455897-4780-43d4-bab3-0a0a46c0662f))
(pad "2" thru_hole circle locked (at 5.75 2.5 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 716a37ac-039a-49da-bb4a-15dc7bfefd60))
(pad "SH" thru_hole circle locked (at 0 0 180) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shell") (pintype "passive") (tstamp ba015e8e-bd12-44d5-9593-1bee2e2d92da))
(pad "SH" thru_hole circle locked (at 7 0 180) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shell") (pintype "passive") (tstamp ec21da47-3892-46a0-b98a-2998c039548c))
(model "${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_TH_Tactile_Omron_B3F-10xx.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/B3F-3122.STEP"
(offset (xyz 5.75 -2.5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 31f68730-9d8e-4d07-952f-f5caa5a18234)
(at 89 78 180)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/7fdbde57-1464-4f92-9b87-cc8e50d1010a")
(attr smd)
(fp_text reference "R4" (at -2.4 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1109d89a-476e-4f54-ab8c-7378e6dc503f)
)
(fp_text value "100k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 325bdc2b-33d9-4c97-9ea9-f8abe99a7277)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b253094e-235b-41da-945b-33b189c62d46)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2125fc7d-71fe-480e-914d-ae4f0c32ac66))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 964efd4c-9922-4547-a9e8-c0d661b3b2d2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2d729622-2e91-48f3-91a0-33d883c98c61))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4b9b1b6b-e5c9-41f6-8155-6d2dcad763f9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp abd85e8d-d404-4e03-b7a3-ee95d21cae19))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c2ac0699-d00e-4749-a739-357a929a6fd3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 19995bcf-c10e-4311-adfe-25b99d289426))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6dd542dd-1260-4593-96e5-2e394043f64c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7e1d19d0-d07c-45c9-bbe6-a62cb62e37f6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aa250181-65ff-4a24-95d9-3d2f47f89eb0))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "VBUS") (pintype "passive") (tstamp d7e347a8-02ac-4982-9749-294ca713a1a2))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(R4-Pad2)") (pintype "passive") (tstamp a3060827-9514-45c4-ab8c-db41a25638bf))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 34b06979-fb51-43bc-b896-15b10bba8422)
(at 115.85 65.4 -90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/837c5d35-e583-41db-8f96-eeed39b758f2")
(attr smd)
(fp_text reference "Q5" (at 2.5 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2d4677d-2e9f-4c24-bede-d3b634288998)
)
(fp_text value "BSS138" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp def1e773-97f9-4738-b88a-7005d6847663)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 5ffff867-dd56-4c8f-be62-5ffa10fcd4e9)
)
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 424eb90f-3821-423b-b947-86c582fc3c6a))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 65e39cac-a529-45a6-aa47-3342f0f4c36a))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp a1eed483-839c-418f-b433-2939b01f92d9))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp fb7971ab-d284-4097-b11b-2c76b25b99a5))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 184aaf41-c05b-46a4-8a2e-f0d4cf4a4b09))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 2b2638d6-9594-4db0-9431-04975680adf8))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b7381e76-f899-49ce-a7b3-1d4f83bea285))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp ef485ac8-1ea4-4b57-a56d-ca8e90b52100))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 05fb2639-6ebc-44ed-9068-0694c27cc3e8))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 0683cbca-308c-49af-8ffe-9e56f9830592))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 36badda7-0841-4491-abd2-364d3a8f0da3))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 3c305709-80b3-43bb-ae8e-40da9c8ce3e2))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b19a144c-5f89-4c58-b6f4-a030f28d5505))
(pad "1" smd rect locked (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+3V3") (pinfunction "G") (pintype "input") (tstamp 8d8e4765-ce2b-4236-bf24-293107d29667))
(pad "2" smd rect locked (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/HDMI1_SDA_3.3") (pinfunction "S") (pintype "passive") (tstamp 2b6ee6ac-9c33-434f-92c1-56806eeafa65))
(pad "3" smd rect locked (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/HDMI1_SDA") (pinfunction "D") (pintype "passive") (tstamp 35b1e716-b38b-4efc-a05e-66d96d94636f))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3ae21f06-b8d3-4ceb-aed8-367e0c109364)
(at 69.6 81.425 90)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/839abd58-e6f9-481d-96d9-6b3c21c016e4")
(attr smd)
(fp_text reference "R5" (at -2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e5ef845-a5f2-48d1-922f-eabc2981c1d8)
)
(fp_text value "68R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cc50930-0551-400e-b43b-d3f1fee0931e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 77a569c3-6887-457b-88cb-afe8211b5e79)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 79d08872-7f80-4199-ba3c-639132c02e17))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e6778f02-2503-4fa0-ad18-52d681167b8c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 14c101a8-0b4a-4889-a4e0-a79abab31f07))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 971d73e6-7316-4fa1-9927-41b144da9355))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c6cd04aa-ea9d-4b72-99e8-34476f4c7aec))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f0483d96-b003-4014-91c4-6e0a13d565cd))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 26ab7719-9f99-476e-8bb6-2bb82706dc94))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 623650d6-9e91-4daf-b462-3f073bbd9a69))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c6f0f0b8-fcac-485a-89bd-0d6fdcfdfe2c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d503ae1a-c925-4434-8288-d8721d529bcc))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 3811c00a-72b7-4268-bbad-2e083edd63da))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(D1-Pad2)") (pintype "passive") (tstamp bcfa7e0e-eff7-423f-8760-b1152108f358))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 40cb7e80-81f0-433d-b6bf-aefb22af2311)
(at 69.4 72.4 180)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/6aa41025-0f40-4483-8bc4-a15b1d63147e")
(attr smd)
(fp_text reference "R3" (at 2.6 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6790c93-4884-41ed-93f0-25e2b7dfecd2)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9fc2b506-79b2-458e-86bf-8d5c42a940a5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fecd8ffb-c2e6-4c60-a70c-79ae5d0f152c)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 69aa20ed-2c10-4c67-951c-f72b383362f6))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f0b1223f-b5d8-47cd-ae0e-85f2e84229ca))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 31a450be-b118-4ca5-a15d-5153a692a825))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4692ab8d-f011-4b84-b739-7cbfaffed8cb))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4d02daec-645c-449e-813e-b83c022e8569))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d73662dd-4fae-4e2f-9eee-6413728faef6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5d4de655-2b66-46f8-9272-dab08496901b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 918b2ce4-4b30-4911-a3fc-7b6e8d63d14d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b795f9e2-a874-4e29-9ae5-a942a6024495))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d3de75dc-ca02-4333-a29c-a1ef63db5088))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/RESET") (pintype "passive") (tstamp 906a2157-0aa8-4ba1-9e28-3e381b8c3e91))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp dd6548ab-5a27-4c0c-b808-3e9eb1924827))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4331ebc2-acd3-48e2-b4eb-aa6b3f1b78e5)
(at 101.616637 70.783363 45)
(descr "Resistor SMD 0603 (1608 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" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/42b3e4c5-fdaa-490f-ab24-d1cc306aba29")
(attr smd)
(fp_text reference "R21" (at 0.259314 1.414214 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c54ac2e5-2d8a-40c0-9fa7-9eab0a93ed99)
)
(fp_text value "3.3k" (at 0 1.43 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 886625dc-2078-4681-82c8-a20eeb83a0e6)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp baef9c11-c4ba-4890-83a9-f83780559caa)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 00610a67-1ae4-4817-aa7c-8e5eb1668b89))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 63ee88df-10f8-4ecf-a9e3-4119e9898195))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 241d71e3-5cc1-416d-8460-6b7b9919847d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4ca4fc76-cc21-4644-aac7-6b13a530111b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5da83f21-ad12-47a2-917c-d8c6ee11905d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fdf224eb-84c0-43a3-adc8-f15a4b60a86f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1cd0e173-00f6-4ff8-81a9-3f495bf3b0de))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3cfca876-c53d-41a7-8674-57def83edd04))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6a14c866-eebd-4580-80b5-55186bc8bb4e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d2b678b4-2485-4995-9ee8-2bd23c308399))
(pad "1" smd roundrect locked (at -0.825 0 45) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8f660e95-78a4-4744-ba91-d36c0cc9e4cb))
(pad "2" smd roundrect locked (at 0.825 0 45) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 77 "/HDMI2_HPD_3.3") (pintype "passive") (tstamp cec1a197-fcca-4b10-a195-15bd1594da9a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 43f9c52a-d5dd-4221-b34f-6ec21758b8f0)
(at 120.6 65.4 -90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "hdmi2c.kicad_sch")
(property "Sheetname" "")
(path "/e562f1d5-51c8-4f72-8cca-87fe315d031c")
(attr smd)
(fp_text reference "Q3" (at 2.5 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71d134e8-ccd5-4291-bbb0-17e65885ee58)
)
(fp_text value "BSS138" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3c80baa-ba0b-4e11-b0c1-e526f2039898)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 32ab8062-46b9-4b09-a646-71e6261a6623)
)
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 035ba168-71d2-4ffe-a407-58d5efeb49b6))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 2062ef47-ced0-4b18-aafa-cafd6f5a08bb))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 40db9d30-a1c8-40b3-be95-257cb60a4441))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp a9250585-1d12-4c43-9025-a10624812995))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 482254a9-fa83-4028-b876-d66bff77a0d5))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 80626745-f9b0-4366-8511-3b28248bd626))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 972c05ba-d655-4d26-993a-2b7258fbae59))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c673074e-a942-4286-9337-c85f66372009))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 1069fdbd-25d8-49d5-bb4d-59d099ec41a7))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 2f8338fa-7b8a-4816-b86d-1b7ee1e2a590))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 87da1e19-8dd8-429a-bad0-9eff68ce5b15))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp ed64c0aa-1fd5-446d-9686-4e2511212989))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp f8fd83b2-8445-49e8-89e4-9db8c81c7dea))
(pad "1" smd rect locked (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+3V3") (pinfunction "G") (pintype "input") (tstamp 8da8b802-117b-4b76-a759-719b2a6280b3))
(pad "2" smd rect locked (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/HDMI1_SCL_3.3") (pinfunction "S") (pintype "passive") (tstamp 0e0e4cd0-fc13-45e4-b0f4-958ddd0b1edb))
(pad "3" smd rect locked (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/HDMI1_SCL") (pinfunction "D") (pintype "passive") (tstamp 168e7f26-1358-4152-81b6-3301299188e4))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "hdmi2c:MountingHole_2.2mm_M2_DIN965_Pad_with_paste" (layer "F.Cu")
(tedit 6020B0A6) (tstamp 44e4e89a-e12e-4de3-ba93-6912a5e68263)
(at 153 44.6)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "M2" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07fe80ea-cd37-4910-84b9-20ac41dd5228)
)
(fp_text value "MountingHole_2.2mm_M2_DIN965_Pad_with_paste" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b038f244-ef8b-4d2f-8217-d5b194c59050)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))