forked from balthazar-space/Balthazar-PSU-R-D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBalthazarPSU.net
1160 lines (1160 loc) · 45.4 KB
/
BalthazarPSU.net
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
(export (version D)
(design
(source C:\Users\turbo\Desktop\github\Balthazar\BalthazarPSU\BalthazarPSU.sch)
(date "5/19/2020 2:30:43 PM")
(tool "Eeschema (5.1.5)-3")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source BalthazarPSU.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref L1)
(value "2.2uH 4A")
(footprint Inductor_SMD:L_Coilcraft_XxL4020)
(libsource (lib BalthazarPSU-rescue) (part INDUCTOR_SMALL-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E346E06))
(comp (ref R7)
(value 265)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3473ED))
(comp (ref R4)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E347820))
(comp (ref R5)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E347880))
(comp (ref D1)
(value Led)
(footprint LED_SMD:LED_1206_3216Metric)
(libsource (lib BalthazarPSU-rescue) (part Led_Small-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E347A22))
(comp (ref D2)
(value Led)
(footprint LED_SMD:LED_1206_3216Metric)
(libsource (lib BalthazarPSU-rescue) (part Led_Small-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E347A6B))
(comp (ref R3)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E348254))
(comp (ref R2)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3483D9))
(comp (ref R1)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E348401))
(comp (ref CPMID1)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E349168))
(comp (ref CBUS3)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E349A66))
(comp (ref CSYS1)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E349C2D))
(comp (ref CSYS2)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E349C8F))
(comp (ref CREGN1)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E34D8B1))
(comp (ref RBTST1)
(value R)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E34E3C4))
(comp (ref CBTST1)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E34EAD9))
(comp (ref R8)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E350BD5))
(comp (ref R10)
(value 6K8)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E350CF3))
(comp (ref "THERMISTOR(103-AT)1")
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib BalthazarPSU-rescue) (part THERMISTOR-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E351885))
(comp (ref R6)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E352EE1))
(comp (ref U1)
(value PAM8403-SOP16)
(footprint Package_SO:SOP-16_4.4x10.4mm_P1.27mm)
(datasheet https://www.diodes.com/assets/Datasheets/PAM8403.pdf)
(libsource (lib Analog) (part PAM8403-SOP16) (description "Diodes Incorporated PAM8403 Class D 2x3W / 5V (package SOP-16) SOP-16"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4E1886))
(comp (ref CBUS5)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E52D308))
(comp (ref CBUS8)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E52EA0F))
(comp (ref R11)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E53084E))
(comp (ref R9)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E532590))
(comp (ref CBUS7)
(value 0.1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E56134C))
(comp (ref CBUS1)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E56F8DC))
(comp (ref CBUS2)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E576840))
(comp (ref CBUS4)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5777DF))
(comp (ref D3)
(value RBR5LAM40A)
(footprint Diode_SMD:D_SOD-128)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE74244))
(comp (ref CBAT1)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E347095))
(comp (ref FBEAD3)
(value 10E)
(footprint Inductor_SMD:L_Neosid_MicroCoil_Ms36-L)
(libsource (lib BalthazarPSU-rescue) (part INDUCTOR_SMALL-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF3D9A1))
(comp (ref U2)
(value TPS63020)
(footprint Package_SON:WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mmThermalPads)
(datasheet http://www.ti.com/lit/ds/symlink/tps63060.pdf)
(libsource (lib Regulator_Switching) (part TPS63020) (description "Buck-Boost Converter, 2.5-12V Input Voltage, 2-A Switch Current, Adjustable 2.5-8V Output Voltage, S-PWSON-N10"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF5AC7D))
(comp (ref U3)
(value TPS63020)
(footprint Package_SON:WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mmThermalPads)
(datasheet http://www.ti.com/lit/ds/symlink/tps63060.pdf)
(libsource (lib Regulator_Switching) (part TPS63020) (description "Buck-Boost Converter, 2.5-12V Input Voltage, 2-A Switch Current, Adjustable 2.5-8V Output Voltage, S-PWSON-N10"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF5EACB))
(comp (ref L2)
(value "1.5uH 4A")
(footprint Inductor_SMD:L_Coilcraft_XxL4020)
(libsource (lib BalthazarPSU-rescue) (part INDUCTOR_SMALL-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EFF8ED2))
(comp (ref L3)
(value "1.5uH 4A")
(footprint Inductor_SMD:L_Coilcraft_XxL4020)
(libsource (lib BalthazarPSU-rescue) (part INDUCTOR_SMALL-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EFF9E33))
(comp (ref C1)
(value 0.1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F053A58))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F057934))
(comp (ref R12)
(value 1M)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F081F65))
(comp (ref R14)
(value 1M)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F099466))
(comp (ref R13)
(value 180K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F09A309))
(comp (ref R15)
(value 180K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0D059D))
(comp (ref C3)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1094C3))
(comp (ref C5)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F10B657))
(comp (ref C7)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F10BE2A))
(comp (ref C9)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F10C6BA))
(comp (ref C4)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F16D1D9))
(comp (ref C6)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F16D1E3))
(comp (ref C8)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F16D1ED))
(comp (ref C10)
(value 22uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F16D1F7))
(comp (ref CSYS4)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1ABDBB))
(comp (ref SW2)
(value SW_SPST)
(footprint Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile)
(datasheet ~)
(libsource (lib Switch) (part SW_SPST) (description "Single Pole Single Throw (SPST) switch"))
(sheetpath (names /) (tstamps /))
(tstamp 5F838716))
(comp (ref R16)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F8DE7FD))
(comp (ref J5)
(value USB_A_female)
(footprint Connector_USB:USB_A_CNCTech_1001-011-01101_Horizontal-Female)
(datasheet " ~")
(libsource (lib Connector) (part USB_A) (description "USB Type A connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA06D3C))
(comp (ref J6)
(value USB_OTG_female)
(footprint Connector_USB:USB_Micro-B_Molex-105133-0031)
(datasheet " ~")
(libsource (lib Connector) (part USB_OTG) (description "USB mini/micro connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA08DB4))
(comp (ref D6)
(value RBR5LAM40A)
(footprint Diode_SMD:D_SOD-128)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA259EC))
(comp (ref CPSU2)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBF72F7))
(comp (ref R17)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FE12758))
(comp (ref SW3)
(value SW_SPST)
(footprint Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile)
(datasheet ~)
(libsource (lib Switch) (part SW_SPST) (description "Single Pole Single Throw (SPST) switch"))
(sheetpath (names /) (tstamps /))
(tstamp 5E82A8AE))
(comp (ref R18)
(value 10K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E86D373))
(comp (ref FBEAD2)
(value 10E)
(footprint Inductor_SMD:L_Neosid_MicroCoil_Ms36-L)
(libsource (lib BalthazarPSU-rescue) (part INDUCTOR_SMALL-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EE8BD2A))
(comp (ref PSU1)
(value "3.9 - 17V adapter 3-5A")
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Barrel_Jack) (description "DC Barrel Jack"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC6A46B))
(comp (ref IC1)
(value BQ24193)
(footprint Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias)
(libsource (lib BalthazarPSU-rescue) (part BQ24193-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EC6F97C))
(comp (ref J8)
(value "3.3V 4A")
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E72EDCA))
(comp (ref J4)
(value AudioOUT)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Female) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EA6F019))
(comp (ref J1)
(value AudioIN)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Female) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EA94448))
(comp (ref R19)
(value 0)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E790EDE))
(comp (ref R20)
(value 0)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E7B06D1))
(comp (ref J7)
(value "host (promicro)")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x05_Male) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7D79BC))
(comp (ref THERM1)
(value thermistor)
(footprint TestPoint:TestPoint_2Pads_Pitch2.54mm_Drill0.8mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E94198E))
(comp (ref R23)
(value 1M)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E8D47BD))
(comp (ref R24)
(value 1M)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E8D530C))
(comp (ref R22)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E93AE80))
(comp (ref D5)
(value Led)
(footprint LED_SMD:LED_1206_3216Metric)
(libsource (lib BalthazarPSU-rescue) (part Led_Small-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E93AE8A))
(comp (ref R21)
(value 2K2)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E9E9306))
(comp (ref D4)
(value Led)
(footprint LED_SMD:LED_1206_3216Metric)
(libsource (lib BalthazarPSU-rescue) (part Led_Small-BalthazarPSU-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E9E9310))
(comp (ref CSYS3)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1AB588))
(comp (ref R26)
(value 270K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EBFD74A))
(comp (ref J11)
(value 3.3V/5V)
(footprint TestPoint:TestPoint_2Pads_Pitch2.54mm_Drill0.8mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC25386))
(comp (ref J10)
(value 3.3V/5V)
(footprint TestPoint:TestPoint_2Pads_Pitch2.54mm_Drill0.8mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC70C6A))
(comp (ref R25)
(value 270K)
(footprint Resistor_SMD:R_1206_3216Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EC9508F))
(comp (ref CPSU1)
(value 1uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EEA3C57))
(comp (ref BATT1)
(value "1s LiPo")
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8DE18A))
(comp (ref CBUS3a1)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E741625))
(comp (ref CPMID1a1)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7B2512))
(comp (ref CBUS3a3)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8CF0D4))
(comp (ref CBUS3a2)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E91D47E))
(comp (ref J9)
(value "3.3V 4A")
(footprint TerminalBlock:TerminalBlock_bornier-2_P5.08mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E802E1D)))
(libparts
(libpart (lib Analog) (part PAM8403-SOP16)
(aliases
(alias STC15W203S-35x-SOP16)
(alias STC15W204S-35x-SOP16)
(alias IAP15W205S-35x-SOP16)
(alias IRC15W207S-35x-SOP16)
(alias STC15W202S-35x-SOP16))
(description "Diodes Incorporated PAM8403 Class D 2x3W / 5V (package SOP-16) SOP-16")
(docs https://www.diodes.com/assets/Datasheets/PAM8403.pdf)
(footprints
(fp STC?SOP*3.9x9.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) PAM8403-SOP16)
(field (name Footprint) Package_SO:STC_SOP-16_3.9x9.9mm_P1.27mm))
(pins
(pin (num 1) (name +OUT_L) (type output))
(pin (num 2) (name PGND) (type output))
(pin (num 3) (name -OUT_L) (type output))
(pin (num 4) (name PVDD) (type power_in))
(pin (num 5) (name MUTE_LOW) (type input))
(pin (num 6) (name VDD) (type power_in))
(pin (num 7) (name IN_L) (type input))
(pin (num 8) (name VREF) (type power_in))
(pin (num 9) (name NC) (type output))
(pin (num 10) (name IN_R) (type input))
(pin (num 11) (name GND) (type output))
(pin (num 12) (name SHDN_LOW) (type input))
(pin (num 13) (name PVDD) (type power_in))
(pin (num 14) (name -OUT_R) (type output))
(pin (num 15) (name PGND) (type output))
(pin (num 16) (name +OUT_R) (type output))))
(libpart (lib BalthazarPSU-rescue) (part BQ24193-BalthazarPSU-rescue)
(footprints
(fp VQFN))
(fields
(field (name Reference) IC)
(field (name Value) BQ24193-BalthazarPSU-rescue))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name PSEL) (type input))
(pin (num 3) (name /PG) (type output))
(pin (num 4) (name STAT) (type output))
(pin (num 5) (name SCL) (type BiDi))
(pin (num 6) (name SDA) (type BiDi))
(pin (num 7) (name INT) (type output))
(pin (num 8) (name OTG) (type input))
(pin (num 9) (name /CE) (type input))
(pin (num 10) (name ILIM) (type input))
(pin (num 11) (name TS1) (type 3state))
(pin (num 12) (name TS2) (type input))
(pin (num 13) (name BAT) (type output))
(pin (num 14) (name BAT) (type output))
(pin (num 15) (name SYS) (type output))
(pin (num 16) (name SYS) (type output))
(pin (num 17) (name PGND) (type power_out))
(pin (num 18) (name PGND) (type power_out))
(pin (num 19) (name SW) (type output))
(pin (num 20) (name SW) (type output))
(pin (num 21) (name BTST) (type output))
(pin (num 22) (name REGN) (type output))
(pin (num 23) (name PMID) (type output))
(pin (num 24) (name VBUS) (type power_in))
(pin (num 25) (name PGND) (type power_out))))
(libpart (lib BalthazarPSU-rescue) (part INDUCTOR_SMALL-BalthazarPSU-rescue)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR_SMALL-BalthazarPSU-rescue))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib BalthazarPSU-rescue) (part Led_Small-BalthazarPSU-rescue)
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) D)
(field (name Value) Led_Small-BalthazarPSU-rescue))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name C) (type passive))))
(libpart (lib BalthazarPSU-rescue) (part THERMISTOR-BalthazarPSU-rescue)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805))
(fields
(field (name Reference) TH)
(field (name Value) THERMISTOR-BalthazarPSU-rescue))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Connector) (part Barrel_Jack)
(aliases
(alias Jack-DC))
(description "DC Barrel Jack")
(docs ~)
(footprints
(fp BarrelJack*))
(fields
(field (name Reference) J)
(field (name Value) Barrel_Jack))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Connector) (part Conn_01x02_Female)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x03_Female)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_01x04_Female)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector) (part Conn_01x05_Male)
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x05_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))))
(libpart (lib Connector) (part USB_A)
(description "USB Type A connector")
(docs " ~")
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_A))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name Shield) (type passive))))
(libpart (lib Connector) (part USB_OTG)
(description "USB mini/micro connector")
(docs " ~")
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_OTG))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name Shield) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_Schottky)
(description "Schottky diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Regulator_Switching) (part TPS63020)
(description "Buck-Boost Converter, 2.5-12V Input Voltage, 2-A Switch Current, Adjustable 2.5-8V Output Voltage, S-PWSON-N10")
(docs http://www.ti.com/lit/ds/symlink/tps63060.pdf)
(footprints
(fp Texas*S*PWSON*N10*))
(fields
(field (name Reference) U)
(field (name Value) TPS63020)
(field (name Footprint) Package_SON:Texas_S-PWSON-N10_ThermalVias))
(pins
(pin (num 0) (name PGND) (type power_out))
(pin (num 1) (name VINA) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name FB) (type input))
(pin (num 4) (name VOUT) (type power_out))
(pin (num 5) (name VOUT) (type power_out))
(pin (num 6) (name L2) (type power_in))
(pin (num 7) (name L2) (type power_in))
(pin (num 8) (name L1) (type power_out))
(pin (num 9) (name L1) (type power_out))
(pin (num 10) (name VIN) (type power_in))
(pin (num 11) (name VIN) (type power_in))
(pin (num 12) (name EN) (type power_in))
(pin (num 13) (name PS/SYNC) (type input))
(pin (num 14) (name PG) (type input))
(pin (num 15) (name PGND) (type power_out))))
(libpart (lib Switch) (part SW_SPST)
(description "Single Pole Single Throw (SPST) switch")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_SPST))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive)))))
(libraries
(library (logical Analog)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Analog.lib"))
(library (logical BalthazarPSU-rescue)
(uri C:\Users\turbo\Desktop\github\Balthazar\BalthazarPSU/BalthazarPSU-rescue.lib))
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Regulator_Switching)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Regulator_Switching.lib"))
(library (logical Switch)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Switch.lib")))
(nets
(net (code 1) (name "Net-(R18-Pad2)")
(node (ref R18) (pin 2))
(node (ref U1) (pin 5))
(node (ref SW3) (pin 2)))
(net (code 2) (name "Net-(FBEAD2-Pad1)")
(node (ref PSU1) (pin 1))
(node (ref FBEAD2) (pin 1)))
(net (code 3) (name "Net-(U2-Pad0)")
(node (ref U2) (pin 0))
(node (ref U2) (pin 0))
(node (ref U2) (pin 0))
(node (ref U2) (pin 0)))
(net (code 4) (name "Net-(J4-Pad1)")
(node (ref U1) (pin 3))
(node (ref J4) (pin 1)))
(net (code 5) (name "Net-(J4-Pad3)")
(node (ref U1) (pin 16))
(node (ref J4) (pin 3)))
(net (code 6) (name "Net-(IC1-Pad10)")
(node (ref IC1) (pin 10))
(node (ref R7) (pin 1)))
(net (code 7) (name "Net-(CBTST1-Pad2)")
(node (ref IC1) (pin 21))
(node (ref CBTST1) (pin 2)))
(net (code 8) (name "Net-(CPMID1-Pad2)")
(node (ref IC1) (pin 23))
(node (ref CPMID1) (pin 2))
(node (ref CPMID1a1) (pin 2)))
(net (code 9) (name "Net-(IC1-Pad4)")
(node (ref IC1) (pin 4))
(node (ref R5) (pin 1)))
(net (code 10) (name "Net-(IC1-Pad9)")
(node (ref IC1) (pin 9))
(node (ref SW2) (pin 2))
(node (ref R6) (pin 1)))
(net (code 11) (name "Net-(CBAT1-Pad2)")
(node (ref CBAT1) (pin 2))
(node (ref IC1) (pin 13))
(node (ref IC1) (pin 14))
(node (ref FBEAD3) (pin 1)))
(net (code 12) (name "Net-(J5-Pad2)")
(node (ref J6) (pin 2))
(node (ref J5) (pin 2))
(node (ref R20) (pin 1)))
(net (code 13) (name "Net-(IC1-Pad11)")
(node (ref IC1) (pin 11))
(node (ref IC1) (pin 12))
(node (ref "THERMISTOR(103-AT)1") (pin 2))
(node (ref R8) (pin 2))
(node (ref R10) (pin 1))
(node (ref THERM1) (pin 2)))
(net (code 14) (name "Net-(J4-Pad4)")
(node (ref J4) (pin 4))
(node (ref U1) (pin 14)))
(net (code 15) (name PGND)
(node (ref C3) (pin 2))
(node (ref C5) (pin 2))
(node (ref J7) (pin 1))
(node (ref C7) (pin 2))
(node (ref C9) (pin 2))
(node (ref R13) (pin 1))
(node (ref CBUS3a3) (pin 1))
(node (ref J9) (pin 2))
(node (ref CBUS3a2) (pin 1))
(node (ref R15) (pin 1))
(node (ref BATT1) (pin 2))
(node (ref R25) (pin 1))
(node (ref THERM1) (pin 1))
(node (ref CPMID1a1) (pin 1))
(node (ref CBUS3a1) (pin 1))
(node (ref CBAT1) (pin 1))
(node (ref CBUS3) (pin 1))
(node (ref R7) (pin 2))
(node (ref U1) (pin 9))
(node (ref U2) (pin 0))
(node (ref CSYS1) (pin 2))
(node (ref CBUS7) (pin 1))
(node (ref U1) (pin 15))
(node (ref U1) (pin 11))
(node (ref U1) (pin 2))
(node (ref CBUS4) (pin 1))
(node (ref CBUS1) (pin 2))
(node (ref CBUS2) (pin 2))
(node (ref CPMID1) (pin 1))
(node (ref U2) (pin 0))
(node (ref U2) (pin 0))
(node (ref U2) (pin 0))
(node (ref CSYS2) (pin 2))
(node (ref CREGN1) (pin 1))
(node (ref R10) (pin 2))
(node (ref "THERMISTOR(103-AT)1") (pin 1))
(node (ref R6) (pin 2))
(node (ref C1) (pin 1))
(node (ref J5) (pin 5))
(node (ref SW3) (pin 1))
(node (ref CPSU2) (pin 2))
(node (ref C2) (pin 1))
(node (ref IC1) (pin 17))
(node (ref IC1) (pin 25))
(node (ref IC1) (pin 18))
(node (ref U3) (pin 2))
(node (ref U3) (pin 0))
(node (ref U2) (pin 15))
(node (ref U2) (pin 2))
(node (ref J1) (pin 2))
(node (ref U3) (pin 0))
(node (ref U3) (pin 0))
(node (ref U3) (pin 0))
(node (ref PSU1) (pin 2))
(node (ref C4) (pin 2))
(node (ref C6) (pin 2))
(node (ref J5) (pin 4))
(node (ref R26) (pin 1))
(node (ref R16) (pin 1))
(node (ref C8) (pin 2))
(node (ref C10) (pin 2))
(node (ref U3) (pin 15))
(node (ref J8) (pin 2))
(node (ref J6) (pin 6))
(node (ref CSYS3) (pin 2))
(node (ref CPSU1) (pin 1))
(node (ref CSYS4) (pin 2))
(node (ref J6) (pin 5)))
(net (code 16) (name "Net-(J4-Pad2)")
(node (ref U1) (pin 1))
(node (ref J4) (pin 2)))
(net (code 17) (name "Net-(IC1-Pad8)")
(node (ref IC1) (pin 8))
(node (ref R17) (pin 1))
(node (ref J7) (pin 5)))
(net (code 18) (name "Net-(J5-Pad3)")
(node (ref J6) (pin 3))
(node (ref R19) (pin 1))
(node (ref J5) (pin 3)))
(net (code 19) (name "Net-(J6-Pad4)")
(node (ref J6) (pin 4)))
(net (code 20) (name "Net-(CPSU2-Pad1)")
(node (ref D6) (pin 2))
(node (ref CPSU2) (pin 1))
(node (ref J5) (pin 1)))
(net (code 21) (name "Net-(J10-Pad2)")
(node (ref R25) (pin 2))
(node (ref J10) (pin 2)))
(net (code 22) (name "Net-(J11-Pad1)")
(node (ref J11) (pin 1))
(node (ref R15) (pin 2))
(node (ref R14) (pin 1))
(node (ref U3) (pin 3)))
(net (code 23) (name "Net-(J11-Pad2)")
(node (ref R26) (pin 2))
(node (ref J11) (pin 2)))
(net (code 24) (name "Net-(BATT1-Pad1)")
(node (ref BATT1) (pin 1))
(node (ref FBEAD3) (pin 2)))
(net (code 25) (name "Net-(J10-Pad1)")
(node (ref U2) (pin 3))
(node (ref R13) (pin 2))
(node (ref J10) (pin 1))
(node (ref R12) (pin 1)))
(net (code 26) (name "Net-(IC1-Pad7)")
(node (ref R1) (pin 1))
(node (ref IC1) (pin 7))
(node (ref J7) (pin 4)))
(net (code 27) (name "Net-(IC1-Pad2)")
(node (ref IC1) (pin 2))
(node (ref R19) (pin 2))