-
Notifications
You must be signed in to change notification settings - Fork 1
/
sfp_module.kicad_sch
1221 lines (1199 loc) · 45.2 KB
/
sfp_module.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid 55992e35-fe7b-468a-9b7a-1e4dc931b904)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (id 1) (at 1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Interface_Optical:SFP" (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -8.89 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SFP" (id 1) (at 11.43 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 -21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.10gtek.com/templates/wzten/pdf/INF-8074.pdf" (id 3) (at -11.43 16.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "SFP transciever gigabit ethernet INF-8074i" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Connector for Small Form Factor Pluggable (SFP) module, 1 Gbit/s, serial-to-serial data-agnostic optical transceiver" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*SFP*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SFP_0_0"
(rectangle (start -10.16 15.24) (end 10.16 -15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SFP_1_1"
(pin power_in line (at -2.54 -17.78 90) (length 2.54)
(name "VeeT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -17.78 90) (length 2.54)
(name "VeeR" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 90) (length 2.54) hide
(name "VeeR" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 2.54 180) (length 2.54)
(name "RD-" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 2.54)
(name "RD+" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 90) (length 2.54) hide
(name "VeeR" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 17.78 270) (length 2.54)
(name "VccR" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 17.78 270) (length 2.54)
(name "VccT" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -17.78 90) (length 2.54) hide
(name "VeeT" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -2.54 180) (length 2.54)
(name "TD+" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -5.08 180) (length 2.54)
(name "TD-" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 12.7 -10.16 180) (length 2.54)
(name "TX_FAULT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -17.78 90) (length 2.54) hide
(name "VeeT" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "TX_DISABLE" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 7.62 0) (length 2.54)
(name "MOD_DEF2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "MOD_DEF1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 2.54 0) (length 2.54)
(name "MOD_DEF0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "RATE_SELECT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 12.7 10.16 180) (length 2.54)
(name "RX_LOS" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 90) (length 2.54) hide
(name "VeeR" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 90) (length 2.54)
(name "CAGE" (effects (font (size 1.27 1.27))))
(number "CAGE" (effects (font (size 0.508 0.508))))
)
)
)
(symbol "Mechanical:Housing_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "N" (id 0) (at 4.445 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Housing_Pad" (id 1) (at 4.445 -1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "housing enclosure shield" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Housing with connection pin" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Housing_Pad_0_1"
(rectangle (start -4.445 -0.635) (end -0.635 -1.905)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -3.81 -3.175) (radius 0.635)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center -1.27 -3.175) (radius 0.635)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -3.8862 -1.5748)
(xy -3.8354 -1.3716)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.7846 -1.6764)
(xy -3.429 -1.6764)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.7846 -1.2192)
(xy -3.7338 -0.9652)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.683 -1.3208)
(xy -3.3782 -1.3208)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.5814 -0.9144)
(xy -3.2766 -0.9144)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.2766 -1.6256)
(xy -3.2258 -1.3716)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.175 -1.2192)
(xy -3.1242 -0.9652)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.9718 -1.5748)
(xy -2.921 -1.3716)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.8702 -1.6764)
(xy -2.5146 -1.6764)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.8702 -1.2192)
(xy -2.8194 -0.9652)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 -1.3208)
(xy -2.4638 -1.3208)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.667 -0.9144)
(xy -2.3622 -0.9144)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.3622 -1.6256)
(xy -2.3114 -1.3716)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.2606 -1.2192)
(xy -2.2098 -0.9652)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.0574 -1.5748)
(xy -2.0066 -1.3716)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.9558 -1.6764)
(xy -1.6002 -1.6764)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.9558 -1.2192)
(xy -1.905 -0.9652)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.8542 -1.3208)
(xy -1.5494 -1.3208)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.7526 -0.9144)
(xy -1.4478 -0.9144)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.4478 -1.6256)
(xy -1.397 -1.3716)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.3462 -1.2192)
(xy -1.2954 -0.9652)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -4.445)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 0)
(xy 0 0)
(xy 3.81 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 0)
(xy -5.08 -4.445)
(xy 0 -4.445)
(xy 3.81 -0.635)
(xy 3.81 3.81)
(xy -1.27 3.81)
(xy -5.08 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "Housing_Pad_1_1"
(pin input line (at -5.08 -5.08 90) (length 2.54)
(name "PAD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 167.64 63.5) (diameter 0) (color 0 0 0 0)
(uuid 1860e030-7a36-4298-b7fc-a16d48ab15ba)
)
(junction (at 114.3 91.44) (diameter 0) (color 0 0 0 0)
(uuid 1bf544e3-5940-4576-9291-2464e95c0ee2)
)
(junction (at 158.75 80.01) (diameter 0) (color 0 0 0 0)
(uuid 2a54818a-1b8b-4cff-b903-c7a8a8a3d3a1)
)
(junction (at 80.01 72.39) (diameter 0) (color 0 0 0 0)
(uuid 357139c1-4287-4a19-9e8c-17f9e5b94c23)
)
(junction (at 105.41 72.39) (diameter 0) (color 0 0 0 0)
(uuid 42713045-fffd-4b2d-ae1e-7232d705fb12)
)
(junction (at 71.12 72.39) (diameter 0) (color 0 0 0 0)
(uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(junction (at 90.17 72.39) (diameter 0) (color 0 0 0 0)
(uuid 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(junction (at 212.09 97.79) (diameter 0) (color 0 0 0 0)
(uuid 632acde9-b7fd-4f04-8cb4-d2cbb06b3595)
)
(junction (at 105.41 91.44) (diameter 0) (color 0 0 0 0)
(uuid 7aed3a71-054b-4aaa-9c0a-030523c32827)
)
(junction (at 167.64 82.55) (diameter 0) (color 0 0 0 0)
(uuid 7ca5a0d4-9d47-4782-84ad-c9022cf43b89)
)
(junction (at 71.12 104.14) (diameter 0) (color 0 0 0 0)
(uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
)
(junction (at 212.09 77.47) (diameter 0) (color 0 0 0 0)
(uuid 98e81e80-1f85-4152-be3f-99785ea97751)
)
(junction (at 193.04 107.95) (diameter 0) (color 0 0 0 0)
(uuid 9dab0cb7-2557-4419-963b-5ae736517f62)
)
(junction (at 190.5 107.95) (diameter 0) (color 0 0 0 0)
(uuid b88717bd-086f-46cd-9d3f-0396009d0996)
)
(junction (at 105.41 104.14) (diameter 0) (color 0 0 0 0)
(uuid d57dcfee-5058-4fc2-a68b-05f9a48f685b)
)
(junction (at 80.01 104.14) (diameter 0) (color 0 0 0 0)
(uuid e15faf49-6050-4ccc-ab78-5b830ec9a090)
)
(wire (pts (xy 158.75 63.5) (xy 167.64 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
)
(wire (pts (xy 105.41 104.14) (xy 114.3 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b21a65d-d20b-411e-920a-75c343ac5136)
)
(wire (pts (xy 105.41 72.39) (xy 105.41 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(wire (pts (xy 105.41 104.14) (xy 105.41 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f22151c-f260-4674-b486-4710a2c42a55)
)
(wire (pts (xy 212.09 97.79) (xy 212.09 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5)
)
(wire (pts (xy 80.01 104.14) (xy 105.41 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1831fb37-1c5d-42c4-b898-151be6fca9dc)
)
(wire (pts (xy 105.41 72.39) (xy 119.38 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)
)
(wire (pts (xy 208.28 97.79) (xy 212.09 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b54105e-6590-4d26-a763-ecfcf81eedc4)
)
(wire (pts (xy 167.64 73.66) (xy 167.64 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2682e4e1-bd5f-461a-9fd0-c0cb421907ef)
)
(wire (pts (xy 212.09 111.76) (xy 212.09 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d6db888-4e40-41c8-b701-07170fc894bc)
)
(wire (pts (xy 71.12 76.2) (xy 71.12 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(wire (pts (xy 167.64 59.69) (xy 167.64 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31e08896-1992-4725-96d9-9d2728bca7a3)
)
(wire (pts (xy 176.53 73.66) (xy 176.53 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31ee092c-7baf-4b4f-bb9f-a6bf95f762e3)
)
(wire (pts (xy 212.09 97.79) (xy 219.71 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35354519-a28c-40c4-befd-0943e98dea53)
)
(wire (pts (xy 193.04 107.95) (xy 195.58 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a)
)
(wire (pts (xy 71.12 83.82) (xy 71.12 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)
)
(wire (pts (xy 114.3 104.14) (xy 114.3 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cd1bda0-18db-417d-b581-a0c50623df68)
)
(wire (pts (xy 193.04 105.41) (xy 193.04 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 417f13e4-c121-485a-a6b5-8b55e70350b8)
)
(wire (pts (xy 80.01 76.2) (xy 80.01 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54365317-1355-4216-bb75-829375abc4ec)
)
(wire (pts (xy 179.07 107.95) (xy 190.5 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
)
(wire (pts (xy 105.41 91.44) (xy 105.41 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 666713b0-70f4-42df-8761-f65bc212d03b)
)
(wire (pts (xy 71.12 104.14) (xy 80.01 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a95d61f-536d-4b7b-927f-573110f99cf4)
)
(wire (pts (xy 195.58 107.95) (xy 195.58 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b)
)
(wire (pts (xy 100.33 91.44) (xy 105.41 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c2e273e-743c-4f1e-a647-4171f8122550)
)
(wire (pts (xy 90.17 72.39) (xy 92.71 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(wire (pts (xy 100.33 72.39) (xy 105.41 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(wire (pts (xy 208.28 77.47) (xy 212.09 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 712d6a7d-2b62-464f-b745-fd2a6b0187f6)
)
(wire (pts (xy 154.94 80.01) (xy 158.75 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 752ba632-b162-4fb4-8e61-4c2a5763399c)
)
(wire (pts (xy 193.04 107.95) (xy 193.04 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bbf981c-a063-4e30-8911-e4228e1c0743)
)
(wire (pts (xy 105.41 91.44) (xy 114.3 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)
)
(wire (pts (xy 167.64 63.5) (xy 167.64 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
(wire (pts (xy 212.09 77.47) (xy 219.71 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
)
(wire (pts (xy 212.09 64.77) (xy 212.09 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 852dabbf-de45-4470-8176-59d37a754407)
)
(wire (pts (xy 60.96 72.39) (xy 71.12 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87371631-aa02-498a-998a-09bdb74784c1)
)
(wire (pts (xy 167.64 82.55) (xy 182.88 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 911e3d60-fbb5-4995-8e78-80dad3a90e38)
)
(wire (pts (xy 114.3 91.44) (xy 114.3 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)
)
(wire (pts (xy 182.88 85.09) (xy 176.53 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91ed0a0b-878b-4201-a41d-d1b9df3d9be3)
)
(wire (pts (xy 179.07 92.71) (xy 179.07 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e1b837f-0d34-4a18-9644-9ee68f141f46)
)
(wire (pts (xy 80.01 72.39) (xy 90.17 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
(wire (pts (xy 71.12 72.39) (xy 80.01 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(wire (pts (xy 212.09 77.47) (xy 212.09 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3d08afa-f296-4e3b-8825-73b6331d35bf)
)
(wire (pts (xy 167.64 63.5) (xy 176.53 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6270a28-e0d9-4655-a18a-03dbf007b940)
)
(wire (pts (xy 80.01 83.82) (xy 80.01 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bdc7face-9f7c-4701-80bb-4cc144448db1)
)
(wire (pts (xy 195.58 66.04) (xy 195.58 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfc0aadc-38cf-466e-a642-68fdc3138c78)
)
(wire (pts (xy 182.88 92.71) (xy 179.07 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)
)
(wire (pts (xy 114.3 91.44) (xy 119.38 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0515cd2-cdaa-467e-8354-0f6eadfa35c9)
)
(wire (pts (xy 92.71 91.44) (xy 90.17 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
)
(wire (pts (xy 158.75 73.66) (xy 158.75 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb03c465-c6c8-4521-8384-f6b4306c8478)
)
(wire (pts (xy 60.96 104.14) (xy 71.12 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce83728b-bebd-48c2-8734-b6a50d837931)
)
(wire (pts (xy 158.75 80.01) (xy 182.88 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf2aec28-6f46-40c7-89b0-9c7279f348ae)
)
(wire (pts (xy 154.94 82.55) (xy 167.64 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d46d763a-9cf7-4ee5-90d3-713261403191)
)
(wire (pts (xy 193.04 66.04) (xy 193.04 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d4a1d3c4-b315-4bec-9220-d12a9eab51e0)
)
(wire (pts (xy 193.04 107.95) (xy 190.5 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dabe541b-b164-4180-97a4-5ca761b86800)
)
(wire (pts (xy 158.75 66.04) (xy 158.75 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(wire (pts (xy 190.5 107.95) (xy 190.5 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e12e827e-36be-4503-8eef-6fc7e8bc5d49)
)
(wire (pts (xy 90.17 91.44) (xy 90.17 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid efeac2a2-7682-4dc7-83ee-f6f1b23da506)
)
(wire (pts (xy 176.53 63.5) (xy 176.53 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3490fa5-5a27-423b-af60-53609669542c)
)
(hierarchical_label "GND" (shape input) (at 105.41 82.55 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 03c52831-5dc5-43c5-a442-8d23643b46fb)
)
(hierarchical_label "VCC_R" (shape passive) (at 195.58 66.04 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0f54db53-a272-4955-88fb-d7ab00657bb0)
)
(hierarchical_label "TX+" (shape output) (at 208.28 90.17 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 13abf99d-5265-4779-8973-e94370fd18ff)
)
(hierarchical_label "GND" (shape input) (at 60.96 104.14 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 181abe7a-f941-42b6-bd46-aaa3131f90fb)
)
(hierarchical_label "RX+" (shape input) (at 208.28 82.55 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 32667662-ae86-4904-b198-3e95f11851bf)
)
(hierarchical_label "3.3V" (shape input) (at 60.96 72.39 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)
)
(hierarchical_label "RX_LOS" (shape passive) (at 219.71 77.47 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5528bcad-2950-4673-90eb-c37e6952c475)
)
(hierarchical_label "VCC_T" (shape passive) (at 167.64 59.69 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6441b183-b8f2-458f-a23d-60e2b1f66dd6)
)
(hierarchical_label "VCC_T" (shape passive) (at 212.09 111.76 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 66043bca-a260-4915-9fce-8a51d324c687)
)
(hierarchical_label "GND" (shape input) (at 193.04 113.03 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 67f6e996-3c99-493c-8f6f-e739e2ed5d7a)
)
(hierarchical_label "TX_FAULT" (shape passive) (at 219.71 97.79 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
)
(hierarchical_label "VCC_T" (shape passive) (at 193.04 66.04 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 80094b70-85ab-4ff6-934b-60d5ee65023a)
)
(hierarchical_label "VCC_R" (shape passive) (at 119.38 91.44 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 922058ca-d09a-45fd-8394-05f3e2c1e03a)
)
(hierarchical_label "VCC_T" (shape passive) (at 119.38 72.39 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 97fe9c60-586f-4895-8504-4d3729f5f81a)
)
(hierarchical_label "RX-" (shape input) (at 208.28 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a05d7640-f2f6-4ba7-8c51-5a4af431fc13)
)
(hierarchical_label "TX-" (shape output) (at 208.28 92.71 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a7520ad3-0f8b-4788-92d4-8ffb277041e6)
)
(hierarchical_label "VCC_T" (shape passive) (at 212.09 64.77 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b5352a33-563a-4ffe-a231-2e68fb54afa3)
)
(hierarchical_label "MOD_DEF2_SDA" (shape bidirectional) (at 154.94 80.01 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dc47d78f-ffc4-46f5-97a5-4b9135225541)
)
(hierarchical_label "MOD_DEF1_SCL" (shape bidirectional) (at 154.94 82.55 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e9e650db-9ba7-4066-b30b-ed147c4b443b)
)
(symbol (lib_id "Interface_Optical:SFP") (at 195.58 87.63 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f43564e)
(property "Reference" "J301" (id 0) (at 200.66 67.31 0))
(property "Value" "SFP" (id 1) (at 201.93 69.85 0))
(property "Footprint" "Connector:Connector_SFP_and_Cage" (id 2) (at 195.58 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 184.15 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part Number" "C277615" (id 7) (at 195.58 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 038e9792-bbbd-4d6a-ad41-0356a4fa93a7))
(pin "10" (uuid 10036940-5eea-4e30-bc37-609037429be8))
(pin "11" (uuid 3e7e73ce-283c-4d1c-9ffc-53ee8af0b5fb))
(pin "12" (uuid db84bad5-2b93-41a1-af97-f3e7abe37670))
(pin "13" (uuid ed133093-ff3f-4df7-8777-60f2e9812c7e))
(pin "14" (uuid 4671890a-a434-4a77-aba6-d6b87f979260))
(pin "15" (uuid c0747da2-f481-4590-80a8-c3325cebae3d))
(pin "16" (uuid 1eb1fab4-1961-4484-9feb-7de3d8bdfd54))
(pin "17" (uuid 6d808412-5276-400e-aef7-b3f08283aec9))
(pin "18" (uuid 218cf99f-5378-441d-aaf5-b350658a8e6d))
(pin "19" (uuid a89daa8f-0a28-49dc-8b8c-0916b575d294))
(pin "2" (uuid fdb61b3f-be50-4154-9c6e-015949e5994b))
(pin "20" (uuid 3da155dd-f733-4019-ac32-70195979bd3c))
(pin "3" (uuid 836801bd-0b1d-4900-93f6-3a4849b55c8f))
(pin "4" (uuid f19bc81e-c481-42c7-92b7-90d5d113eab2))
(pin "5" (uuid a231a5c3-b8cd-4dcd-ac6c-04c40c185a50))
(pin "6" (uuid 3ab34418-3135-4163-beaf-f3b5e6fb66fc))
(pin "7" (uuid 2cd99076-9f9f-4014-b3a9-1d186c3e6c82))
(pin "8" (uuid 38f5a895-2e66-44d6-88ad-21d251c928c4))
(pin "9" (uuid eb784025-1e64-4416-91a9-efdd757f7b6c))
(pin "CAGE" (uuid 3d0639f8-f684-4a0c-ad0c-7a18cb7a39d8))
)
(symbol (lib_id "Device:R") (at 158.75 69.85 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f43569f)
(property "Reference" "R301" (id 0) (at 160.528 71.0184 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7k" (id 1) (at 160.528 68.707 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 156.972 69.85 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 158.75 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part Number" "C17673" (id 5) (at 158.75 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c0ba1487-370a-4b2b-a0e5-bd2b9fdcdb36))
(pin "2" (uuid 6126bba2-c232-43dc-b909-8425eb8e1c42))
)
(symbol (lib_id "Device:L") (at 96.52 72.39 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f44119b)
(property "Reference" "L301" (id 0) (at 96.52 67.564 90))
(property "Value" "1uH" (id 1) (at 96.52 69.8754 90))
(property "Footprint" "Inductor_SMD:L_1008_2520Metric" (id 2) (at 96.52 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 96.52 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part Number" "C162587" (id 7) (at 96.52 72.39 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ecad3db5-30bf-4531-b9e9-ecf2fd1ed843))
(pin "2" (uuid e8a20df5-93b6-41a2-9efe-d8d02cd6e3e7))
)
(symbol (lib_id "Device:C") (at 71.12 80.01 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f441779)
(property "Reference" "C301" (id 0) (at 68.2244 78.8416 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10uF" (id 1) (at 68.2244 81.153 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 72.0852 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 71.12 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part Number" "C386084" (id 5) (at 71.12 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4562ab23-a5b1-4f5e-8390-b4843190e1cb))
(pin "2" (uuid 6f55a87b-8763-4833-8edc-7075b8c11144))
)
(symbol (lib_id "Device:L") (at 96.52 91.44 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f44a49f)
(property "Reference" "L302" (id 0) (at 96.52 86.614 90))
(property "Value" "1uH" (id 1) (at 96.52 88.9254 90))
(property "Footprint" "Inductor_SMD:L_1008_2520Metric" (id 2) (at 96.52 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 96.52 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part Number" "C162587" (id 6) (at 96.52 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7692ee07-50b5-4b2d-ac83-6a9893c4adbf))
(pin "2" (uuid 4c8fd2e3-4646-4308-93fc-1b7b509f08fe))
)
(symbol (lib_id "Device:C") (at 105.41 78.74 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f44f82d)
(property "Reference" "C303" (id 0) (at 108.331 77.5716 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 108.331 79.883 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 106.3752 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 105.41 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part Number" "C396718" (id 5) (at 105.41 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 58a5a6aa-4ac1-454e-99de-9b74e53d0180))
(pin "2" (uuid 39c6d445-1bf4-43e5-a17e-104b525fa1ea))
)
(symbol (lib_id "Mechanical:Housing_Pad") (at 191.77 45.72 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc9997e)