-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUSB-C-FUSB302-PI.kicad_sch
1347 lines (1332 loc) · 48.4 KB
/
USB-C-FUSB302-PI.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 20230121) (generator eeschema)
(uuid 11b6d0c2-2b6b-4eb7-b6ef-411517eac2cb)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 30.48 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x24" (at 0 -33.02 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x24, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x24_1_1"
(rectangle (start -1.27 -30.353) (end 0 -30.607)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -27.813) (end 0 -28.067)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -25.273) (end 0 -25.527)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -22.733) (end 0 -22.987)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -20.193) (end 0 -20.447)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 20.447) (end 0 20.193)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 22.987) (end 0 22.733)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 25.527) (end 0 25.273)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 28.067) (end 0 27.813)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 29.21) (end 1.27 -31.75)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 27.94 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 25.4 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -20.32 0) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -22.86 0) (length 3.81)
(name "Pin_21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -25.4 0) (length 3.81)
(name "Pin_22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -27.94 0) (length 3.81)
(name "Pin_23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -30.48 0) (length 3.81)
(name "Pin_24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 22.86 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 20.32 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 17.78 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 15.24 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 12.7 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 156.21 46.355) (diameter 0) (color 0 0 0 0)
(uuid 13d71c13-3923-4fe9-8b2c-b3e31e58c564)
)
(junction (at 127.635 43.18) (diameter 0) (color 0 0 0 0)
(uuid 14d98e1a-b697-4601-ab20-aa344e6da429)
)
(junction (at 27.94 33.655) (diameter 0) (color 0 0 0 0)
(uuid 16653ac0-c827-453e-ac85-d5303c50ad26)
)
(junction (at 127.635 55.88) (diameter 0) (color 0 0 0 0)
(uuid 19dd4d6a-4442-4c8c-8271-23b9a13508a5)
)
(junction (at 26.035 41.275) (diameter 0) (color 0 0 0 0)
(uuid 1a4d7b36-08e7-4960-b114-719884f0b4f7)
)
(junction (at 55.88 60.96) (diameter 0) (color 0 0 0 0)
(uuid 1be2f420-365b-4f59-afd4-1d2a1267cf0e)
)
(junction (at 127.635 33.02) (diameter 0) (color 0 0 0 0)
(uuid 225ac949-1b97-4e16-91b1-e15cd78eb532)
)
(junction (at 123.825 48.26) (diameter 0) (color 0 0 0 0)
(uuid 226d8879-bb90-49f4-88d4-33bae5d51ade)
)
(junction (at 26.035 69.215) (diameter 0) (color 0 0 0 0)
(uuid 251fef1b-32e0-47b7-b4c6-9d4165fb81de)
)
(junction (at 29.845 48.895) (diameter 0) (color 0 0 0 0)
(uuid 2b58673f-89cd-4c18-9400-370ae0d062bf)
)
(junction (at 127.635 45.72) (diameter 0) (color 0 0 0 0)
(uuid 433c7031-c950-437a-8a27-f2f02f2088cf)
)
(junction (at 114.935 35.56) (diameter 0) (color 0 0 0 0)
(uuid 6626d8e9-d8f3-49c6-bb18-899a883181b7)
)
(junction (at 127.635 40.64) (diameter 0) (color 0 0 0 0)
(uuid 6b56e9ad-ed1d-4371-ae6e-fe721072aaf8)
)
(junction (at 27.94 36.195) (diameter 0) (color 0 0 0 0)
(uuid 6f31fc26-010e-40ae-aee8-188a9419a9cd)
)
(junction (at 26.035 31.115) (diameter 0) (color 0 0 0 0)
(uuid 71ac115c-639a-4fa2-b70f-10139e9ffb7c)
)
(junction (at 26.035 46.355) (diameter 0) (color 0 0 0 0)
(uuid 7c910533-032b-49d6-9000-81ccae519947)
)
(junction (at 26.035 56.515) (diameter 0) (color 0 0 0 0)
(uuid 94474074-9b63-483b-b505-0698728bb0f8)
)
(junction (at 26.035 28.575) (diameter 0) (color 0 0 0 0)
(uuid 9a59a9a9-f0c6-45c8-bb0e-aa87145a2362)
)
(junction (at 26.035 43.815) (diameter 0) (color 0 0 0 0)
(uuid 9d1981b2-8357-4ed8-a358-1c524c9e59af)
)
(junction (at 127.635 53.34) (diameter 0) (color 0 0 0 0)
(uuid bc5b0444-a936-4ee1-a8c0-1b73eb8174db)
)
(junction (at 26.035 53.975) (diameter 0) (color 0 0 0 0)
(uuid bc7959b8-1206-4569-bf1e-0d74d7d479f6)
)
(junction (at 114.935 28.575) (diameter 0) (color 0 0 0 0)
(uuid cf022829-8aec-4800-980e-8c55a4fef6cb)
)
(junction (at 53.975 58.42) (diameter 0) (color 0 0 0 0)
(uuid d8344bff-51e7-498c-b6f6-8d8ccf43465c)
)
(junction (at 57.785 63.5) (diameter 0) (color 0 0 0 0)
(uuid fb09077c-10c4-40ea-9ef9-afc7a08f56e0)
)
(wire (pts (xy 117.475 20.955) (xy 57.15 20.955))
(stroke (width 0) (type default))
(uuid 024861c5-6e03-40cc-b1c9-bad58c0ad161)
)
(wire (pts (xy 24.13 69.215) (xy 26.035 69.215))
(stroke (width 0) (type default))
(uuid 028ddaef-663b-43bf-9299-753c68f1ac9b)
)
(wire (pts (xy 34.925 79.375) (xy 24.13 79.375))
(stroke (width 0) (type default))
(uuid 035772f0-5e9f-4ccc-9799-96757e32cae3)
)
(wire (pts (xy 129.54 71.12) (xy 116.84 71.12))
(stroke (width 0) (type default))
(uuid 03be2731-6801-4711-9d03-8eb19579cd34)
)
(wire (pts (xy 60.325 92.71) (xy 34.925 92.71))
(stroke (width 0) (type default))
(uuid 054d31af-d106-49d6-97e9-1659aaaf0493)
)
(wire (pts (xy 40.64 86.995) (xy 60.325 86.995))
(stroke (width 0) (type default))
(uuid 071ac49d-eca3-4dcb-959c-4b5b86e6f4a7)
)
(wire (pts (xy 57.785 41.275) (xy 57.785 63.5))
(stroke (width 0) (type default))
(uuid 0bc45d63-d36a-4455-95f4-3820b2554f70)
)
(wire (pts (xy 127.635 53.34) (xy 127.635 55.88))
(stroke (width 0) (type default))
(uuid 0e3c52cb-2527-4de2-99f3-e9c2e632f7bb)
)
(wire (pts (xy 53.975 74.295) (xy 60.325 74.295))
(stroke (width 0) (type default))
(uuid 11b944f9-3265-4960-bc8a-667217df454d)
)
(wire (pts (xy 120.015 27.94) (xy 120.015 18.415))
(stroke (width 0) (type default))
(uuid 13b3537f-bb27-446b-b09f-d2cc9a5d3354)
)
(wire (pts (xy 24.13 46.355) (xy 26.035 46.355))
(stroke (width 0) (type default))
(uuid 1512a141-a664-4657-a2d7-341b91b8a435)
)
(wire (pts (xy 114.935 38.1) (xy 114.935 35.56))
(stroke (width 0) (type default))
(uuid 15b37963-5439-408c-af06-73fd11325205)
)
(wire (pts (xy 156.21 46.355) (xy 156.21 56.515))
(stroke (width 0) (type default))
(uuid 16503e52-392d-4de0-820a-4f4b4aab4e9b)
)
(wire (pts (xy 26.035 31.115) (xy 26.035 41.275))
(stroke (width 0) (type default))
(uuid 16abe981-0442-4694-9c00-6830b9048630)
)
(wire (pts (xy 46.355 80.645) (xy 46.355 61.595))
(stroke (width 0) (type default))
(uuid 19fed921-84af-489e-981f-1d88b578cb67)
)
(wire (pts (xy 26.035 69.215) (xy 26.035 88.265))
(stroke (width 0) (type default))
(uuid 1debd64d-e391-45bf-9bd9-8af3a75875e5)
)
(wire (pts (xy 24.13 31.115) (xy 26.035 31.115))
(stroke (width 0) (type default))
(uuid 1f018857-5472-40cf-a9b5-6ba71784fc95)
)
(wire (pts (xy 36.83 90.805) (xy 60.325 90.805))
(stroke (width 0) (type default))
(uuid 1fdefec7-2907-414b-b464-d71092794b74)
)
(wire (pts (xy 120.65 76.2) (xy 129.54 76.2))
(stroke (width 0) (type default))
(uuid 231b9fce-ce90-4d09-b9e6-33414cd40278)
)
(wire (pts (xy 26.035 56.515) (xy 26.035 69.215))
(stroke (width 0) (type default))
(uuid 23404fbc-a494-4be6-99bb-c378f03129d3)
)
(wire (pts (xy 60.325 84.455) (xy 42.545 84.455))
(stroke (width 0) (type default))
(uuid 2559d937-3b6f-4722-bc86-8f1b4a6eae01)
)
(wire (pts (xy 117.475 30.48) (xy 117.475 20.955))
(stroke (width 0) (type default))
(uuid 27df27be-e23f-47ea-8194-9e99638db086)
)
(wire (pts (xy 36.83 76.835) (xy 36.83 90.805))
(stroke (width 0) (type default))
(uuid 27f5dc16-7e88-47f1-b3c6-7b0af2aeaf84)
)
(wire (pts (xy 57.15 20.955) (xy 57.15 33.655))
(stroke (width 0) (type default))
(uuid 28b1d125-2d89-4da5-b2c7-aba685262452)
)
(wire (pts (xy 24.13 33.655) (xy 27.94 33.655))
(stroke (width 0) (type default))
(uuid 2c23a041-a126-4fc0-87b3-e7ee8a2aa94c)
)
(wire (pts (xy 24.13 81.915) (xy 33.02 81.915))
(stroke (width 0) (type default))
(uuid 2c499c75-8d56-4c83-8411-3d6b7792fd59)
)
(wire (pts (xy 114.935 23.495) (xy 27.94 23.495))
(stroke (width 0) (type default))
(uuid 2c9ca22c-5962-4bb1-b126-75d6c4e41917)
)
(wire (pts (xy 24.13 48.895) (xy 29.845 48.895))
(stroke (width 0) (type default))
(uuid 2d01ab81-6b93-4c57-b650-a5594dc1e3b3)
)
(wire (pts (xy 24.13 76.835) (xy 36.83 76.835))
(stroke (width 0) (type default))
(uuid 2e424e23-5cb4-4042-82b7-f2c1d044ab11)
)
(wire (pts (xy 24.13 59.055) (xy 48.26 59.055))
(stroke (width 0) (type default))
(uuid 2ffd0457-46ab-4b50-8d3f-232e9ed6f700)
)
(wire (pts (xy 33.02 94.615) (xy 60.325 94.615))
(stroke (width 0) (type default))
(uuid 346b60e4-aaae-4c14-aba9-bb48ff0713cf)
)
(wire (pts (xy 123.825 50.8) (xy 129.54 50.8))
(stroke (width 0) (type default))
(uuid 372aa58b-c0ae-4474-b578-dcfe473b9f48)
)
(wire (pts (xy 34.925 92.71) (xy 34.925 79.375))
(stroke (width 0) (type default))
(uuid 37a17387-e88b-4d36-8610-0a03f008dad9)
)
(wire (pts (xy 24.13 51.435) (xy 29.845 51.435))
(stroke (width 0) (type default))
(uuid 3accfc04-b840-4082-9f0e-bc54b12253d9)
)
(wire (pts (xy 127.635 33.02) (xy 127.635 40.64))
(stroke (width 0) (type default))
(uuid 3ce10a89-128c-495c-8fb1-2fcea0a56476)
)
(wire (pts (xy 24.13 36.195) (xy 27.94 36.195))
(stroke (width 0) (type default))
(uuid 3d7be10f-5aed-4b6c-b13a-67c1f8d8b641)
)
(wire (pts (xy 116.84 71.12) (xy 116.84 76.2))
(stroke (width 0) (type default))
(uuid 448a3d29-0d16-43fa-9057-9d07cd6b63eb)
)
(wire (pts (xy 38.735 74.295) (xy 24.13 74.295))
(stroke (width 0) (type default))
(uuid 4be48cde-4158-4ae3-af80-124658aa65e9)
)
(wire (pts (xy 126.365 85.725) (xy 111.125 85.725))
(stroke (width 0) (type default))
(uuid 4bebb1fe-596e-41d4-b653-bc45a6a71805)
)
(wire (pts (xy 114.935 38.1) (xy 129.54 38.1))
(stroke (width 0) (type default))
(uuid 50c6d52c-f971-4021-9926-ff1d2f7e8266)
)
(wire (pts (xy 50.165 30.48) (xy 59.69 30.48))
(stroke (width 0) (type default))
(uuid 512d393c-965d-40f4-aa4f-bce4f30f6f2c)
)
(wire (pts (xy 124.46 83.82) (xy 124.46 81.28))
(stroke (width 0) (type default))
(uuid 518058d8-c033-4403-93a1-a405a8c927a5)
)
(wire (pts (xy 129.54 25.4) (xy 127.635 25.4))
(stroke (width 0) (type default))
(uuid 52165d34-03fe-4125-8e00-f38e6546fc56)
)
(wire (pts (xy 127.635 40.64) (xy 129.54 40.64))
(stroke (width 0) (type default))
(uuid 52bf3b18-2393-4547-95b4-072d863ddb2e)
)
(wire (pts (xy 33.02 81.915) (xy 33.02 94.615))
(stroke (width 0) (type default))
(uuid 535e9062-2e6d-4a97-9ed8-37e768da9e9b)
)
(wire (pts (xy 24.13 28.575) (xy 26.035 28.575))
(stroke (width 0) (type default))
(uuid 55724c7e-2805-4c26-8f85-ae8b752e2cfd)
)
(wire (pts (xy 127.635 53.34) (xy 129.54 53.34))
(stroke (width 0) (type default))
(uuid 55aed023-1345-411f-aed2-571f0896f079)
)
(wire (pts (xy 111.125 80.01) (xy 120.65 80.01))
(stroke (width 0) (type default))
(uuid 567a2a6a-26b8-4dd0-bca9-97e39a2d9cec)
)
(wire (pts (xy 59.69 41.275) (xy 57.785 41.275))
(stroke (width 0) (type default))
(uuid 58e82d03-c0de-4c8f-bfda-45455dcb827a)
)
(wire (pts (xy 24.13 26.035) (xy 26.035 26.035))
(stroke (width 0) (type default))
(uuid 59848b4e-f297-4ffa-9b87-f088466e6622)
)
(wire (pts (xy 127.635 25.4) (xy 127.635 33.02))
(stroke (width 0) (type default))
(uuid 5b2685ca-0e75-47b1-8590-33f202afc22c)
)
(wire (pts (xy 52.07 68.58) (xy 60.325 68.58))
(stroke (width 0) (type default))
(uuid 5d333e03-d3d6-4353-8cf3-b1cef576bd62)
)
(wire (pts (xy 26.035 53.975) (xy 26.035 56.515))
(stroke (width 0) (type default))
(uuid 5e8a9026-30df-4d5c-a871-110666a0bc0c)
)
(wire (pts (xy 127.635 45.72) (xy 127.635 53.34))
(stroke (width 0) (type default))
(uuid 6057a4b0-bc66-4f2a-8c6e-84149145f6ca)
)
(wire (pts (xy 129.54 45.72) (xy 127.635 45.72))
(stroke (width 0) (type default))
(uuid 608ca349-4d0f-49e4-8d4e-44cfa57f7ec1)
)
(wire (pts (xy 129.54 73.66) (xy 118.745 73.66))
(stroke (width 0) (type default))
(uuid 64d44a44-a488-4f4a-b1b4-30354986af31)
)
(wire (pts (xy 114.935 35.56) (xy 114.935 28.575))
(stroke (width 0) (type default))
(uuid 659fe104-3cc1-4c12-824a-7876bbc82558)
)
(wire (pts (xy 26.035 43.815) (xy 26.035 46.355))
(stroke (width 0) (type default))
(uuid 65fbd82a-c905-4d15-aae6-fc77f23fbe43)
)
(wire (pts (xy 59.69 46.355) (xy 53.975 46.355))
(stroke (width 0) (type default))
(uuid 66b176f8-3ea8-4a32-83e2-69ae40123a43)
)
(wire (pts (xy 27.94 23.495) (xy 27.94 33.655))
(stroke (width 0) (type default))
(uuid 694fb28a-0d2a-4f79-8460-c6e567a16e13)
)
(wire (pts (xy 29.845 48.895) (xy 29.845 20.955))
(stroke (width 0) (type default))
(uuid 6a2efa2d-061b-48f9-a9a8-eea95887fbb1)
)
(wire (pts (xy 57.785 63.5) (xy 57.785 76.2))
(stroke (width 0) (type default))
(uuid 6a861da9-33d5-4367-a4f7-a64e465d5456)
)
(wire (pts (xy 113.03 72.39) (xy 111.125 72.39))
(stroke (width 0) (type default))
(uuid 6b28e1ee-478a-4c48-baed-d6e16656b7e4)
)
(wire (pts (xy 29.845 51.435) (xy 29.845 48.895))
(stroke (width 0) (type default))
(uuid 6bc2626d-46a8-4d3e-89da-9aca99eb5c15)
)
(wire (pts (xy 55.88 60.96) (xy 55.88 43.815))
(stroke (width 0) (type default))
(uuid 6c04c96b-6b71-4fe6-823e-acd7efba99f5)
)
(wire (pts (xy 54.61 18.415) (xy 54.61 36.195))
(stroke (width 0) (type default))
(uuid 6e406e63-9b65-4810-8d41-1339a24b2a5b)
)
(wire (pts (xy 127.635 55.88) (xy 127.635 88.265))
(stroke (width 0) (type default))
(uuid 7437cf69-38cb-4115-beb5-f137b1a70e90)
)
(wire (pts (xy 31.115 96.52) (xy 60.325 96.52))
(stroke (width 0) (type default))
(uuid 752e4b5e-9c2a-4b03-9435-6ca96c6a4a78)
)
(wire (pts (xy 111.125 78.105) (xy 118.745 78.105))
(stroke (width 0) (type default))
(uuid 76d89be9-9f2c-4612-9ee1-1e77a8407214)
)
(wire (pts (xy 54.61 36.195) (xy 59.69 36.195))
(stroke (width 0) (type default))
(uuid 77ddbdb3-3038-4ef7-885d-2f33119ff5db)
)
(wire (pts (xy 122.555 81.915) (xy 122.555 78.74))
(stroke (width 0) (type default))
(uuid 780751a7-bb7c-4562-903d-723537946fa6)
)
(wire (pts (xy 120.65 80.01) (xy 120.65 76.2))
(stroke (width 0) (type default))
(uuid 7e077fbf-c026-4750-bcdd-0e2da8805add)
)
(wire (pts (xy 116.84 76.2) (xy 111.125 76.2))
(stroke (width 0) (type default))
(uuid 7e735cc7-dc70-41f7-876f-3fe8dc463b45)
)
(wire (pts (xy 26.035 26.035) (xy 26.035 28.575))
(stroke (width 0) (type default))
(uuid 81e8b186-dfb0-4aa9-8500-4bed6d025128)
)
(wire (pts (xy 26.035 46.355) (xy 26.035 53.975))
(stroke (width 0) (type default))
(uuid 82fd1886-c142-4c7c-ba9c-2882290f7b4d)
)
(wire (pts (xy 53.975 58.42) (xy 129.54 58.42))
(stroke (width 0) (type default))
(uuid 838defa9-4e5f-470c-aeea-a9fc025a9bbd)
)
(wire (pts (xy 24.13 43.815) (xy 26.035 43.815))
(stroke (width 0) (type default))
(uuid 83e5a01c-c60f-4f16-bbaa-485464c9947b)
)
(wire (pts (xy 38.735 88.9) (xy 38.735 74.295))
(stroke (width 0) (type default))
(uuid 846d14d8-71ba-4569-a27c-d54615b68c1c)
)
(wire (pts (xy 27.94 36.195) (xy 27.94 38.735))
(stroke (width 0) (type default))
(uuid 85351571-c570-4265-a426-024060b0bef7)
)
(wire (pts (xy 50.165 69.85) (xy 50.165 30.48))
(stroke (width 0) (type default))
(uuid 855d459a-ac0f-48e3-a26f-86dbaab6ff5e)
)
(wire (pts (xy 156.21 46.355) (xy 156.21 43.815))
(stroke (width 0) (type default))
(uuid 86eb0e20-4028-4790-a40d-7b3278a5cf23)
)
(wire (pts (xy 123.825 48.26) (xy 123.825 20.32))
(stroke (width 0) (type default))
(uuid 88a4061a-4702-4191-a4c2-e5183db04315)
)
(wire (pts (xy 60.325 72.39) (xy 55.88 72.39))
(stroke (width 0) (type default))
(uuid 8a8027b8-b17a-4b0a-b926-ab3d530452fd)
)
(wire (pts (xy 60.325 88.9) (xy 38.735 88.9))
(stroke (width 0) (type default))
(uuid 8a84e838-36bc-4d92-9234-9b31e24edaed)
)
(wire (pts (xy 26.035 41.275) (xy 26.035 43.815))
(stroke (width 0) (type default))
(uuid 8bcce32e-178e-496a-b5ce-8973ea34aea4)
)
(wire (pts (xy 48.26 59.055) (xy 48.26 78.74))
(stroke (width 0) (type default))
(uuid 91839dee-e87f-440f-be5e-14a532f999b5)
)
(wire (pts (xy 55.88 72.39) (xy 55.88 60.96))
(stroke (width 0) (type default))
(uuid 91f18378-e205-48ea-b610-cec28ee142fd)
)
(wire (pts (xy 127.635 43.18) (xy 127.635 45.72))
(stroke (width 0) (type default))
(uuid 932a60b4-ea58-44a9-bdbc-752d45fb0ccf)
)
(wire (pts (xy 26.035 28.575) (xy 26.035 31.115))
(stroke (width 0) (type default))
(uuid 99c7a7e8-ff22-4746-9660-be6f6d2e4997)
)
(wire (pts (xy 53.975 58.42) (xy 53.975 74.295))
(stroke (width 0) (type default))
(uuid 9d4c03f5-b9c9-4996-9449-c27d09623cd0)
)
(wire (pts (xy 44.45 64.135) (xy 44.45 82.55))
(stroke (width 0) (type default))
(uuid a3113310-9411-471a-bc20-d073aac4678a)
)
(wire (pts (xy 129.54 66.04) (xy 113.03 66.04))
(stroke (width 0) (type default))
(uuid a3df57fd-9d9c-4045-9a5f-c359e4783fc8)
)
(wire (pts (xy 42.545 66.675) (xy 42.545 84.455))
(stroke (width 0) (type default))
(uuid a426a878-2a75-4a54-9096-95ec403aebf8)
)
(wire (pts (xy 126.365 83.82) (xy 126.365 85.725))
(stroke (width 0) (type default))
(uuid a67d1f5d-af46-4142-8f9b-9e63f4f3b9c3)
)
(wire (pts (xy 127.635 40.64) (xy 127.635 43.18))
(stroke (width 0) (type default))
(uuid a74ce579-530d-42d6-ab86-67d0d2c89d64)
)
(wire (pts (xy 129.54 30.48) (xy 117.475 30.48))
(stroke (width 0) (type default))
(uuid ad2d16ab-db34-44cf-94e8-4f826cbb8ed7)
)
(wire (pts (xy 114.935 68.58) (xy 114.935 74.295))
(stroke (width 0) (type default))
(uuid ad9b12ce-1414-4690-9ea4-74e3a69a98dd)
)
(wire (pts (xy 57.15 33.655) (xy 59.69 33.655))
(stroke (width 0) (type default))
(uuid add406c1-8501-47c9-8e0a-55b041a56cb3)
)
(wire (pts (xy 44.45 82.55) (xy 60.325 82.55))
(stroke (width 0) (type default))
(uuid ae885ee5-348f-4c57-b2db-a60094c99690)
)
(wire (pts (xy 123.825 50.8) (xy 123.825 48.26))
(stroke (width 0) (type default))
(uuid b177cdd5-ac48-4ed7-9ae4-e1574425d578)
)
(wire (pts (xy 55.88 60.96) (xy 129.54 60.96))
(stroke (width 0) (type default))
(uuid b765f049-c7c0-470f-99c3-4edb6ee7b8bc)
)
(wire (pts (xy 111.125 83.82) (xy 124.46 83.82))
(stroke (width 0) (type default))
(uuid b78460c3-b358-4c9d-af07-3a8273ce640a)
)
(wire (pts (xy 31.115 84.455) (xy 31.115 96.52))
(stroke (width 0) (type default))
(uuid b86016a6-d5c8-4318-883d-520b682423bf)
)
(wire (pts (xy 57.785 76.2) (xy 60.325 76.2))
(stroke (width 0) (type default))
(uuid bb9f4e29-669f-4955-98dc-1f4a9d1aed37)
)
(wire (pts (xy 55.88 43.815) (xy 59.69 43.815))
(stroke (width 0) (type default))
(uuid be4d939f-b0d6-433d-a028-bdc2152508c6)
)
(wire (pts (xy 24.13 41.275) (xy 26.035 41.275))
(stroke (width 0) (type default))
(uuid bf278be5-e15d-4c06-aa68-ce5f25925fbc)
)
(wire (pts (xy 27.94 33.655) (xy 27.94 36.195))
(stroke (width 0) (type default))
(uuid c2314f44-6bc0-4122-b827-08a3b0427665)
)
(wire (pts (xy 113.03 66.04) (xy 113.03 72.39))
(stroke (width 0) (type default))
(uuid c4a6a847-c3d0-4d50-b2ce-502ac716e6e2)
)
(wire (pts (xy 48.26 78.74) (xy 60.325 78.74))
(stroke (width 0) (type default))
(uuid c7369c0b-8403-4518-8e7f-5aa0c010d381)
)
(wire (pts (xy 114.935 35.56) (xy 129.54 35.56))
(stroke (width 0) (type default))
(uuid c8d5a881-6de0-44e3-b3d2-dafcd565283f)
)
(wire (pts (xy 24.13 38.735) (xy 27.94 38.735))
(stroke (width 0) (type default))
(uuid c955213d-88ea-42ea-bbf2-c5853cc7b5a2)
)
(wire (pts (xy 123.825 48.26) (xy 129.54 48.26))
(stroke (width 0) (type default))
(uuid c9cfe20c-25a4-499b-b9ad-e53ed1b98ffa)
)
(wire (pts (xy 24.13 64.135) (xy 44.45 64.135))
(stroke (width 0) (type default))
(uuid c9f68624-f9d4-4b72-9ec9-f2f9221a8c63)
)
(wire (pts (xy 24.13 84.455) (xy 31.115 84.455))
(stroke (width 0) (type default))
(uuid ca063f36-f6c1-4f5d-9191-804a965615bd)
)
(wire (pts (xy 129.54 33.02) (xy 127.635 33.02))
(stroke (width 0) (type default))
(uuid cae85875-a8b7-4e79-8db5-edb7e50e113e)
)
(wire (pts (xy 127.635 55.88) (xy 129.54 55.88))
(stroke (width 0) (type default))
(uuid cb6f1774-2766-4840-837a-48e1abfafffc)
)
(wire (pts (xy 24.13 56.515) (xy 26.035 56.515))
(stroke (width 0) (type default))
(uuid cb799457-9eb4-4fce-953e-3d6cf30d4618)
)
(wire (pts (xy 129.54 27.94) (xy 120.015 27.94))
(stroke (width 0) (type default))
(uuid cc8d9f0a-17af-495d-b9d5-1599744e8f52)
)
(wire (pts (xy 52.07 28.575) (xy 52.07 68.58))
(stroke (width 0) (type default))
(uuid ceaac9ec-3672-4b28-a1d8-83d3a9ad31a6)
)
(wire (pts (xy 60.325 80.645) (xy 46.355 80.645))
(stroke (width 0) (type default))
(uuid d04c4b11-bc68-490f-94f0-594a0dac896e)
)
(wire (pts (xy 42.545 66.675) (xy 24.13 66.675))
(stroke (width 0) (type default))
(uuid d05b83ea-0294-46c2-a02f-1be6e7028662)
)
(wire (pts (xy 60.325 69.85) (xy 50.165 69.85))
(stroke (width 0) (type default))
(uuid d1a188e2-3e95-4d14-a715-d19a977e9e99)
)
(wire (pts (xy 118.745 73.66) (xy 118.745 78.105))
(stroke (width 0) (type default))
(uuid d6efe1a7-a28c-4176-84c8-b32f557d7b59)
)
(wire (pts (xy 53.975 46.355) (xy 53.975 58.42))
(stroke (width 0) (type default))
(uuid d875f1b3-5261-46c4-82ce-e99366d2334d)
)
(wire (pts (xy 24.13 53.975) (xy 26.035 53.975))
(stroke (width 0) (type default))
(uuid d8825ddc-613c-464a-ae77-dbaf89404089)
)
(wire (pts (xy 156.21 43.815) (xy 158.75 43.815))
(stroke (width 0) (type default))
(uuid d9e6d9fb-cfba-48eb-9a38-a840622efd6c)
)
(wire (pts (xy 122.555 78.74) (xy 129.54 78.74))
(stroke (width 0) (type default))
(uuid dcef61d5-d0b2-4c28-9de8-3d6dd620f286)
)
(wire (pts (xy 59.69 28.575) (xy 52.07 28.575))
(stroke (width 0) (type default))
(uuid dd8b0491-8f45-40af-9112-f531fbb122c6)
)
(wire (pts (xy 114.935 28.575) (xy 114.935 23.495))
(stroke (width 0) (type default))
(uuid de488dc7-06d2-4d5e-9aac-0203d0484a21)
)
(wire (pts (xy 110.49 28.575) (xy 114.935 28.575))
(stroke (width 0) (type default))
(uuid dfc6bf98-353b-4d93-843d-e4897411a11a)
)
(wire (pts (xy 111.125 81.915) (xy 122.555 81.915))
(stroke (width 0) (type default))
(uuid e2786615-d5c8-48a1-b294-f6092267e442)
)
(wire (pts (xy 129.54 43.18) (xy 127.635 43.18))
(stroke (width 0) (type default))
(uuid e7f54b96-5d34-4a40-a540-abd38a9406e3)
)
(wire (pts (xy 114.935 74.295) (xy 111.125 74.295))
(stroke (width 0) (type default))
(uuid e91771d3-8bd3-4702-bb3f-18ac345a6b78)
)
(wire (pts (xy 124.46 81.28) (xy 129.54 81.28))
(stroke (width 0) (type default))
(uuid eeb427d5-c814-407e-a043-b651375d9ba4)
)
(wire (pts (xy 129.54 68.58) (xy 114.935 68.58))
(stroke (width 0) (type default))
(uuid f12ffe00-2192-4cb4-be59-c54a92c92bc7)
)
(wire (pts (xy 57.785 63.5) (xy 129.54 63.5))
(stroke (width 0) (type default))
(uuid f2ff82c8-3498-4232-9f29-ba2e4ebcdb41)
)
(wire (pts (xy 156.21 46.355) (xy 158.75 46.355))
(stroke (width 0) (type default))
(uuid f3996ced-24df-44ad-b202-97f1899758c9)
)
(wire (pts (xy 24.13 71.755) (xy 40.64 71.755))
(stroke (width 0) (type default))
(uuid f3b0b275-d5e5-4bb7-8e61-12814291c6b2)
)
(wire (pts (xy 46.355 61.595) (xy 24.13 61.595))
(stroke (width 0) (type default))
(uuid f904f5df-8f64-4f38-b580-ca170656f8dd)
)
(wire (pts (xy 129.54 83.82) (xy 126.365 83.82))
(stroke (width 0) (type default))
(uuid fb00ccd0-fbf0-4219-a69f-ccebfae5d867)
)
(wire (pts (xy 40.64 71.755) (xy 40.64 86.995))
(stroke (width 0) (type default))
(uuid fd4efbe8-12df-43b6-8d35-ac1f11242508)
)
(wire (pts (xy 120.015 18.415) (xy 54.61 18.415))
(stroke (width 0) (type default))
(uuid fdac4ead-aa38-4b92-ac65-1a473659b039)
)
(symbol (lib_id "power:GND") (at 127.635 88.265 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 05e09bfb-4016-4fe5-809b-18e1b411f264)
(property "Reference" "#PWR014" (at 127.635 94.615 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 127.635 92.71 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 127.635 88.265 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127.635 88.265 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e2495003-c656-4fe1-b859-1aad91999235))
(instances
(project "USB-C-FUSB302-PI"
(path "/11b6d0c2-2b6b-4eb7-b6ef-411517eac2cb"
(reference "#PWR014") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 29.845 20.955 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 219fd29d-01c4-445f-9d55-c99b7fd9e2d4)
(property "Reference" "#PWR011" (at 29.845 24.765 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 29.845 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 29.845 20.955 0)
(effects (font (size 1.27 1.27)) hide)