-
Notifications
You must be signed in to change notification settings - Fork 1
/
POWER.kicad_sch
1188 lines (1150 loc) · 45 KB
/
POWER.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 2a7e5071-5e31-46a3-ba15-c0f77387f29b)
(paper "A4")
(title_block
(title "H7DDCADC")
(date "2022-07-10")
(rev "initial")
(company "papamidas DM1CR")
(comment 1 "Poeer Supply Section")
)
(lib_symbols
(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:FerriteBead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "FerriteBead_Small" (id 1) (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_Small_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "FerriteBead_Small_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (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 "Regulator_Linear:AP2127K-1.8" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AP2127K-1.8" (id 1) (at 0 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 8.255 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2127.pdf" (id 3) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "300mA low dropout linear regulator, shutdown pin, 2.5V-6V input voltage, 1.8V fixed positive output, SOT-23-5" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23?5*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AP2127K-1.8_0_1"
(rectangle (start -5.08 4.445) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AP2127K-1.8_1_1"
(pin power_in line (at -7.62 2.54 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 5.08 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 2.54 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "5" (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))))
)
)
)
)
(junction (at 119.38 85.09) (diameter 0) (color 0 0 0 0)
(uuid 1ec3883a-21f2-48c1-91a1-969699902e74)
)
(junction (at 45.72 48.26) (diameter 0) (color 0 0 0 0)
(uuid 21d1c218-f8c0-41c8-b081-b41fd70a6bea)
)
(junction (at 72.39 48.26) (diameter 0) (color 0 0 0 0)
(uuid 25bb9b38-9b6b-47b8-be74-2de10d3eb515)
)
(junction (at 92.71 48.26) (diameter 0) (color 0 0 0 0)
(uuid 3eb45aed-a234-4cc1-b7d4-1e4e9f8a58f5)
)
(junction (at 166.37 48.26) (diameter 0) (color 0 0 0 0)
(uuid 483abfc1-2523-46fe-9149-695dae56bb69)
)
(junction (at 129.54 128.27) (diameter 0) (color 0 0 0 0)
(uuid 4d59e535-d20a-4841-90cf-827ed45033b6)
)
(junction (at 167.64 125.73) (diameter 0) (color 0 0 0 0)
(uuid 54af0695-5d9b-4de4-9089-7bd24e16a020)
)
(junction (at 106.68 48.26) (diameter 0) (color 0 0 0 0)
(uuid 607452ca-e985-4cf5-9dbb-533e21f69896)
)
(junction (at 92.71 85.09) (diameter 0) (color 0 0 0 0)
(uuid 72ad28b1-7549-4ffd-8636-6bbb7514f80f)
)
(junction (at 128.27 97.79) (diameter 0) (color 0 0 0 0)
(uuid 8a456d35-e2aa-49f0-ba3d-f70935a3e0ab)
)
(junction (at 92.71 25.4) (diameter 0) (color 0 0 0 0)
(uuid 9d68bb68-31be-4eae-9751-88eada78b8a6)
)
(junction (at 106.68 85.09) (diameter 0) (color 0 0 0 0)
(uuid a22712a3-f5a7-4b92-8947-c983ebfa35c0)
)
(junction (at 162.56 25.4) (diameter 0) (color 0 0 0 0)
(uuid aac8b342-cbb1-40a8-bb47-b9cf3b080435)
)
(junction (at 119.38 97.79) (diameter 0) (color 0 0 0 0)
(uuid ade8267b-7bc1-4258-8431-1c3f7a1853aa)
)
(junction (at 166.37 85.09) (diameter 0) (color 0 0 0 0)
(uuid afec8055-2882-4a2c-aff8-77b8170478fa)
)
(junction (at 120.65 125.73) (diameter 0) (color 0 0 0 0)
(uuid b23e3951-8b87-4a0b-9c48-17b6af12727e)
)
(junction (at 127 60.96) (diameter 0) (color 0 0 0 0)
(uuid c69c029d-9cba-4756-b091-8cc0e7379662)
)
(junction (at 107.95 125.73) (diameter 0) (color 0 0 0 0)
(uuid cafcfb21-c014-4b9b-9e8a-09bce248f69f)
)
(junction (at 119.38 48.26) (diameter 0) (color 0 0 0 0)
(uuid cf421496-5b78-4d31-a962-2081ef9a522f)
)
(junction (at 139.7 146.05) (diameter 0) (color 0 0 0 0)
(uuid eb0f25c0-93c3-4ad9-a16a-fafb1e0ca429)
)
(junction (at 128.27 87.63) (diameter 0) (color 0 0 0 0)
(uuid f9eea3de-4ba0-4096-8551-a2dae31c1ce5)
)
(wire (pts (xy 120.65 125.73) (xy 132.08 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 053d4c46-cbc9-4685-856a-1820961abf11)
)
(wire (pts (xy 139.7 146.05) (xy 139.7 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0662fe06-aae1-4cd4-92ae-7af3f33da970)
)
(wire (pts (xy 137.16 25.4) (xy 92.71 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0930474c-d0da-44dc-a815-426823ca10e1)
)
(wire (pts (xy 120.65 125.73) (xy 120.65 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a4f127a-96e7-4ce5-ae0e-599712919182)
)
(wire (pts (xy 92.71 48.26) (xy 92.71 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24fe02b0-f0aa-41db-93bd-e133cc97b40e)
)
(wire (pts (xy 106.68 85.09) (xy 106.68 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2863b5e8-b863-43fc-af06-190a7f3998f4)
)
(wire (pts (xy 92.71 125.73) (xy 107.95 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c087c02-f2a1-4962-bd29-7bd17aff534f)
)
(wire (pts (xy 146.05 85.09) (xy 166.37 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d3cf697-a66b-4dff-8278-eaf7c8efb3a2)
)
(wire (pts (xy 119.38 60.96) (xy 127 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2da7d1cf-3dc2-4480-ab5b-c81f22983060)
)
(wire (pts (xy 120.65 138.43) (xy 129.54 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2daf7ef8-f554-4440-aa1a-5bb76de1b8e7)
)
(wire (pts (xy 119.38 95.25) (xy 119.38 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30bc97ee-e10a-4f61-a076-c96570558928)
)
(wire (pts (xy 162.56 31.75) (xy 162.56 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33f3a650-19e5-45bf-a154-14b1bb1f1697)
)
(wire (pts (xy 92.71 85.09) (xy 106.68 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 340fc3e4-a02d-4b5b-92f6-9d1edfc548ab)
)
(wire (pts (xy 166.37 85.09) (xy 166.37 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 360b5d58-572b-4185-bae1-9947c3c26513)
)
(wire (pts (xy 107.95 125.73) (xy 120.65 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c80e64b-3a42-460c-b431-fd5fb3add617)
)
(wire (pts (xy 162.56 25.4) (xy 205.74 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c9be5cf-7328-4fc8-b74e-e2f208bee4ef)
)
(wire (pts (xy 45.72 54.61) (xy 45.72 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40dca003-42f1-474c-a819-86b06c175329)
)
(wire (pts (xy 127 74.93) (xy 127 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 436d68f7-d718-4633-a451-e1b9fe1af404)
)
(wire (pts (xy 106.68 54.61) (xy 106.68 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 445e7bef-0ea4-4cc2-97e5-fb7a1538acda)
)
(wire (pts (xy 128.27 115.57) (xy 128.27 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 488f4af6-1655-4bfc-af47-13dd16aef820)
)
(wire (pts (xy 88.9 146.05) (xy 139.7 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49ac83f7-f17c-485d-ae88-ca46d467a8fc)
)
(wire (pts (xy 128.27 97.79) (xy 128.27 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d828ac4-0bfa-4ea6-986e-29b8983c55f0)
)
(wire (pts (xy 72.39 48.26) (xy 92.71 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5597b95b-cc7d-4e75-ba44-16ffe7249ed1)
)
(wire (pts (xy 119.38 58.42) (xy 119.38 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61ca5e8e-d156-413a-9d6b-8ed658073971)
)
(wire (pts (xy 129.54 138.43) (xy 129.54 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67dc3dba-6bd3-4d16-9e71-dff653a225df)
)
(wire (pts (xy 139.7 135.89) (xy 139.7 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 680d2534-f19b-4b14-9cdb-be8ff4dab6bb)
)
(wire (pts (xy 167.64 125.73) (xy 205.74 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b942f31-0201-4577-a0cf-3b89b07e54b7)
)
(wire (pts (xy 120.65 135.89) (xy 120.65 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6dd9d654-76ae-4682-b540-2619bbeddeba)
)
(wire (pts (xy 119.38 97.79) (xy 128.27 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79e9f660-6b84-4b50-8c6f-8044b4bffabf)
)
(wire (pts (xy 127 60.96) (xy 127 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a102ead-62eb-47bf-a704-4a0a0cb1ab39)
)
(wire (pts (xy 128.27 87.63) (xy 130.81 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ae29ac4-2c62-483a-a4d9-52c0d9e46724)
)
(wire (pts (xy 119.38 85.09) (xy 119.38 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80c626fa-6413-49b7-bb2e-3825ac551c94)
)
(wire (pts (xy 72.39 48.26) (xy 72.39 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 815e3f9a-8795-4d96-9cc7-aac3aa64df03)
)
(wire (pts (xy 142.24 25.4) (xy 162.56 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84f7fbb1-5646-4c7d-a5fc-2580eee7c810)
)
(wire (pts (xy 39.37 48.26) (xy 45.72 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85c74e7c-8814-44e7-84b3-d462c8392ef0)
)
(wire (pts (xy 162.56 25.4) (xy 162.56 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c55f8d9-b9e3-4002-926b-d63845fb068f)
)
(wire (pts (xy 146.05 48.26) (xy 166.37 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ca1bcb5-bd26-40d9-bedd-3babe2110675)
)
(wire (pts (xy 166.37 54.61) (xy 166.37 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8df3e7cd-afa0-4016-ac3e-043ce6e5ef47)
)
(wire (pts (xy 106.68 91.44) (xy 106.68 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ee4d1d4-4116-4dd1-a243-3924c4feebca)
)
(wire (pts (xy 128.27 60.96) (xy 128.27 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fa08ba0-dbd9-4f42-a6b4-331b63f7be50)
)
(wire (pts (xy 106.68 48.26) (xy 119.38 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9401ddd4-268f-42e4-b756-66290938d778)
)
(wire (pts (xy 106.68 97.79) (xy 119.38 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95ff9a45-fc4e-4670-80cc-af875f2a2a6b)
)
(wire (pts (xy 128.27 128.27) (xy 129.54 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97fca8b2-f2d2-4877-a012-5b2dce107ab4)
)
(wire (pts (xy 166.37 48.26) (xy 166.37 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99dc38e3-e271-4d9c-9acc-b76b0e82b4c2)
)
(wire (pts (xy 166.37 91.44) (xy 166.37 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aabfe577-eed7-4bd2-a67c-daf3572276f5)
)
(wire (pts (xy 147.32 125.73) (xy 167.64 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adbd24b2-fa38-4cb9-9ead-15963785719a)
)
(wire (pts (xy 45.72 48.26) (xy 45.72 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adf306fe-0a1d-46b4-81d8-2e61938020d9)
)
(wire (pts (xy 92.71 48.26) (xy 106.68 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af4360b3-b1b4-4f6f-bc58-efa091699852)
)
(wire (pts (xy 167.64 125.73) (xy 167.64 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7313a5c-cbf2-4807-917f-26c5ffc6ad83)
)
(wire (pts (xy 107.95 125.73) (xy 107.95 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcf49e9a-11a8-4b12-9ae3-5606ef997fea)
)
(wire (pts (xy 92.71 15.24) (xy 92.71 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1aaed38-45cd-4736-a760-fb5f0a08ef11)
)
(wire (pts (xy 106.68 48.26) (xy 106.68 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c874f306-acef-4889-873f-b1db1a47586f)
)
(wire (pts (xy 205.74 15.24) (xy 92.71 15.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca4559de-09ed-4035-a3da-fea8dc8d410d)
)
(wire (pts (xy 107.95 132.08) (xy 107.95 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb0b2d2b-6f19-42ce-a42d-776975268f62)
)
(wire (pts (xy 166.37 85.09) (xy 205.74 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cdbb5aa5-0ece-4a3f-be84-e0b4e027e6f7)
)
(wire (pts (xy 63.5 48.26) (xy 72.39 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ceb7d476-b3bd-4a02-8071-217485f64d53)
)
(wire (pts (xy 119.38 48.26) (xy 119.38 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf651af5-cc07-40a4-90d1-1fe4df9207e4)
)
(wire (pts (xy 106.68 85.09) (xy 119.38 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d222512d-3140-443a-b044-db87ba1c762a)
)
(wire (pts (xy 119.38 48.26) (xy 130.81 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3cbe36e-715a-4ab6-aae0-cfd42a7e133c)
)
(wire (pts (xy 127 60.96) (xy 128.27 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d76f6013-a2e4-4a03-9962-0826dec17cb9)
)
(wire (pts (xy 119.38 85.09) (xy 130.81 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7bf1976-918a-4b3f-aff8-d71a26b40209)
)
(wire (pts (xy 45.72 48.26) (xy 58.42 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8ce4e55-fa51-453f-b85a-60e7b0f0ec4d)
)
(wire (pts (xy 167.64 132.08) (xy 167.64 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc178f7c-1b4a-4de1-abd1-819ec79e01bc)
)
(wire (pts (xy 138.43 58.42) (xy 138.43 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df48dc62-677b-4bce-839b-f024b58260e0)
)
(wire (pts (xy 72.39 54.61) (xy 72.39 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e59f53ed-7854-4305-9ba6-92d5eae1ba45)
)
(wire (pts (xy 92.71 25.4) (xy 92.71 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e847c12d-9748-48d8-8f06-622263ea82c6)
)
(wire (pts (xy 92.71 85.09) (xy 92.71 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8c35018-f043-42c4-b2fc-36871ce56955)
)
(wire (pts (xy 127 87.63) (xy 128.27 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec31f016-34ef-4a6f-972a-69ab647f1535)
)
(wire (pts (xy 128.27 50.8) (xy 130.81 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f865df06-554f-411f-8d8b-dc75901d47bc)
)
(wire (pts (xy 129.54 128.27) (xy 132.08 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fabb6437-9bec-482a-bad1-a0fd284daf4b)
)
(wire (pts (xy 128.27 97.79) (xy 128.27 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd20065b-57fb-4bdf-a2e7-363671c94d27)
)
(wire (pts (xy 166.37 48.26) (xy 205.74 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fdd0010e-263a-4d95-b5b8-378d6d39877b)
)
(hierarchical_label "V18C" (shape output) (at 205.74 125.73 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0404e879-4e1f-457e-badf-4b4a0c045ad8)
)
(hierarchical_label "V18A" (shape output) (at 205.74 48.26 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7368f203-5ade-419a-8db9-aa582583c90c)
)
(hierarchical_label "GND" (shape input) (at 88.9 146.05 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 790bc32a-0227-4fb8-8ad5-b7f116b3ed8c)
)
(hierarchical_label "V18B" (shape output) (at 205.74 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 81566f37-b35f-4be5-b69f-cba22f9b41d7)
)
(hierarchical_label "+3V3F" (shape output) (at 205.74 15.24 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a2ef6b80-a84a-4f5b-b3b9-4add25100ce5)
)
(hierarchical_label "ENA18" (shape input) (at 106.68 97.79 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c7e62ccf-228b-4486-b507-44b92d376e18)
)
(hierarchical_label "VIN" (shape input) (at 39.37 48.26 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dd843d49-cb8c-4bc9-881b-fc3435665f67)
)
(hierarchical_label "3V3A" (shape output) (at 205.74 25.4 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f2e2cbb9-ad74-41ab-9150-343b21789fb9)
)
(symbol (lib_id "power:GND") (at 139.7 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0e9db330-d533-4051-824d-36977bba57d0)
(property "Reference" "#PWR0107" (id 0) (at 139.7 153.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 139.7 152.4 0))
(property "Footprint" "" (id 2) (at 139.7 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 139.7 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 672204e3-bdce-4094-b9eb-8fbf2147ec6b))
)
(symbol (lib_id "Device:C_Small") (at 106.68 52.07 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 164e5b69-3dbb-4dab-b24c-92b394636154)
(property "Reference" "C20" (id 0) (at 109.22 50.8062 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 109.22 53.3462 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 106.68 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 106.68 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 020ae941-c9aa-43d4-a76c-88ccaa431658))
(pin "2" (uuid 0678bc78-173a-4d2d-9fdf-7873544c70c0))
)
(symbol (lib_id "Device:C_Small") (at 166.37 88.9 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 17b417d3-a541-4c4c-932b-89c68919b7fb)
(property "Reference" "C25" (id 0) (at 168.91 87.6362 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 168.91 90.1762 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 166.37 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 166.37 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fb55b75e-e9ad-4771-918f-8c8dcd9b5894))
(pin "2" (uuid d5677995-3739-4a10-a7f9-9183305cff31))
)
(symbol (lib_id "power:GND") (at 106.68 92.71 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 18a9e77f-e368-40b7-ae1e-f5108227e769)
(property "Reference" "#PWR0103" (id 0) (at 106.68 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 110.49 93.98 0))
(property "Footprint" "" (id 2) (at 106.68 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 106.68 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c1e72e02-5633-4739-94ca-866eb0eaff82))
)
(symbol (lib_id "Device:R") (at 128.27 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1dda8262-0667-4dc0-a4f1-761fec18d3d8)
(property "Reference" "R85" (id 0) (at 130.81 110.4899 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0R-DNP" (id 1) (at 130.81 113.0299 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 126.492 111.76 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 128.27 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7566b99f-26ff-427b-a576-1ce95eba4e08))
(pin "2" (uuid 9adcd651-125f-4043-b0bf-61bc37905439))
)
(symbol (lib_id "Device:FerriteBead_Small") (at 139.7 25.4 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 208955b7-826a-483a-b8d4-87506e833f91)
(property "Reference" "FB1" (id 0) (at 139.6619 19.05 90))
(property "Value" "Ferrite_0805" (id 1) (at 139.6619 21.59 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 139.7 27.178 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid afaca69c-31b7-49ab-b0ac-b77a5c38c7e5))
(pin "2" (uuid 99cb47c3-0b2f-43ce-a8f5-f3a11ac8d4fc))
)
(symbol (lib_id "Device:R") (at 119.38 54.61 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2a4b599b-1d3c-48b3-b1d2-e120801c12f2)
(property "Reference" "R81" (id 0) (at 121.92 53.3399 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (id 1) (at 121.92 55.8799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 117.602 54.61 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 119.38 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 739e911e-4059-46fa-9fd5-8f562b9c3ba9))
(pin "2" (uuid c250279a-d1a2-4229-a3c5-93a997a8383d))
)
(symbol (lib_id "Regulator_Linear:AP2127K-1.8") (at 138.43 87.63 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 30670ff1-8634-4a32-b095-f955cd718c6b)
(property "Reference" "U24" (id 0) (at 138.43 77.47 0))
(property "Value" "AP2127K-1.8" (id 1) (at 138.43 80.01 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 138.43 79.375 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2127.pdf" (id 3) (at 138.43 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7f951873-95ec-497d-b259-0277e208271f))
(pin "2" (uuid 3d79a646-40ab-4e9c-8415-9daccc073acc))
(pin "3" (uuid fc46cb68-e7f8-4908-b87a-7414f0943fe5))
(pin "4" (uuid 699feac9-debc-4a57-8a96-6e6758888a10))
(pin "5" (uuid 3edf5090-f196-4fb1-aee9-e3700573ebae))
)
(symbol (lib_id "Regulator_Linear:AP2127K-1.8") (at 139.7 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4a7592d2-a7a3-4110-ab64-bd5fd75f3c64)
(property "Reference" "U25" (id 0) (at 139.7 118.11 0))
(property "Value" "AP2127K-1.8" (id 1) (at 139.7 120.65 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 139.7 120.015 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2127.pdf" (id 3) (at 139.7 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 93dd6220-7424-4405-9655-9080f6d90657))
(pin "2" (uuid 2d0f7a72-6c22-46f4-9f19-650a0f5b1047))
(pin "3" (uuid f9a8d5b4-2a8e-4422-aaf4-27303af7886b))
(pin "4" (uuid 92dd2136-2b52-4bff-a67a-3bdacb0eb94a))
(pin "5" (uuid 6d1ad15b-7f47-4b09-9faf-f87d75e83121))
)
(symbol (lib_id "power:GND") (at 107.95 133.35 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4c778029-819e-4735-9b74-7110de9d1469)
(property "Reference" "#PWR0104" (id 0) (at 107.95 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 111.76 134.62 0))
(property "Footprint" "" (id 2) (at 107.95 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 107.95 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 808a4270-ae91-4d2b-ba7c-d8736c04dac5))
)
(symbol (lib_id "Device:R") (at 120.65 132.08 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4dd4f5df-60bb-4f79-8aff-3f63a980e6fa)
(property "Reference" "R83" (id 0) (at 123.19 130.8099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (id 1) (at 123.19 133.3499 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 118.872 132.08 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.65 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57330b24-e871-41c4-a496-88f9329d0228))
(pin "2" (uuid 0dbf77c9-df2b-4e75-8eb1-c50c19344488))
)
(symbol (lib_id "power:GND") (at 166.37 92.71 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 53bed4fa-60a1-4d81-b891-befc150aba71)
(property "Reference" "#PWR0110" (id 0) (at 166.37 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 170.18 93.98 0))
(property "Footprint" "" (id 2) (at 166.37 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 166.37 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f56458b3-1e97-4dce-b8ba-5f54c724b5bc))
)
(symbol (lib_id "Device:R") (at 127 71.12 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 60a9c6d4-76dd-4782-af0b-0a51a59dd128)
(property "Reference" "R84" (id 0) (at 129.54 69.8499 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0R-DNP" (id 1) (at 129.54 72.3899 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 125.222 71.12 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 127 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2613ef83-52ef-44ac-9915-9cb62f66f7d8))
(pin "2" (uuid 820258be-1c4f-4e0b-b457-55b5ca8b3c8c))
)
(symbol (lib_id "Device:C_Small") (at 106.68 88.9 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 62b5c823-16b4-4db2-8276-2ae6bd7fb823)
(property "Reference" "C21" (id 0) (at 109.22 87.6362 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 109.22 90.1762 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 106.68 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 106.68 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac509c3c-fd8b-4376-b9ba-d8f13e9f8422))
(pin "2" (uuid 5df7d510-f1fc-40ec-ae6a-abaecd144a12))
)
(symbol (lib_id "power:GND") (at 45.72 55.88 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 62f55432-e60e-4283-a450-75f7efc8f9c2)
(property "Reference" "#PWR096" (id 0) (at 45.72 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 49.53 57.15 0))
(property "Footprint" "" (id 2) (at 45.72 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 45.72 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 98ab7607-1c34-4207-9a09-fa858ba4fd55))
)
(symbol (lib_id "Device:C_Small") (at 167.64 129.54 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6767761c-4af6-489b-a8fa-f423335b8049)
(property "Reference" "C26" (id 0) (at 170.18 128.2762 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 170.18 130.8162 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 167.64 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 167.64 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccd43db5-5b41-4528-af5a-1ea82b337071))
(pin "2" (uuid 4600bf06-f46e-487d-b826-510a5bb60cb4))
)
(symbol (lib_id "power:GND") (at 106.68 55.88 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 713a5637-54cd-4d19-813b-4aebe2e8b461)
(property "Reference" "#PWR0102" (id 0) (at 106.68 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 110.49 57.15 0))
(property "Footprint" "" (id 2) (at 106.68 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 106.68 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 595457b3-81d8-4d6b-9014-d0399012889f))
)
(symbol (lib_id "Device:FerriteBead_Small") (at 60.96 48.26 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 714149a8-d830-4778-960b-eac2a6beea33)
(property "Reference" "FB2" (id 0) (at 60.9219 41.91 90))
(property "Value" "Ferrite_0805" (id 1) (at 60.9219 44.45 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 60.96 50.038 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 60.96 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 59e3aa31-2dea-4689-9c2f-2fa17cf21c44))
(pin "2" (uuid b03144f2-fc5a-43a1-b201-8baab3045a27))
)
(symbol (lib_id "power:GND") (at 166.37 55.88 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 848fcf07-663b-4251-a598-5bd29da1f7ff)
(property "Reference" "#PWR0109" (id 0) (at 166.37 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 170.18 57.15 0))
(property "Footprint" "" (id 2) (at 166.37 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 166.37 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ed1c69ef-cdad-4c35-b956-bc5889b8a1dd))
)
(symbol (lib_id "Device:C_Small") (at 45.72 52.07 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid a5838c14-7da8-42a8-b38d-7bebf953ae12)
(property "Reference" "C29" (id 0) (at 48.26 50.8062 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 48.26 53.3462 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 45.72 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 45.72 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e26f957c-8b29-431a-a844-1d765975eca3))
(pin "2" (uuid 09ef4711-0999-483c-aa29-e0c88b9954f3))
)
(symbol (lib_id "Device:C_Small") (at 72.39 52.07 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid c2c44ca3-34d1-4d25-ba54-1dc496185487)
(property "Reference" "C30" (id 0) (at 74.93 50.8062 0)
(effects (font (size 1.27 1.27)) (justify left))