-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathADSPower.kicad_sch
1615 lines (1579 loc) · 57.6 KB
/
ADSPower.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 7beb9e1d-b68f-4e6a-b577-7dab1187f853)
(paper "A4")
(title_block
(title "Monolith")
(company "Monolith BCI")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "LM2664M6:LM2664M6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -12.7 13.7 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "LM2664M6" (at -12.7 -16.7 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "LM2664M6:SOT95P280X145-6N" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Texas Instruments" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "\n1.8V to 5.5Vin Switched Capacitor Voltage Converter 6-SOT-23 -40 to 85\n" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "SOT-23-6 Texas Instruments" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/LM2664M6/Texas+Instruments/view-part/?ref=snap" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "LM2664M6" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=27302&manufacturer=Texas Instruments&part_name=LM2664M6&search_term=lm2664" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "In Stock" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/LM2664M6/Texas+Instruments/view-part/?ref=eda" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "LM2664M6_0_0"
(rectangle (start -12.7 -12.7) (end 12.7 12.7)
(stroke (width 0.41) (type default))
(fill (type background))
)
(pin power_in line (at 17.78 -7.62 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 5.08 180) (length 5.08)
(name "OUT" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 0 0) (length 5.08)
(name "CAP-" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "~{SD}" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 10.16 180) (length 5.08)
(name "V+" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 2.54 0) (length 5.08)
(name "CAP+" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "TLV700XX-Q1:TLV70025QDDCRQ1" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 27.94 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TLV70025QDDCRQ1" (at 27.94 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "DDC5_TEX" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "TLV70025QDDCRQ1" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TLV70025QDDCRQ1" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DDC5_TEX DDC5_TEX-M DDC5_TEX-L" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TLV70025QDDCRQ1_0_1"
(polyline
(pts
(xy 7.62 -10.16)
(xy 48.26 -10.16)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -10.16)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 48.26 -10.16)
(xy 48.26 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 48.26 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(pin input line (at 0 0 0) (length 7.62)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -2.54 0) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 55.88 -5.08 180) (length 7.62)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 55.88 -2.54 180) (length 7.62)
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 55.88 0 180) (length 7.62)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TPS72325:TPS72325" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 7.62 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "TPS72325" (at -5.08 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "TPS72325:SOT23-5" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Texas Instruments" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "\nLinear Voltage Regulator IC Negative Fixed 1 Output 200mA SOT-23-5\n" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/TPS72325/Texas+Instruments/view-part/?ref=snap" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "TPS72325" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "Not in stock" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/TPS72325/Texas+Instruments/view-part/?ref=eda" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "TPS72325_0_0"
(rectangle (start -7.62 -7.62) (end 5.08 7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin bidirectional line (at -12.7 -5.08 0) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -12.7 5.08 0) (length 5.08)
(name "IN" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -12.7 0 0) (length 5.08)
(name "EN" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 10.16 -2.54 180) (length 5.08)
(name "NR" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 10.16 5.08 180) (length 5.08)
(name "OUT" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "power:GNDA" (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" "GNDA" (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 \"GNDA\" , analog ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDA_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 "GNDA_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 221.615 106.68) (diameter 0) (color 0 0 0 0)
(uuid 020ba030-905f-477b-9ae0-0992f89289f3)
)
(junction (at 131.445 106.68) (diameter 0) (color 0 0 0 0)
(uuid 04c060fa-89cd-40c0-9b5d-c131e1b8eed7)
)
(junction (at 139.7 80.01) (diameter 0) (color 0 0 0 0)
(uuid 06eaf8ed-fe52-46c0-9ae6-057431139ce4)
)
(junction (at 176.53 131.445) (diameter 0) (color 0 0 0 0)
(uuid 0a630b7e-ef32-459c-9162-c00cf2a1dc09)
)
(junction (at 57.15 124.46) (diameter 0) (color 0 0 0 0)
(uuid 1c3e54ad-9628-41f4-8d3d-029e1d3dba2e)
)
(junction (at 82.55 111.76) (diameter 0) (color 0 0 0 0)
(uuid 206cb15e-2ea8-4a64-8838-ae4e3dffe882)
)
(junction (at 81.915 125.73) (diameter 0) (color 0 0 0 0)
(uuid 2749025b-d16c-4d1f-95a8-2f9526395795)
)
(junction (at 197.485 59.69) (diameter 0) (color 0 0 0 0)
(uuid 466ee2fa-3e65-49e3-9db6-7c6087afff99)
)
(junction (at 83.185 104.14) (diameter 0) (color 0 0 0 0)
(uuid 52e4594e-fe7c-49b7-83b9-328b1219ec0d)
)
(junction (at 81.915 133.35) (diameter 0) (color 0 0 0 0)
(uuid 532070ef-df9a-4f3f-b28f-4137930e01e1)
)
(junction (at 57.15 104.14) (diameter 0) (color 0 0 0 0)
(uuid 5c912f8e-061b-4171-94b0-10f6b8716179)
)
(junction (at 182.88 80.01) (diameter 0) (color 0 0 0 0)
(uuid 8522d855-7770-45ad-8996-330235c8034b)
)
(junction (at 139.7 69.85) (diameter 0) (color 0 0 0 0)
(uuid 94a8fd26-c072-49b0-9357-c5fdcb8d4893)
)
(junction (at 197.485 80.01) (diameter 0) (color 0 0 0 0)
(uuid 9586923f-e0b3-4155-826b-56105ba619df)
)
(junction (at 238.76 106.68) (diameter 0) (color 0 0 0 0)
(uuid 9782791a-c37a-4801-a702-2a7210ce33db)
)
(junction (at 57.15 111.76) (diameter 0) (color 0 0 0 0)
(uuid 9c663cbd-b3a0-4b2c-bd42-808ca754d061)
)
(junction (at 212.725 59.69) (diameter 0) (color 0 0 0 0)
(uuid 9e6aa4c7-7aa1-4648-94bb-5772a7a85979)
)
(junction (at 139.7 52.07) (diameter 0) (color 0 0 0 0)
(uuid b1081665-96ef-4521-8446-93c6ed455049)
)
(junction (at 221.615 131.445) (diameter 0) (color 0 0 0 0)
(uuid bcdf1037-e9d2-4694-af50-fef79835f95b)
)
(junction (at 56.515 132.08) (diameter 0) (color 0 0 0 0)
(uuid bdcbece2-1812-473c-9361-4b99a8c4bcc9)
)
(junction (at 152.4 59.69) (diameter 0) (color 0 0 0 0)
(uuid d2ddf9a6-9128-4836-9f53-15539bbf5683)
)
(junction (at 149.225 131.445) (diameter 0) (color 0 0 0 0)
(uuid f46326bd-93df-48ed-8a4d-ce79534d9fc0)
)
(junction (at 100.965 75.565) (diameter 0) (color 0 0 0 0)
(uuid f8d62048-ccd6-4538-9729-f0c486833523)
)
(no_connect (at 205.105 109.22) (uuid 67ce4476-f7a3-4fb6-a75c-f59ca6e593d8))
(wire (pts (xy 57.15 111.76) (xy 57.15 114.935))
(stroke (width 0) (type default))
(uuid 0067fc2c-ab42-45b9-a0ec-77eaff1bb467)
)
(wire (pts (xy 182.88 67.31) (xy 182.88 72.39))
(stroke (width 0) (type default))
(uuid 012646e6-a509-4313-975c-f44aa319745f)
)
(wire (pts (xy 100.965 71.12) (xy 100.965 75.565))
(stroke (width 0) (type default))
(uuid 08129db5-09a8-4443-b410-74fb29b3ee6d)
)
(wire (pts (xy 131.445 106.68) (xy 131.445 112.395))
(stroke (width 0) (type default))
(uuid 0e228e2a-50cb-489f-9d7d-8d5dcd1b42ce)
)
(wire (pts (xy 83.185 102.87) (xy 83.185 104.14))
(stroke (width 0) (type default))
(uuid 0ebdc32c-cfc4-40cf-8959-35adccd11e65)
)
(wire (pts (xy 238.76 106.68) (xy 252.73 106.68))
(stroke (width 0) (type default))
(uuid 180d8fcc-2c90-4864-abd4-dd96faaa4a46)
)
(wire (pts (xy 212.725 67.945) (xy 212.725 80.01))
(stroke (width 0) (type default))
(uuid 228bb995-4cfe-49a1-acc3-9173aa51b8a4)
)
(wire (pts (xy 100.965 75.565) (xy 100.965 76.2))
(stroke (width 0) (type default))
(uuid 274738c8-a54f-4ffc-a835-3c053671f4b3)
)
(wire (pts (xy 197.485 67.945) (xy 197.485 80.01))
(stroke (width 0) (type default))
(uuid 29c21120-985e-4e59-9a3c-272ba8bc42d4)
)
(wire (pts (xy 95.885 76.2) (xy 100.965 76.2))
(stroke (width 0) (type default))
(uuid 306f72b8-aff6-4ec6-91be-5bf7a271c4e9)
)
(wire (pts (xy 76.835 111.76) (xy 82.55 111.76))
(stroke (width 0) (type default))
(uuid 39124885-d489-4a82-91cd-9749da6a423b)
)
(wire (pts (xy 81.915 133.35) (xy 86.995 133.35))
(stroke (width 0) (type default))
(uuid 3ee1d80b-2d85-4e1d-94f6-ebf3e7ad1cf2)
)
(wire (pts (xy 139.7 80.01) (xy 139.7 69.85))
(stroke (width 0) (type default))
(uuid 460320aa-b3da-463a-a418-bb6d43c47994)
)
(wire (pts (xy 57.15 102.87) (xy 57.15 104.14))
(stroke (width 0) (type default))
(uuid 46e20124-b5d2-43b4-8775-c3ff383eeef8)
)
(wire (pts (xy 139.7 63.5) (xy 139.7 69.85))
(stroke (width 0) (type default))
(uuid 476c3bbb-8853-4398-97e0-d42375c84794)
)
(wire (pts (xy 149.225 131.445) (xy 176.53 131.445))
(stroke (width 0) (type default))
(uuid 4b15ce36-99c0-4ae2-a7db-c19d75d82e68)
)
(wire (pts (xy 175.26 67.31) (xy 182.88 67.31))
(stroke (width 0) (type default))
(uuid 4f7ff1f5-0bf7-4307-b681-6e25918eb5d7)
)
(wire (pts (xy 126.365 106.68) (xy 131.445 106.68))
(stroke (width 0) (type default))
(uuid 59d5cc5c-7363-4779-af29-ab03ef94d15f)
)
(wire (pts (xy 152.4 52.07) (xy 152.4 59.69))
(stroke (width 0) (type default))
(uuid 5ea324cf-46f2-4e51-bf3d-98dc7d142f5b)
)
(wire (pts (xy 81.915 124.46) (xy 81.915 125.73))
(stroke (width 0) (type default))
(uuid 5f739053-166b-4e0e-b278-f97f350cdbaf)
)
(wire (pts (xy 139.7 52.07) (xy 152.4 52.07))
(stroke (width 0) (type default))
(uuid 5fd353c0-7bc4-47b7-badf-ac284c938b6e)
)
(wire (pts (xy 131.445 52.07) (xy 139.7 52.07))
(stroke (width 0) (type default))
(uuid 6068bec7-d86e-4171-92c0-75348f7ae774)
)
(wire (pts (xy 81.915 125.73) (xy 86.995 125.73))
(stroke (width 0) (type default))
(uuid 67dd4ac3-ca7e-47c9-8907-bc95994e897e)
)
(wire (pts (xy 76.2 133.35) (xy 81.915 133.35))
(stroke (width 0) (type default))
(uuid 6957233e-226c-42f0-8495-964213b66000)
)
(wire (pts (xy 139.7 52.07) (xy 139.7 55.88))
(stroke (width 0) (type default))
(uuid 6ddc37ac-e989-4b3d-9d4b-fbeac4149f2f)
)
(wire (pts (xy 212.725 80.01) (xy 197.485 80.01))
(stroke (width 0) (type default))
(uuid 77873e37-b072-4c62-88cd-136b1b53bfe0)
)
(wire (pts (xy 60.325 43.815) (xy 95.885 43.815))
(stroke (width 0) (type default))
(uuid 7f98f3cd-0458-48e8-b6a8-0d9634336cf7)
)
(wire (pts (xy 57.15 111.76) (xy 62.23 111.76))
(stroke (width 0) (type default))
(uuid 7fd0733c-dacf-4b39-a39b-5a298efdeb43)
)
(wire (pts (xy 139.7 69.85) (xy 152.4 69.85))
(stroke (width 0) (type default))
(uuid 8641eba4-795d-4736-8660-c60d71114f57)
)
(wire (pts (xy 57.15 123.19) (xy 57.15 124.46))
(stroke (width 0) (type default))
(uuid 871d478d-7e8a-45cb-b9ad-1ed980c765f4)
)
(wire (pts (xy 152.4 59.69) (xy 152.4 64.77))
(stroke (width 0) (type default))
(uuid 8723f829-0778-4848-9452-0bf2ee80548b)
)
(wire (pts (xy 83.185 104.14) (xy 76.835 104.14))
(stroke (width 0) (type default))
(uuid 8b863a0f-eadd-432a-8c6f-02b34b17a36f)
)
(wire (pts (xy 131.445 106.68) (xy 149.225 106.68))
(stroke (width 0) (type default))
(uuid 8c83f6ee-26fa-4c87-b496-a8ee3f400ee3)
)
(wire (pts (xy 221.615 131.445) (xy 238.76 131.445))
(stroke (width 0) (type default))
(uuid 90c4a5c9-292e-4ceb-a098-ca3460a5f184)
)
(wire (pts (xy 212.725 59.69) (xy 212.725 60.325))
(stroke (width 0) (type default))
(uuid 9599b015-0de8-4182-b132-075f6069dd6b)
)
(wire (pts (xy 48.26 66.04) (xy 60.325 66.04))
(stroke (width 0) (type default))
(uuid 9b82df89-472c-47fc-bea6-fe25894277c7)
)
(wire (pts (xy 56.515 132.08) (xy 61.595 132.08))
(stroke (width 0) (type default))
(uuid a121855d-7823-4d93-8219-289e9e1096bf)
)
(wire (pts (xy 149.225 109.22) (xy 149.225 131.445))
(stroke (width 0) (type default))
(uuid a73a2f43-0bdc-45c6-a2f0-52428ce86948)
)
(wire (pts (xy 87.63 104.14) (xy 83.185 104.14))
(stroke (width 0) (type default))
(uuid aa4cc0a0-2f57-4d19-8bcd-b0d5c70637ff)
)
(wire (pts (xy 131.445 131.445) (xy 149.225 131.445))
(stroke (width 0) (type default))
(uuid ac65fa00-31b3-4eee-8edd-b401582a68ce)
)
(wire (pts (xy 76.2 125.73) (xy 81.915 125.73))
(stroke (width 0) (type default))
(uuid af87de4f-7650-4c45-b41e-39ce188d4590)
)
(wire (pts (xy 57.15 124.46) (xy 50.8 124.46))
(stroke (width 0) (type default))
(uuid b2933aaf-586b-46fe-a73a-393c54aa501f)
)
(wire (pts (xy 57.15 104.14) (xy 51.435 104.14))
(stroke (width 0) (type default))
(uuid b9d947ea-ad18-49d0-8b65-98864d50c2ae)
)
(wire (pts (xy 82.55 111.76) (xy 87.63 111.76))
(stroke (width 0) (type default))
(uuid b9dd2984-e1b3-4b41-807f-650e7e961c68)
)
(wire (pts (xy 205.105 106.68) (xy 221.615 106.68))
(stroke (width 0) (type default))
(uuid bc6fba55-c455-4eec-b077-1d2a468d725a)
)
(wire (pts (xy 62.23 104.14) (xy 57.15 104.14))
(stroke (width 0) (type default))
(uuid bcd0a717-fbeb-4250-b2e1-03d689022707)
)
(wire (pts (xy 176.53 131.445) (xy 221.615 131.445))
(stroke (width 0) (type default))
(uuid bfc836bc-66f4-4054-9a8e-57896034f6a5)
)
(wire (pts (xy 51.435 111.76) (xy 57.15 111.76))
(stroke (width 0) (type default))
(uuid c1514f4b-2b9b-47b1-8f23-dc655b5c4b61)
)
(wire (pts (xy 50.8 132.08) (xy 56.515 132.08))
(stroke (width 0) (type default))
(uuid cb3d5d89-7179-423b-a488-507756db7524)
)
(wire (pts (xy 60.325 73.66) (xy 48.26 73.66))
(stroke (width 0) (type default))
(uuid cd4f02ed-d860-4e45-ab61-89beeaa15c4a)
)
(wire (pts (xy 182.88 80.01) (xy 139.7 80.01))
(stroke (width 0) (type default))
(uuid ce594b74-c116-459f-92f0-a6a42d984b3a)
)
(wire (pts (xy 182.88 80.01) (xy 197.485 80.01))
(stroke (width 0) (type default))
(uuid d13ff61f-0ea0-498f-aca7-3017606e7526)
)
(wire (pts (xy 238.76 131.445) (xy 238.76 114.3))
(stroke (width 0) (type default))
(uuid d21a90fd-c42c-4b81-ab8c-a267c71ae4ac)
)
(wire (pts (xy 197.485 59.69) (xy 212.725 59.69))
(stroke (width 0) (type default))
(uuid d268b016-f0d8-40de-97ee-a6ea1ad0679f)
)
(wire (pts (xy 212.725 59.69) (xy 229.87 59.69))
(stroke (width 0) (type default))
(uuid d5537fca-844c-4f44-9c06-19d4fb000fbb)
)
(wire (pts (xy 197.485 59.69) (xy 197.485 60.325))
(stroke (width 0) (type default))
(uuid d6bc1f22-1cce-42a8-94c7-e7b18128eb8d)
)
(wire (pts (xy 221.615 131.445) (xy 221.615 114.3))
(stroke (width 0) (type default))
(uuid d863b49a-d7b1-443d-b1fb-e2e51ec1c10c)
)
(wire (pts (xy 60.325 68.58) (xy 60.325 73.66))
(stroke (width 0) (type default))
(uuid dbe5dac9-8ebf-4b5c-9098-598aab55626f)
)
(wire (pts (xy 95.885 63.5) (xy 100.965 63.5))
(stroke (width 0) (type default))
(uuid e177cf70-f5e0-405f-93f3-e8d17b19092c)
)
(wire (pts (xy 221.615 106.68) (xy 238.76 106.68))
(stroke (width 0) (type default))
(uuid e27db8ba-77c5-49ad-a140-63591d881ddd)
)
(wire (pts (xy 175.26 59.69) (xy 197.485 59.69))
(stroke (width 0) (type default))
(uuid e30f4f11-1062-4059-a3e0-441bcf6504f7)
)
(wire (pts (xy 60.325 63.5) (xy 60.325 43.815))
(stroke (width 0) (type default))
(uuid e473dc38-bf6b-412d-a8b4-17faa465ca12)
)
(wire (pts (xy 131.445 120.015) (xy 131.445 131.445))
(stroke (width 0) (type default))
(uuid e809acf7-62c1-4285-bec6-bb876d9ad692)
)
(wire (pts (xy 61.595 124.46) (xy 57.15 124.46))
(stroke (width 0) (type default))
(uuid f1c79dda-79ee-41cf-bec7-519c72f4067c)
)
(wire (pts (xy 95.885 43.815) (xy 95.885 58.42))
(stroke (width 0) (type default))
(uuid f653e8e2-7195-4413-9266-9fc751e5f222)
)
(text "+2.5V regulator" (at 170.18 121.285 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 52728f8f-98b0-4fc1-952b-9ff3509b6bb6)
)
(text "-2.5V regulator" (at 156.845 77.47 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 616cc4d7-d0e4-4fa5-9ce6-a92fc51c814c)
)
(text "Voltage Inverter" (at 70.485 48.26 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cce3b8c5-b2f2-4411-9aac-be6c1fd27729)
)
(label "-RAW" (at 100.965 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1d1deb22-0e9a-4081-980b-de284709b2b5)
)
(label "AVSS" (at 57.15 114.935 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 912020ce-8a01-4d18-921e-d3a3fd372f05)
)
(label "-RAW" (at 131.445 52.07 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c12c34e9-ca4d-4a5c-bf62-e6b8a4d61dba)
)
(hierarchical_label "AVDD" (shape input) (at 252.73 106.68 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 14459e07-7845-45ce-8492-bc43d9384e2e)
)
(hierarchical_label "DVDD" (shape input) (at 95.885 43.815 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 491b0c67-4e4c-4d0c-9afc-eeeafcedddb7)
)
(hierarchical_label "AVDD" (shape input) (at 57.15 123.19 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6431188a-14b3-492f-84d0-a4c971de6668)
)
(hierarchical_label "AVDD" (shape input) (at 83.185 102.87 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6a467451-4967-412d-83d8-1e07ce404ae1)
)
(hierarchical_label "AVDD" (shape input) (at 57.15 102.87 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9f88b0af-4dc5-4e71-8518-0d22302585e1)
)
(hierarchical_label "AVSS" (shape input) (at 229.87 59.69 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b91d3890-c94b-4863-beb0-7c7356631a0c)
)
(hierarchical_label "DVDD" (shape input) (at 81.915 124.46 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eae39ea0-3019-4589-8d41-7426d673f0b0)
)
(hierarchical_label "DVDD" (shape input) (at 126.365 106.68 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eeb59e20-ed92-45b4-9128-f5182d4e06ce)
)
(hierarchical_label "DVDD" (shape input) (at 205.105 111.76 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f7da2803-e3e4-44a4-9fe6-1908b7f6f2ff)
)
(symbol (lib_id "Device:C") (at 238.76 110.49 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0841de03-0b7b-4143-b9a5-c050cace0c5f)
(property "Reference" "C34" (at 241.935 109.22 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 241.935 111.76 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 239.7252 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 238.76 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C96446" (at 238.76 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9a7eb220-cb12-4f40-a7ea-1d7d9631e156))
(pin "2" (uuid 6c700cea-cba2-405f-9955-b7fb231d2416))
(instances
(project "ads-power"
(path "/5c414ab4-79fc-476a-bb82-f78a770609ff"
(reference "C34") (unit 1)
)
)
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "C55") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 87.63 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0c3656ab-1664-493c-b79e-fad4e33537af)
(property "Reference" "C40" (at 91.44 107.315 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 91.44 109.855 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 88.5952 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 87.63 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C14663" (at 87.63 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a1bd9de1-4660-40e1-a88f-6d450a2fc600))
(pin "2" (uuid 8ed4a660-6e2b-49d5-a3a5-241cb64c7f3c))
(instances
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f"
(reference "C40") (unit 1)
)
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "C48") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 221.615 110.49 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1be7cbaa-c129-4d90-98a1-09afd6a6041c)
(property "Reference" "C33" (at 224.79 109.22 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C 2.2uF" (at 224.79 111.76 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 222.5802 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 221.615 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23630" (at 221.615 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dad413bf-526e-4c31-aafb-ac8265861cea))
(pin "2" (uuid 352ca301-fd6c-42d5-ac8e-6688fc41d64f))
(instances
(project "ads-power"
(path "/5c414ab4-79fc-476a-bb82-f78a770609ff"
(reference "C33") (unit 1)
)
)
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "C54") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 212.725 64.135 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 24dc2840-8bd9-4e01-b63f-ee8df4b57918)
(property "Reference" "C30" (at 215.9 62.865 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 215.9 65.405 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 213.6902 67.945 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 212.725 64.135 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C96446" (at 212.725 64.135 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 65c892a5-d4c7-4c97-b526-f493b868ae44))
(pin "2" (uuid 98c43783-39c6-41d5-96bf-894befa94530))
(instances
(project "ads-power"
(path "/5c414ab4-79fc-476a-bb82-f78a770609ff"
(reference "C30") (unit 1)
)
)
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "C53") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 182.88 76.2 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2ccfac51-2595-42ac-b969-a4fa68606b7e)
(property "Reference" "C19" (at 186.055 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C 0.1uF" (at 186.055 77.47 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 183.8452 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 182.88 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C14663" (at 182.88 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3b36463-bc3c-40a2-973d-612ec0663881))
(pin "2" (uuid f33ae36e-6603-4406-a206-299726a20552))
(instances
(project "ads-power"
(path "/5c414ab4-79fc-476a-bb82-f78a770609ff"
(reference "C19") (unit 1)
)
)
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "C51") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 139.7 59.69 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2cedaa44-8344-48d8-9f19-6073f3a643e7)
(property "Reference" "C28" (at 142.875 58.42 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C 2.2uF" (at 142.875 60.96 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 140.6652 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 139.7 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23630" (at 139.7 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 42a50e8f-6723-4ce2-ba37-e80ac011beec))
(pin "2" (uuid 938e3342-223c-40ab-aace-e46ca8d7a608))
(instances
(project "ads-power"
(path "/5c414ab4-79fc-476a-bb82-f78a770609ff"
(reference "C28") (unit 1)
)
)
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "C50") (unit 1)
)
)
)
)
(symbol (lib_id "power:GNDA") (at 81.915 133.35 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2ea0f0f7-697e-4001-9ce5-39eddc73f3f0)
(property "Reference" "#PWR055" (at 81.915 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GNDA" (at 81.915 137.795 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 81.915 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 81.915 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 368ff98e-bdb1-41f1-b7be-6f4ab3cc901f))
(instances
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f"
(reference "#PWR055") (unit 1)
)
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "#PWR055") (unit 1)
)
)
)
)
(symbol (lib_id "TPS72325:TPS72325") (at 165.1 64.77 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 33ec85ba-88f3-467d-858b-f22ca68ec51b)
(property "Reference" "U7" (at 163.83 52.07 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TPS72325" (at 163.83 54.61 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "TPS72325DBVR:SOT95P280X145-5N" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Texas Instruments" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "\nLinear Voltage Regulator IC Negative Fixed 1 Output 200mA SOT-23-5\n" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "None" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/TPS72325/Texas+Instruments/view-part/?ref=snap" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "TPS72325" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "Not in stock" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/TPS72325/Texas+Instruments/view-part/?ref=eda" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "LCSC" "C69932" (at 165.1 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 22c22342-0060-4565-a6c7-2928280db37c))
(pin "2" (uuid 260febe9-e501-4ac4-944c-d0b4c8f375f2))
(pin "3" (uuid b472fa55-21ed-4c86-81c1-62ea91d57144))
(pin "4" (uuid 5f12bf38-f30b-4529-a815-9749288dadf6))
(pin "5" (uuid 5da3c02e-2f6c-45d1-bcf0-d6466ada9d59))
(instances
(project "ads-power"
(path "/5c414ab4-79fc-476a-bb82-f78a770609ff"
(reference "U7") (unit 1)
)
)
(project "Monolith"
(path "/a4ecfbe3-0f16-403e-8cdc-2760bb3b2c3f/59358d22-73ff-4ad7-8792-0420c72dd241"
(reference "U6") (unit 1)
)