-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpsu5v.kicad_sch
1667 lines (1624 loc) · 65.1 KB
/
psu5v.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 d18cff06-e34d-417a-a490-dca0b217d535)
(paper "A3")
(title_block
(title "+5V PSU")
(date "2022-01-12")
(rev "4")
(company "Copyright © 2022 Christian Kuhtz")
(comment 2 "CERN-OHL-W v2 or later")
)
(lib_symbols
(symbol "Capacitor_Tantalum_SMD_MyOwn:CP_EIA-7343-31_Kemet-D" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "CP_EIA-7343-31_Kemet-D" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_Tantalum_SMD_MyOwn:CP_EIA-7343-31_Kemet-D" (id 2) (at 0 -9.525 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 kemet" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, small symbol, CP_EIA-7343-31_Kemet-D" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP_EIA-7343-31_Kemet-D_0_1"
(rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.524 0.6858) (end 1.524 0.3048)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.524)
(xy -0.762 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.27)
(xy -1.016 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "CP_EIA-7343-31_Kemet-D_1_1"
(pin passive line (at 0 2.54 270) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Switching_Diodes:AP64501SP-13" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -0.635 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AP64501SP-13" (id 1) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Regulator_Switching_Diodes:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias" (id 2) (at 0 -25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -0.635 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Diodes" (id 4) (at 0 -20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "AP64501SP-13" (id 5) (at 0 -22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "3.8V to 40V Input 5A Low IQ Synchronous Buck Converter with Programmable Soft-Start Time 8-Pin SOIC EP T/R" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AP64501SP-13_0_1"
(rectangle (start -6.35 6.35) (end 6.35 -6.35)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AP64501SP-13_1_1"
(pin passive line (at -8.89 3.81 0) (length 2.54)
(name "BST" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -8.89 1.27 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 -1.27 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 -3.81 0) (length 2.54)
(name "SS" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 8.89 -3.81 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 8.89 -1.27 180) (length 2.54)
(name "COMP" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 8.89 1.27 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 8.89 3.81 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -8.89 90) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(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" "power-flag" (id 4) (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" (id 5) (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) (color 0 0 0 0))
(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))))
)
)
)
(symbol "pspice:INDUCTOR" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "INDUCTOR" (id 1) (at 0 -1.27 0)
(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" "simulation" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor symbol for simulation only" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INDUCTOR_0_1"
(arc (start -2.54 0) (mid -3.81 1.27) (end -5.08 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid -1.27 1.27) (end -2.54 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.54 0) (mid 1.27 1.27) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 5.08 0) (mid 3.81 1.27) (end 2.54 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "INDUCTOR_1_1"
(pin input line (at -6.35 0 0) (length 1.27)
(name "1" (effects (font (size 0.762 0.762))))
(number "1" (effects (font (size 0.762 0.762))))
)
(pin input line (at 6.35 0 180) (length 1.27)
(name "2" (effects (font (size 0.762 0.762))))
(number "2" (effects (font (size 0.762 0.762))))
)
)
)
)
(junction (at 91.44 133.35) (diameter 0.9144) (color 0 0 0 0)
(uuid 00b32290-b6a3-4fed-82ff-3034599f39a3)
)
(junction (at 194.31 147.32) (diameter 1.016) (color 0 0 0 0)
(uuid 09cf0645-d8e1-425c-a1b1-50dc308b5fe2)
)
(junction (at 306.705 106.68) (diameter 0) (color 0 0 0 0)
(uuid 0fa0e183-23fd-4787-b228-f9207d787009)
)
(junction (at 106.68 133.35) (diameter 0.9144) (color 0 0 0 0)
(uuid 139845db-428c-441f-ab00-21d347aa3d8b)
)
(junction (at 226.06 128.27) (diameter 1.016) (color 0 0 0 0)
(uuid 17c56aac-1c19-441e-ad0e-d5f91eeedcde)
)
(junction (at 269.24 116.84) (diameter 0.9144) (color 0 0 0 0)
(uuid 1c32e674-b900-4cad-b800-47a5c2453658)
)
(junction (at 228.6 106.68) (diameter 1.016) (color 0 0 0 0)
(uuid 340170db-45d6-4c78-9448-445128dd4314)
)
(junction (at 226.06 106.68) (diameter 0.9144) (color 0 0 0 0)
(uuid 497a3aba-0f0c-436e-9543-aa7c20ad968e)
)
(junction (at 279.4 116.84) (diameter 0.9144) (color 0 0 0 0)
(uuid 56d2c581-0e1d-4968-9265-81ebcc2ced46)
)
(junction (at 226.06 147.32) (diameter 1.016) (color 0 0 0 0)
(uuid 5e913aea-9f40-4ef2-954f-5459dfa8324f)
)
(junction (at 248.92 106.68) (diameter 0.9144) (color 0 0 0 0)
(uuid 7fd42837-f5c5-4745-aa29-c722e6e8c542)
)
(junction (at 137.16 133.35) (diameter 0.9144) (color 0 0 0 0)
(uuid 81049ca2-49e7-44ea-98ba-da99c1259c4b)
)
(junction (at 106.68 123.19) (diameter 0.9144) (color 0 0 0 0)
(uuid 817cea77-3614-46eb-ac46-8f839c322ae1)
)
(junction (at 259.08 116.84) (diameter 0.9144) (color 0 0 0 0)
(uuid 84f90a15-76dd-441a-b440-962c336c2b22)
)
(junction (at 269.24 106.68) (diameter 0.9144) (color 0 0 0 0)
(uuid 8c7bd4ce-3cc3-4104-be74-26d37631d034)
)
(junction (at 191.77 106.68) (diameter 1.016) (color 0 0 0 0)
(uuid 90033174-e9d8-4aed-9ec7-ca20b26c50cd)
)
(junction (at 121.92 123.19) (diameter 0.9144) (color 0 0 0 0)
(uuid ac6f6ed4-8668-453c-b29a-e5d6005ea361)
)
(junction (at 279.4 106.68) (diameter 0.9144) (color 0 0 0 0)
(uuid b4ac9ced-c2e0-4836-a46e-6affbff21678)
)
(junction (at 290.83 106.68) (diameter 0.9144) (color 0 0 0 0)
(uuid c8c01ccd-b5d2-48a3-9337-31437bc0d5b2)
)
(junction (at 259.08 106.68) (diameter 0.9144) (color 0 0 0 0)
(uuid c912059d-5f7c-4079-af03-81ed94feabdd)
)
(junction (at 182.88 147.32) (diameter 1.016) (color 0 0 0 0)
(uuid d665b41c-c6f8-4a45-8ffb-b5dec65a09a3)
)
(junction (at 152.4 133.35) (diameter 0.9144) (color 0 0 0 0)
(uuid d80c6f3c-2d1f-40d3-bf71-8046ae8efa09)
)
(junction (at 91.44 123.19) (diameter 0.9144) (color 0 0 0 0)
(uuid db3f768b-4ec7-4178-b70b-b4b036c84502)
)
(junction (at 76.2 123.19) (diameter 0.9144) (color 0 0 0 0)
(uuid ef0a2071-6555-49e0-bc78-da38debe66e0)
)
(junction (at 137.16 123.19) (diameter 0.9144) (color 0 0 0 0)
(uuid f1960b60-73de-4c92-b6c5-7fa1993f2c9c)
)
(junction (at 121.92 133.35) (diameter 0.9144) (color 0 0 0 0)
(uuid f33c1be6-4001-4ece-aa46-3a20267b8ad4)
)
(junction (at 213.36 147.32) (diameter 0.9144) (color 0 0 0 0)
(uuid f4e3ae44-ee6a-42c9-9480-36f259d3a69a)
)
(junction (at 152.4 123.19) (diameter 0.9144) (color 0 0 0 0)
(uuid f95acf52-40ba-412b-9d45-8c2880174473)
)
(no_connect (at 201.93 134.62) (uuid 0e4df716-f352-43b8-9189-3f36d8e7fcb6))
(no_connect (at 201.93 139.7) (uuid 442d10f2-71c7-4ec0-862d-81ed77741d64))
(no_connect (at 232.41 120.65) (uuid da951384-1753-43a9-b75c-e4e7345f1a04))
(no_connect (at 232.41 115.57) (uuid da951384-1753-43a9-b75c-e4e7345f1a05))
(wire (pts (xy 226.06 123.19) (xy 226.06 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0135eed6-e7a6-4915-b27a-a01ba4437919)
)
(wire (pts (xy 219.71 120.65) (xy 219.71 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 025abe04-ee10-4b1c-bd9c-742e12524d13)
)
(wire (pts (xy 321.945 113.03) (xy 331.47 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 044c8d43-a1b6-4b84-baaa-332cf906b489)
)
(wire (pts (xy 248.92 116.84) (xy 259.08 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 069b06c8-5c39-4b13-bcaf-70d830fc4361)
)
(wire (pts (xy 269.24 116.84) (xy 279.4 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 069b06c8-5c39-4b13-bcaf-70d830fc4362)
)
(wire (pts (xy 259.08 116.84) (xy 269.24 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 069b06c8-5c39-4b13-bcaf-70d830fc4363)
)
(wire (pts (xy 152.4 123.19) (xy 152.4 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 075455e9-2592-46f2-a87a-4a86b8e8b9d5)
)
(wire (pts (xy 163.83 106.68) (xy 171.45 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 086424f5-2ff0-476a-97e2-679f1e23e66b)
)
(wire (pts (xy 182.88 133.35) (xy 182.88 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0af4f77a-b492-464e-a692-cbffab52ea72)
)
(wire (pts (xy 290.83 114.3) (xy 290.83 148.59))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0d6da882-6125-4cb3-8edb-e4620a3d2fb6)
)
(wire (pts (xy 226.06 106.68) (xy 226.06 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 179f2093-7fe5-4c97-a5e4-85b5fa717f6d)
)
(wire (pts (xy 279.4 114.3) (xy 279.4 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 190921be-a5a3-4637-ac4d-1b34bd717124)
)
(wire (pts (xy 163.83 116.84) (xy 163.83 120.65))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1a58818e-32ee-47c9-8d03-89429e64ad59)
)
(wire (pts (xy 121.92 130.81) (xy 121.92 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1be46d22-0849-4102-b6f6-5f0d04546bbd)
)
(wire (pts (xy 226.06 128.27) (xy 226.06 134.62))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 29546afa-2340-4f2a-9899-789650b9d87e)
)
(wire (pts (xy 290.83 109.22) (xy 290.83 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2ddbad6a-6188-48b1-9473-9368e3014c39)
)
(polyline (pts (xy 226.06 113.03) (xy 232.41 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43704f71-8dfa-47ae-bf24-5288016cec31)
)
(polyline (pts (xy 232.41 113.03) (xy 232.41 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43704f71-8dfa-47ae-bf24-5288016cec32)
)
(wire (pts (xy 248.92 106.68) (xy 248.92 109.22))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 46438daa-eb8e-454f-a7a4-70f0b12f89c9)
)
(polyline (pts (xy 232.41 120.65) (xy 232.41 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48ad2275-533d-4e01-8ade-40a33d46b849)
)
(polyline (pts (xy 226.06 123.19) (xy 232.41 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48ad2275-533d-4e01-8ade-40a33d46b84a)
)
(wire (pts (xy 106.68 123.19) (xy 106.68 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4c22075b-fa7d-4cd3-86dc-64df7fb2cbb4)
)
(wire (pts (xy 167.64 125.73) (xy 167.64 142.24))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 556ab3b2-c669-43dd-9aef-ce9bee7461fe)
)
(wire (pts (xy 72.39 142.24) (xy 167.64 142.24))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 556ab3b2-c669-43dd-9aef-ce9bee7461ff)
)
(wire (pts (xy 152.4 123.19) (xy 173.99 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 57b64b8e-faf1-463f-a868-9ec507f80530)
)
(wire (pts (xy 163.83 106.68) (xy 163.83 111.76))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5bd63340-c8b7-45a6-9303-01b606387d8a)
)
(wire (pts (xy 191.77 125.73) (xy 213.36 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 60706c1f-687e-4430-9312-8ddcc9eaac7d)
)
(wire (pts (xy 137.16 130.81) (xy 137.16 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 621e1f21-a5b0-48f5-88b7-a579c74a4a0e)
)
(wire (pts (xy 137.16 123.19) (xy 137.16 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 63ec6da2-2002-404a-9827-a869a34e045e)
)
(wire (pts (xy 306.705 106.68) (xy 306.705 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 668aa78b-58da-4d43-be23-287d84ca9ed1)
)
(wire (pts (xy 269.24 106.68) (xy 269.24 109.22))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b38a2dd-013d-46bf-bff7-ba62ca060be5)
)
(wire (pts (xy 194.31 147.32) (xy 213.36 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6f44e2d4-5d48-4ffe-91ac-16303c3e7e2c)
)
(wire (pts (xy 121.92 123.19) (xy 121.92 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6f9cd07a-8e26-4d04-af7d-9d5ef905b8aa)
)
(wire (pts (xy 76.2 123.19) (xy 76.2 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 72374924-dac2-4d43-b688-96085218f2f2)
)
(wire (pts (xy 306.705 113.03) (xy 316.865 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a664b5f-837d-429f-b775-391ee1b7cb87)
)
(wire (pts (xy 259.08 106.68) (xy 259.08 109.22))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7d89c9a6-11d7-4f55-b848-a3d1046b6da0)
)
(wire (pts (xy 219.71 113.03) (xy 219.71 115.57))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7e8b3a90-790d-4d97-91da-a90d5b670572)
)
(wire (pts (xy 217.17 106.68) (xy 226.06 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 83849978-46ce-4367-acf2-15dd1fd42f4b)
)
(wire (pts (xy 172.72 147.32) (xy 182.88 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 87205dac-1979-4e75-a3c0-36b14a1ed48f)
)
(wire (pts (xy 191.77 106.68) (xy 191.77 120.65))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8ba841cb-b9f1-4c5f-9b73-b63e43e75562)
)
(wire (pts (xy 269.24 114.3) (xy 269.24 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9141d524-2a99-4224-ad60-98a4c88db5b4)
)
(wire (pts (xy 290.83 106.68) (xy 306.705 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 928babe5-0d7a-411b-87c0-38d94d2a2d33)
)
(wire (pts (xy 306.705 106.68) (xy 331.47 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 928babe5-0d7a-411b-87c0-38d94d2a2d34)
)
(wire (pts (xy 173.99 128.27) (xy 172.72 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 93565b1c-32eb-4288-8f9d-ba1016cbc6f8)
)
(wire (pts (xy 106.68 130.81) (xy 106.68 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 95b19a37-6397-4d22-8cc3-95fa2809ac0d)
)
(wire (pts (xy 226.06 148.59) (xy 226.06 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9a7317ea-4f44-43d1-9321-61fa04cae045)
)
(wire (pts (xy 76.2 130.81) (xy 76.2 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ac7bc40e-372f-48b2-ae4d-82dec79a33dc)
)
(wire (pts (xy 194.31 123.19) (xy 194.31 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b35903a1-7829-4e05-ae90-3aab281cd613)
)
(wire (pts (xy 152.4 133.35) (xy 152.4 148.59))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b42fb810-05d6-41e0-a5c0-35a18609bcc1)
)
(wire (pts (xy 191.77 128.27) (xy 226.06 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b50d530a-23fe-4d8a-91d3-736dec0757ff)
)
(wire (pts (xy 213.36 135.89) (xy 213.36 138.43))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b61a1c4d-e821-4db3-9096-572f02feffeb)
)
(wire (pts (xy 172.72 139.7) (xy 172.72 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b64d88a6-13ca-422e-ae74-2c630fadef8b)
)
(wire (pts (xy 182.88 147.32) (xy 194.31 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b7823fc2-d272-468b-8227-863c57bc224d)
)
(wire (pts (xy 163.83 120.65) (xy 173.99 120.65))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b87b0657-1459-4207-a9a4-2bdb4c824d5d)
)
(wire (pts (xy 279.4 116.84) (xy 279.4 148.59))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb15a352-a2a6-46fd-9072-78f7d1b5ea65)
)
(wire (pts (xy 167.64 125.73) (xy 173.99 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb43a4c0-bf3e-4568-adc2-62caa684f28f)
)
(wire (pts (xy 226.06 139.7) (xy 226.06 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c107af25-7d7d-43f8-ab85-a9b6a2f19917)
)
(wire (pts (xy 91.44 130.81) (xy 91.44 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c336fa14-edd7-4287-8422-5fd44d459720)
)
(wire (pts (xy 176.53 106.68) (xy 191.77 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c491ad08-95e2-4550-bfe6-457557f84cf7)
)
(wire (pts (xy 213.36 125.73) (xy 213.36 130.81))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c4e6d96c-f1d6-464c-b655-8f48d5af128d)
)
(wire (pts (xy 213.36 147.32) (xy 226.06 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c64cfa10-aa07-4cd8-91fa-425b3cb1f623)
)
(wire (pts (xy 152.4 130.81) (xy 152.4 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cc31fb1c-b925-4046-9284-94157b29bc7b)
)
(wire (pts (xy 106.68 133.35) (xy 121.92 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cd1af2d3-57d4-4b50-b6f5-2b59e66ac5d4)
)
(wire (pts (xy 121.92 133.35) (xy 137.16 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cd1af2d3-57d4-4b50-b6f5-2b59e66ac5d5)
)
(wire (pts (xy 137.16 133.35) (xy 152.4 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cd1af2d3-57d4-4b50-b6f5-2b59e66ac5d6)
)
(wire (pts (xy 76.2 133.35) (xy 91.44 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cd1af2d3-57d4-4b50-b6f5-2b59e66ac5d7)
)
(wire (pts (xy 91.44 133.35) (xy 106.68 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cd1af2d3-57d4-4b50-b6f5-2b59e66ac5d8)
)
(wire (pts (xy 191.77 106.68) (xy 204.47 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cf882123-e570-4312-89f9-249a22ab83f4)
)
(wire (pts (xy 72.39 123.19) (xy 76.2 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d183233f-8972-48ab-89c4-28d7b52be32d)
)
(wire (pts (xy 121.92 123.19) (xy 137.16 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d183233f-8972-48ab-89c4-28d7b52be32e)
)
(wire (pts (xy 137.16 123.19) (xy 152.4 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d183233f-8972-48ab-89c4-28d7b52be32f)
)
(wire (pts (xy 91.44 123.19) (xy 106.68 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d183233f-8972-48ab-89c4-28d7b52be330)
)
(wire (pts (xy 106.68 123.19) (xy 121.92 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d183233f-8972-48ab-89c4-28d7b52be331)
)
(wire (pts (xy 76.2 123.19) (xy 91.44 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d183233f-8972-48ab-89c4-28d7b52be332)
)
(polyline (pts (xy 201.93 139.7) (xy 201.93 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3820962-bcd8-40bb-951c-251bf5029d7f)
)
(wire (pts (xy 279.4 106.68) (xy 279.4 109.22))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d86d6526-be90-4159-8c36-3e3aff4612e2)
)
(polyline (pts (xy 201.93 125.73) (xy 201.93 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d92e2602-cb29-423c-a105-ec39a8d705fa)
)
(wire (pts (xy 219.71 123.19) (xy 226.06 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d9c07195-f20d-4ea4-aed2-3600d2e77c35)
)
(wire (pts (xy 226.06 106.68) (xy 228.6 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid da026219-1cf2-4017-94db-7c9b229cd61e)
)
(wire (pts (xy 248.92 114.3) (xy 248.92 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dfb90f07-2aa4-47ea-ac16-4d146cbab9f3)
)
(wire (pts (xy 219.71 113.03) (xy 226.06 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e19fa125-8088-4562-a89a-19d3b246eae6)
)
(wire (pts (xy 172.72 128.27) (xy 172.72 134.62))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e24d1249-efa8-47f4-90a3-15649697aa7e)
)
(wire (pts (xy 191.77 123.19) (xy 194.31 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e80514f7-3fc6-4e94-8660-01096866b02f)
)
(wire (pts (xy 259.08 114.3) (xy 259.08 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f2a3b48f-73e9-48b6-92b3-26e3152e74f1)
)
(wire (pts (xy 91.44 123.19) (xy 91.44 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f5cebf8a-265e-4d7a-a2d7-e7a002017db3)
)
(wire (pts (xy 228.6 106.68) (xy 248.92 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fbef6dbf-e614-4332-9bd9-ef4cd68c20c7)
)
(wire (pts (xy 248.92 106.68) (xy 259.08 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fbef6dbf-e614-4332-9bd9-ef4cd68c20c8)
)
(wire (pts (xy 259.08 106.68) (xy 269.24 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fbef6dbf-e614-4332-9bd9-ef4cd68c20c9)
)
(wire (pts (xy 269.24 106.68) (xy 279.4 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fbef6dbf-e614-4332-9bd9-ef4cd68c20ca)
)
(wire (pts (xy 279.4 106.68) (xy 290.83 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fbef6dbf-e614-4332-9bd9-ef4cd68c20cb)
)
(wire (pts (xy 213.36 143.51) (xy 213.36 147.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fe16103c-1d69-40fc-8a1f-964b728d9296)
)
(text "< PSU On LED" (at 344.805 113.665 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 43eede95-eab1-4ffa-bfc2-ac5e0603cc87)
)
(text "+5V PSU @ 3A peak" (at 15.24 25.4 0)
(effects (font (size 5 5) (thickness 1) bold italic) (justify left bottom))
(uuid a0afe18c-bc21-4709-b796-a31302b7b4f2)
)
(text "+5v @ 3A PSU ( 7.5v-28v Input )" (at 212.09 93.218 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c29a6f9d-91c3-43c8-8741-ed3ce2a8fc84)
)
(text "NB: Borrowed/Inspired by Raspberry Pi Foundation's CM4IO"
(at 16.51 29.21 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c55c9ac7-c929-4df5-a4fb-b1a34aa2d2f5)
)
(text "NB: Use GND testpoint from 3.3V PSU" (at 179.07 96.52 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ffb15185-fe97-4ab2-b97c-8d3ebb1250bc)
)
(hierarchical_label "+12V" (shape input) (at 72.39 123.19 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4876aa76-1610-437c-8217-01174c22ff89)
)
(hierarchical_label "EN_+5V" (shape input) (at 72.39 142.24 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 99ff83cf-b71e-45c4-90f7-912fdcc0a6c6)
)
(hierarchical_label "+5V_OK" (shape output) (at 331.47 113.03 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c4235131-5b94-4b01-8961-7da20408f4cb)
)
(hierarchical_label "+5V_OUT" (shape output) (at 331.47 106.68 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cd42efe6-f46c-41c8-a832-af45f059628e)
)
(symbol (lib_id "power:GND") (at 152.4 148.59 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 03400a15-9435-45b6-9e73-0ca923d06850)
(property "Reference" "#PWR048" (id 0) (at 152.4 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 152.4 152.4 0))
(property "Footprint" "" (id 2) (at 152.4 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 152.4 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c0baee24-e108-46b9-89af-afa780f7b16b))
)
(symbol (lib_id "Device:C_Small") (at 259.08 111.76 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1126ec9f-983a-4a10-8658-47a80ef393b5)
(property "Reference" "C61" (id 0) (at 261.62 110.49 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (id 1) (at 261.62 113.03 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 260.0452 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 259.08 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Taiyo Yuden" (id 5) (at 259.08 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "LMK212B7106KG-TD" (id 4) (at 259.08 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" (id 8) (at 259.08 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5f58c3a2-51cb-4cd1-8698-db5a9db54d91))
(pin "2" (uuid bae244a4-910e-4dcd-bf15-a4e428463559))
)
(symbol (lib_id "Device:R_Small") (at 226.06 137.16 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 18159932-9634-4338-a0ae-14a49f8c8553)
(property "Reference" "R65" (id 0) (at 227.33 135.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2.2K 1%" (id 1) (at 227.33 138.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 224.282 137.16 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 226.06 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Yageo" (id 4) (at 226.06 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "AC0402FR-072K2L" (id 5) (at 226.06 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "Resistor 2.2K M1005 1% 63mW" (id 8) (at 226.06 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 114c0b0e-5a05-4d1d-bc87-a9db22de84b5))
(pin "2" (uuid dc655beb-850c-4321-8b74-5c13e21f880e))
)
(symbol (lib_id "Device:R_Small") (at 219.71 118.11 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1c7bf7e4-bfac-4e75-91ae-392ed692572f)
(property "Reference" "R64" (id 0) (at 220.98 116.84 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "12k 1%" (id 1) (at 220.98 119.38 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 217.932 118.11 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 219.71 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Yageo" (id 4) (at 219.71 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "AC0402FR-0712KL" (id 5) (at 219.71 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "Resistor 12K M1005 1% 63mW" (id 8) (at 219.71 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5d455022-d497-42a9-8c25-acd4dacf5531))
(pin "2" (uuid af4cb71b-17a0-4d2e-8a53-20ce5dd3fef8))
)
(symbol (lib_id "Device:C_Small") (at 232.41 118.11 0) (unit 1)
(in_bom no) (on_board no)
(uuid 23fa02b2-47c2-48eb-9ec4-f475021489f1)
(property "Reference" "C59" (id 0) (at 234.95 116.84 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "DNP" (id 1) (at 234.95 119.38 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 233.3752 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.farnell.com/datasheets/2048267.pdf?_ga=2.222777691.1738794919.1588350964-1787849031.1568210898&_gac=1.250356018.1588350964.EAIaIQobChMIgrHHs4yT6QIVxevtCh39TA_nEAAYASAAEgK8PfD_BwE" (id 3) (at 232.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "Farnell" (id 4) (at 232.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "2666374" (id 5) (at 232.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "GRM1555C1H221JA01D" (id 6) (at 232.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "Murata" (id 7) (at 232.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "220 pF, 50 V, 0402 [1005 Metric], ± 5%, C0G / NP0/CH, GCM Series" (id 8) (at 232.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c1ac035d-9e9f-4d5a-a56e-94fce924430a))
(pin "2" (uuid 6364c601-7530-4cfc-8b1a-e76c38418041))
)
(symbol (lib_id "Device:C_Small") (at 213.36 140.97 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2a625624-d219-4008-a3d0-9865c8076e61)
(property "Reference" "C58" (id 0) (at 215.9 139.7 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.2nF" (id 1) (at 215.9 142.24 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 214.3252 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)