-
Notifications
You must be signed in to change notification settings - Fork 0
/
BMS_Buck-Boost.kicad_pcb
8446 lines (8375 loc) · 335 KB
/
BMS_Buck-Boost.kicad_pcb
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "BMS_Buck-Boost")
(date "2023-12-28")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "VBUS")
(net 2 "GND")
(net 3 "+BATT")
(net 4 "Net-(U2-VCC)")
(net 5 "-BATT")
(net 6 "+VCC_IN")
(net 7 "Net-(U3-EN)")
(net 8 "+VCC_OUT")
(net 9 "STAT")
(net 10 "Net-(D1-A)")
(net 11 "Net-(D2-A2)")
(net 12 "Net-(J1-CC1)")
(net 13 "Net-(J1-CC2)")
(net 14 "Net-(U3-L1_8)")
(net 15 "Net-(U3-L2_6)")
(net 16 "unconnected-(Q1-Pad1)")
(net 17 "Net-(U2-OD)")
(net 18 "Net-(U2-OC)")
(net 19 "Net-(U1-PROG)")
(net 20 "Net-(U2-CS)")
(net 21 "Net-(R10-Pad2)")
(net 22 "Net-(R11-Pad1)")
(net 23 "FB")
(net 24 "unconnected-(U2-TD-Pad4)")
(net 25 "unconnected-(U3-PG-Pad14)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 070eddf9-03c6-4962-8aec-c76b6a00254a)
(at 182.8038 86.9442)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/99ad6ee8-6ae7-4710-82cc-92debdfbe15a")
(attr smd)
(fp_text reference "R6" (at 2.4638 -0.0508 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7611c2a-2966-4fcf-953b-04a8842583b6)
)
(fp_text value "5.1K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf8ee6d3-b5b5-4ad2-adb4-f97a74a16bf6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 21e2c251-01d0-4369-8dc4-8236fa4b3f56)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb1283ff-2d4e-424f-9265-38743bbf3daa))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90975fd2-c914-448e-8968-edd44f689474))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72baa0b2-6a69-4d84-82a1-97002b9ffd50))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 372d3c89-c270-4ec8-b334-0d33f7c32b16))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bd659f3-b9a1-4180-8b06-6a83a5570ff6))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7905ce34-6240-4259-ad59-b90352cad53e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fba2782b-bbef-4810-9955-ea1f7266efb4))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fba7a5c-8cbc-4a87-bd2b-70422ce146dc))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b18c865-0277-4d0a-ac20-812d53038fc6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29cc1137-f736-44b7-9312-e1d527fcd7b3))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(J1-CC1)") (pintype "passive") (tstamp e78ef35f-d29b-4a1e-9202-105f60ef8ac5))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 3e49ca6c-073d-4e04-b637-969fa6e0f522))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 17d0fa76-1808-4434-adec-7148e0b40798)
(at 182.8038 85.1662)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/b595d9b9-c1fc-4d33-a5b2-37227f4b4a46")
(attr smd)
(fp_text reference "R5" (at 2.4892 0.0508 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 914dec2d-80d5-453a-ad92-2ccfa2fbb3e4)
)
(fp_text value "5.1K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1bb76c7e-c3ff-411e-905a-be21be03abfa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 417e1396-9c16-4981-aa12-bbb5f16c60e4)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8ed69ad-5933-4611-a3c5-d446472cdf59))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebf33aa2-e3fd-450f-98e5-b064625fa49c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a5bc2b6-277d-43ab-8c44-d0ca477d6f47))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 304a5078-22c3-4590-8ab5-8ebdbf99e1fa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 435dd695-196d-4681-b110-c797e4d679ec))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4859ce77-8b66-494f-a596-8dae08fe254b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5641c2a-fb4d-4d41-9075-4309022d8e53))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c10e2c9-844a-4f54-8d5d-34e245082f67))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e52bf0c0-1abe-4d62-90aa-f2106027e3ec))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45106601-ba82-48a7-979f-c85a8c02e288))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(J1-CC2)") (pintype "passive") (tstamp b3c66d33-1ac7-457c-9486-e6e390434530))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0302640d-3c94-406e-a92d-041063b3c331))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 23e87007-62bc-4d56-b0bf-9622b41f6e6a)
(at 181.2544 95.8 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/067b302f-5d15-45e9-8ced-4605f6155cf7")
(attr smd)
(fp_text reference "R10" (at 0.0544 1.4342) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f5df13c-5d5a-4dd2-9f3e-1ad1fe973637)
)
(fp_text value "1,1M" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f0a405f-7ecf-4654-9443-34312ec8218e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 56b564c0-a1d2-425d-9c2a-1acf034b4b3c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a2966ab-2ed1-4ffe-9ecf-15ab38a9c172))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e8f7980-bf9b-4811-92ac-753800e1d5ec))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf08e5b6-43e7-43ea-a932-6b09d7831875))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff4ea6fa-46e8-42fd-8fc1-78a00bd497ea))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0bda6d6-723e-498a-949f-9db08066809c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73ee2dc6-1959-42f1-a84d-bcc60afadf88))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fba65e1-a823-4042-9141-f063f088d5df))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dccd64b-f7b1-4ab3-bfa8-d9c6558c8cc6))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddba20e6-bd62-4f82-9ce7-17e84a002f15))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db60e506-a69c-4857-973f-69539ae1dc81))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+VCC_OUT") (pintype "passive") (tstamp e3dd4881-6d43-4018-9120-ac55bed1682c))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(R10-Pad2)") (pintype "passive") (tstamp ec25ce77-9c5e-416d-8995-275f261e42f4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 25aa14ed-4486-43e0-8700-8fdae01b21e3)
(at 163.8 97.9)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/9e99c6ac-dad5-4b26-8dea-44d323c314d3")
(attr smd)
(fp_text reference "C3" (at -0.5 -1.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3322f330-f4db-46dc-9eff-93076ad239d2)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25fba56d-2793-498f-9498-316b94002a2a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3a5eb6e8-893a-4419-a059-671185cd20c4)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b428b710-3b2b-4779-912d-202e615b9619))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bed4682-25f7-4576-acd7-9718af67097b))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86a431da-75b9-49d4-bd18-8fac162f7ce7))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65dc20e0-1c51-46dd-a791-93ffb05a9549))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e790791-e7f4-4297-87b6-14cdd1769e82))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4add56d5-fa9a-4141-97a6-316dc1fa892b))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b18506f6-8537-4e7f-821e-56f49a9b19d8))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f9afcff-e424-4f8e-8eee-040fdd5b52bb))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c1e3666-c6d9-45c0-ab5d-799dc2bdf9ac))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1866191d-133b-4c15-a8ba-37d156739a1f))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U2-VCC)") (pintype "passive") (tstamp b8bca642-baee-446e-8833-f93406e89c3e))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "-BATT") (pintype "passive") (tstamp 4c6e55d9-a1e8-4da6-8b3b-3968ff6568e4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:SOP65P640X120-8N" (layer "F.Cu")
(tstamp 2850c6ed-674c-4bcd-badd-2b5f85144487)
(at 159.4866 100.8126 180)
(property "Availability" "Not in stock")
(property "Check_prices" "https://www.snapeda.com/parts/FS8205A/Fortune+Semiconductor/view-part/?ref=eda")
(property "Description" "\n")
(property "MANUFACTURER" "Fortune Semiconductor")
(property "MAXIMUM_PACKAGE_HEIGHT" "1.2mm")
(property "MF" "Fortune Semiconductor")
(property "MP" "FS8205A")
(property "PARTREV" "1.7")
(property "Package" "Package")
(property "Price" "None")
(property "STANDARD" "IPC 7351B")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/FS8205A/Fortune+Semiconductor/view-part/?ref=snap")
(path "/12921c91-ad71-44fb-b3d6-10e141b919e9")
(attr smd)
(fp_text reference "Q1" (at 5.1866 0.6426) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 058ab4b9-cc8c-48d7-990e-c93c1a674beb)
)
(fp_text value "FS8205A" (at 6.35 2.327) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90d19846-abd3-45bc-adcd-77a0fd8d5feb)
)
(fp_line (start -2.25 -1.515) (end 2.25 -1.515)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 2a8dccfb-4f3f-476a-9ea3-3e880e509e89))
(fp_line (start -2.25 1.515) (end 2.25 1.515)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 8ede9c80-71f0-4bcb-8d59-1c25472e2734))
(fp_circle (center -4.44 -1.375) (end -4.34 -1.375)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2faebd87-2e74-4c37-810e-28649b5d2d3f))
(fp_line (start -3.91 -1.765) (end -3.91 1.765)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56667aa6-c938-481d-953a-ce4b6f7cad94))
(fp_line (start -3.91 -1.765) (end 3.91 -1.765)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bb070a6-4922-4fe8-942a-92bace54764d))
(fp_line (start -3.91 1.765) (end 3.91 1.765)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 604a4e5b-12ef-4591-891a-52c51df92553))
(fp_line (start 3.91 -1.765) (end 3.91 1.765)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0b1b39f-e150-4f39-b4a6-de6777bfe062))
(fp_line (start -2.25 -1.515) (end -2.25 1.515)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 76dbef5d-cdc4-4834-8e3c-9f07b442c464))
(fp_line (start -2.25 -1.515) (end 2.25 -1.515)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 3e8f9e0d-0b89-40bc-a1e2-5730a3a2a692))
(fp_line (start -2.25 1.515) (end 2.25 1.515)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 7c4e0e94-5cd9-44cd-857e-d8a6470a3d8b))
(fp_line (start 2.25 -1.515) (end 2.25 1.515)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp e9e86a85-894f-4858-8570-d426e4367918))
(fp_circle (center -4.44 -1.375) (end -4.34 -1.375)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 17e9537f-97d9-4af8-8adf-0d360e13ed87))
(pad "1" smd roundrect (at -2.88 -0.975 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 16 "unconnected-(Q1-Pad1)") (pintype "passive+no_connect") (solder_mask_margin 0.102) (tstamp 7629eef4-4083-4d69-b0e4-e1fc3d377f4b))
(pad "2" smd roundrect (at -2.88 -0.325 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 5 "-BATT") (pintype "passive") (solder_mask_margin 0.102) (tstamp 907de461-da86-4fe4-be5c-ae049ed4461e))
(pad "3" smd roundrect (at -2.88 0.325 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 5 "-BATT") (pintype "passive") (solder_mask_margin 0.102) (tstamp d9ccebb1-6090-4fa2-8aeb-0b3105774fe0))
(pad "4" smd roundrect (at -2.88 0.975 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 17 "Net-(U2-OD)") (pintype "passive") (solder_mask_margin 0.102) (tstamp e8b892ce-a96e-44dc-83e8-5a2061abcef3))
(pad "5" smd roundrect (at 2.88 0.975 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 18 "Net-(U2-OC)") (pintype "passive") (solder_mask_margin 0.102) (tstamp 0bb49e87-ec80-4635-914d-20349442229d))
(pad "6" smd roundrect (at 2.88 0.325 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 2 "GND") (pintype "passive") (solder_mask_margin 0.102) (tstamp 40476f89-0336-4b7f-8514-bd61dd44ef07))
(pad "7" smd roundrect (at 2.88 -0.325 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 2 "GND") (pintype "passive") (solder_mask_margin 0.102) (tstamp 381dc802-08a3-4347-a69e-72df5a6d81df))
(pad "8" smd roundrect (at 2.88 -0.975 180) (size 1.56 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05)
(net 16 "unconnected-(Q1-Pad1)") (pintype "passive+no_connect") (solder_mask_margin 0.102) (tstamp 2c134db1-5ea3-447e-bf1b-41738f2567a3))
(model "${KIPRJMOD}/libs/3d/FS8205A.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Diode_SMD:D_0805_2012Metric" (layer "F.Cu")
(tstamp 2cf0037b-4690-4f09-a808-065ec6f8b11c)
(at 152.9588 93.2688 -90)
(descr "Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/73a876be-9f01-4112-8e14-bf58096f54a1")
(attr smd)
(fp_text reference "D1" (at 2.54 0.1524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f680337d-0844-42a1-be1b-14e6e8ab1d59)
)
(fp_text value "LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58663806-0cb7-4060-b94a-c3237797a2fe)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a9d1ae68-2737-4f9f-a318-e921e6928009)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9e95c09-f0ec-4923-9996-14370fdd4d73))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3febf12b-0564-4c61-a505-2f301289b8f9))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b12aaf53-3ea5-4e17-98c9-2025a6678263))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43f71544-1c87-4cf7-8cb5-70ce5a3a83f4))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8311265f-8d94-42da-b5c9-dff125d942d2))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4deee8e6-9de4-411f-8fdc-5975a96f51c2))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3554eed1-981d-41a5-9554-3aac082020ae))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3a6b9fa-9497-4683-8ab6-d8e434a522ea))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4460d301-7df6-461c-8b86-10c842e43e2c))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64bb02bd-a91e-4635-bbdb-3217700a378f))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c20ec1a9-e018-4734-8d8f-e92b75b4f071))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a157732d-cd4b-435d-b5b4-6fbc22283e45))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "STAT") (pinfunction "K") (pintype "passive") (tstamp 66579c23-10de-40a7-bd99-e8f2f77f6dba))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 72d8b4df-0a77-481b-9ea0-0fc41227093a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (layer "F.Cu")
(tstamp 2d8ff287-128f-4b00-a989-7d10f2d6abf2)
(at 172.6 100.5 90)
(descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/c6e20a35-c3a4-4d4f-bada-ed5bddfe55aa")
(attr smd)
(fp_text reference "C11" (at 3.1575 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7706d17-3615-430c-80ae-060b2449e68f)
)
(fp_text value "100uF" (at 0 2.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9d6d9e1-948b-4f74-ad8f-0bd0885787f6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.88 0.88) (thickness 0.13)))
(tstamp f0edf5ad-de94-4491-a32f-069963d18df9)
)
(fp_line (start -2.46 -1.51) (end -2.46 1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd926c42-cadd-42d7-a752-0f7d307dd05f))
(fp_line (start -2.46 1.51) (end 1.75 1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 620b3a02-ff80-477a-bda5-10ab1166bb23))
(fp_line (start 1.75 -1.51) (end -2.46 -1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c249590a-9c16-43f5-8dea-a059ab4b7b72))
(fp_line (start -2.45 -1.65) (end 2.45 -1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fa3abd3-7108-44b5-93d1-d9b0e76a9908))
(fp_line (start -2.45 1.65) (end -2.45 -1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 655f880f-cc40-4fbf-9d20-84311fc68e30))
(fp_line (start 2.45 -1.65) (end 2.45 1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea6a35be-7918-4d91-8cf9-4e05e32a7476))
(fp_line (start 2.45 1.65) (end -2.45 1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 249e102f-324c-41f2-845a-f21880c5f5c1))
(fp_line (start -1.75 -0.7) (end -1.75 1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c7967fa-0c8a-4888-aaa2-e84e21e8720b))
(fp_line (start -1.75 1.4) (end 1.75 1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab27eb27-2f8a-44d8-b545-c096d901ed68))
(fp_line (start -1.05 -1.4) (end -1.75 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5752cc13-d1a2-4dd4-9816-a4e0a690ddb0))
(fp_line (start 1.75 -1.4) (end -1.05 -1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e25b2724-3389-4e32-80ba-b548b176044f))
(fp_line (start 1.75 1.4) (end 1.75 -1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02a585f7-024a-4389-9ca4-7accbf976fae))
(pad "1" smd roundrect (at -1.5375 0 90) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 8 "+VCC_OUT") (pintype "passive") (tstamp ffca04f4-d11b-4730-9dcf-f41c4ff29b55))
(pad "2" smd roundrect (at 1.5375 0 90) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "GND") (pintype "passive") (tstamp 332c6c3d-2918-479e-bb9d-11048e648bf3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A" (layer "F.Cu")
(tstamp 456e9d8f-8db2-4e63-bee2-625360218d4d)
(at 157.734 83.8454 90)
(descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/d83f3826-4e8f-463a-9067-29815926f34d")
(attr smd)
(fp_text reference "C1" (at 2.9718 -0.0762) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a56a72c2-60f5-4a7c-815f-1a19c9a1fe0b)
)
(fp_text value "4.7uF" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 615e8539-3aac-4479-a2a0-8c33d841e844)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a2c74a7e-aedd-484b-bc7d-723010b585b6)
)
(fp_line (start -2.31 -0.935) (end -2.31 0.935)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 653fbdfe-f8ad-4808-ad14-3681fd3d6954))
(fp_line (start -2.31 0.935) (end 1.6 0.935)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a3f90e2-5417-483b-91bd-409049f1a79e))
(fp_line (start 1.6 -0.935) (end -2.31 -0.935)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d89793b-d350-4386-8bbe-f3d0c4ef6a74))
(fp_line (start -2.3 -1.05) (end 2.3 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35441bee-e21d-43e7-a421-44caa010d131))
(fp_line (start -2.3 1.05) (end -2.3 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3022f53c-677e-4402-8306-64b77dfbe3d1))
(fp_line (start 2.3 -1.05) (end 2.3 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5597ec85-2152-4ea5-8ea7-e18312ddb6b5))
(fp_line (start 2.3 1.05) (end -2.3 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8123c0ad-71ea-42ab-82c5-f16b5458cb28))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbe7d09a-bebf-431c-aa53-d7aa614f8bfd))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea9a2c7b-ca92-4d43-a57e-5418018f3cbe))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f0f21dd-6adc-454e-844e-49e1d548819e))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8932174b-96df-44ad-a3c6-eb79a521a2ab))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17f7f508-5ba1-4f18-b90f-b9d3b59b45a7))
(pad "1" smd roundrect (at -1.35 0 90) (size 1.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852)
(net 1 "VBUS") (pintype "passive") (tstamp 7ad6188a-8482-4a69-8d66-d1d41bdf3580))
(pad "2" smd roundrect (at 1.35 0 90) (size 1.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852)
(net 2 "GND") (pintype "passive") (tstamp d2c456c0-3caf-44bb-a1e9-29f3c8f32ad2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_GCT_USB4125-xx-x-0190_6P_TopMnt_Horizontal" (layer "F.Cu")
(tstamp 4821b377-a568-44a0-816f-b01bd6d85d66)
(at 164.465 82.1436 180)
(descr "USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1.9mm stake: https://gct.co/files/drawings/usb4125.pdf")
(tags "USB C Type-C receptacle power-only charging-only 6P 6C right angled")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Power-Only 6P Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C power-only charging-only 6P 6C")
(path "/5313ed41-5ce1-4d27-a936-443c465b8e29")
(attr smd)
(fp_text reference "J1" (at 6.2992 2.6924 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4be9729-1948-4d4f-a2f2-42c0da9e65da)
)
(fp_text value "USB_C_Receptacle_PowerOnly_6P" (at 0 4.725 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16675c54-0617-4fe2-b92c-2f0181b9b5c7)
)
(fp_text user "PCB Edge" (at 0 2.825 180 unlocked) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp e83e8796-c8bc-477c-b6f3-1ee87fa17c96)
)
(fp_text user "${REFERENCE}" (at 0 -0.275 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0338bdd2-0ce7-49a0-a278-788769c195e3)
)
(fp_line (start -4.67 -0.25) (end -4.67 -1.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86bbcf6c-9ce3-47a5-9a67-cc8a1ef3c2a3))
(fp_line (start 4.67 -0.25) (end 4.67 -1.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04e5166b-43c6-4c1a-9b8e-8bd4a57a8645))
(fp_line (start 5 3.4) (end -5 3.4)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 3303e329-035e-46df-9567-46b6f063352c))
(fp_rect (start -5.37 -4.35) (end 5.37 3.9)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 686869ad-5796-4fef-8fc6-37e3f852b528))
(fp_rect (start -4.47 -3.4) (end 4.47 3.4)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 25c3d634-3b09-4e34-802a-7f3c25272957))
(pad "A5" smd roundrect (at -0.5 -3.08 180) (size 0.7 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 43f3547a-ccd7-44fa-97e5-88aad4d9069c))
(pad "A9" smd roundrect (at 1.52 -3.08) (size 0.76 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D2-A2)") (pinfunction "VBUS") (pintype "passive") (tstamp a5ddb39b-98f1-4688-974c-a45acb4b6482))
(pad "A12" smd roundrect (at 2.75 -3.08) (size 0.8 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6f28943c-6a7a-453b-8cc9-e9b6aeca329c))
(pad "B5" smd roundrect (at 0.5 -3.08) (size 0.7 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 5e70f0d0-7bae-4218-b7c3-659d0988f03d))
(pad "B9" smd roundrect (at -1.52 -3.08 180) (size 0.76 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D2-A2)") (pinfunction "VBUS") (pintype "passive") (tstamp 25eed29c-82ee-4917-b1dc-61fc4eb3536b))
(pad "B12" smd roundrect (at -2.75 -3.08 180) (size 0.8 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 0c5ece40-4599-4683-837c-e1934c05bdca))
(pad "S1" thru_hole oval (at -4.32 -3 180) (size 1.1 1.7) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask" "F.Paste")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp e1308516-cbf0-4535-95f7-05cb8e77075d))
(pad "S1" thru_hole oval (at -4.32 0.8 180) (size 1.1 1.7) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask" "F.Paste")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 418e2956-4a29-4b05-aa64-25c8f9dde466))
(pad "S1" thru_hole oval (at 4.32 -3 180) (size 1.1 1.7) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask" "F.Paste")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 53560b4c-8579-4307-a309-3dfb7a9ddd27))
(pad "S1" thru_hole oval (at 4.32 0.8 180) (size 1.1 1.7) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask" "F.Paste")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 34e5b467-e839-4ff4-a98d-118275d2f2da))
(model ":KICAD7_3DMODEL_DIR:Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ":KICAD7_3DMODEL_DIR:Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4b5c894b-e97e-4f5c-9324-78acf6e007c3)
(at 153.5176 85.5472)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/bd93548b-aa07-4525-991d-46fbf6daa659")
(attr smd)
(fp_text reference "R1" (at -0.7112 -1.4986) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e125a402-4320-409f-912c-21b87d02b547)
)
(fp_text value "2K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e24e7174-d65f-4d80-95ff-f6c9edd2267d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e32c832d-b747-4639-bf0a-242b52e8ce51)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e639c809-004c-4c3b-bea5-cb29d8023a15))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7915231-1ec3-4838-8651-24ff35d4b6ee))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6edd75a-faad-42c2-ab1e-99e387f4383c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a26b870b-1960-4032-93d7-0530d5ff28fe))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2adf653b-84b3-4e74-ab33-15d8861dccff))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80979854-95ed-4639-b58f-fbbc18fcb0c1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f25e414d-330a-4cce-8d00-ad6a0968b1bd))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe165f81-3c2a-4e0f-ac63-414db54c8294))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a9ccba9-b01a-413d-9699-ab473d93a31c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 788ced20-a9b5-43a4-9579-2ee9c1f5a6f8))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(U1-PROG)") (pintype "passive") (tstamp c3fd0fe6-b56c-49ae-b17f-eceeea9ac9a3))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp aa07ce25-5b7e-4386-b1a9-142df5cc9492))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 56251d7e-04a4-4786-8814-dcedac0207c8)
(at 184.83 90.62 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/1c2bc2d8-fdda-420a-aee1-5446802f6929")
(attr smd)
(fp_text reference "C10" (at -2.38 -0.03) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b57d3c63-3856-4923-81ad-a8c361baff10)
)
(fp_text value "22uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb1c745e-2830-4652-a4f8-c5ce6eb8dd7a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ed864872-0ea5-4410-b9ee-29ae9f095aba)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76925d5b-343d-40bd-87b9-d1ceb2042435))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9152b7ee-e870-4596-9116-6ee2debf64e0))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd204a4a-1558-4fdd-a0de-7dff261e6d97))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1456826d-e857-4044-9be4-62be86318188))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb2799df-aacb-407c-a03f-cd2ed95c35b0))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9d76461-8289-43ee-b01e-635de187d9af))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eeb8d1fe-fe30-454f-892d-80b21dba57c7))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 839a0524-f461-4fbe-8df2-2cbf6ea3bb5b))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8daf684a-da9d-4e33-b476-7255f8265edc))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ee2fc8f-21a9-474c-83ae-cbba00b4b4d5))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+VCC_OUT") (pintype "passive") (tstamp 65a75ad7-7ae7-408c-879c-40fa4259dc0e))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 44169b86-5faf-49dc-9656-dc8f6f9d76ca))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Bourns_3296W_Vertical" (layer "F.Cu")
(tstamp 5705ec48-52f3-4044-ae73-2cc9672b6734)
(at 177.8254 99.314 180)
(descr "Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf")
(tags "Potentiometer vertical Bourns 3296W")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer")
(property "ki_keywords" "resistor variable")
(path "/e46f5339-199d-43a6-a205-bfdd7e0b7af2")
(attr through_hole)
(fp_text reference "RV1" (at -6.7746 3.414 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9593753b-4174-409e-9d55-b79c3ada8386)
)
(fp_text value "100K" (at -2.54 3.67) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f96b24ad-157f-4617-a3bc-559d039ef901)
)
(fp_text user "${REFERENCE}" (at -3.175 0.005) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0050320f-ef4a-4d2f-936f-d4a49b612024)
)
(fp_line (start -7.425 -2.53) (end -7.425 2.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85c4dd0f-4219-401b-b9d4-3320fd873a6e))
(fp_line (start -7.425 -2.53) (end 2.345 -2.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb19a233-11e5-45ef-b8ce-c1660aa4106e))
(fp_line (start -7.425 2.54) (end 2.345 2.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 776a88a2-2c35-49be-88f7-54ae23942b80))
(fp_line (start 2.345 -2.53) (end 2.345 2.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfda4215-7403-40a4-a014-1339753df3e9))
(fp_line (start -7.6 -2.7) (end -7.6 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 370cb545-f420-474b-8935-aeda1ff3e4e6))
(fp_line (start -7.6 2.7) (end 2.5 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 252ceb76-64aa-47b4-84df-ae24191b994b))
(fp_line (start 2.5 -2.7) (end -7.6 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f492016e-a6a2-4186-a338-9b609b9723c9))
(fp_line (start 2.5 2.7) (end 2.5 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc64bb29-21ba-40b8-8e72-2edbce7f1de2))
(fp_line (start -7.305 -2.41) (end -7.305 2.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c938a878-9621-4ada-8d66-e152e6ec86b0))
(fp_line (start -7.305 2.42) (end 2.225 2.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6f67418-2742-4184-8799-9bdb5e8bdb52))
(fp_line (start 0.955 2.235) (end 0.956 0.066)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03c42a8d-e61a-4b46-8b43-e2f2fec97b1c))
(fp_line (start 0.955 2.235) (end 0.956 0.066)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17bd4c05-ff4d-4b29-946e-4b883b003165))
(fp_line (start 2.225 -2.41) (end -7.305 -2.41)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80f69b53-67ce-46ef-888f-269e4b905f67))
(fp_line (start 2.225 2.42) (end 2.225 -2.41)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49aac52a-888a-4f48-a6a1-8733e38166b7))
(fp_circle (center 0.955 1.15) (end 2.05 1.15)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 471e8d7d-1894-456d-aa89-6231a31dde8b))
(pad "1" thru_hole circle (at 0 0 180) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "Net-(R11-Pad1)") (pinfunction "1") (pintype "passive") (tstamp f88c538e-eaa0-4fbd-92e0-33f64071ba80))
(pad "2" thru_hole circle (at -2.54 0 180) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "FB") (pinfunction "2") (pintype "passive") (tstamp 718f4277-421a-49db-82d2-efbcec4f2689))
(pad "3" thru_hole circle (at -5.08 0 180) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "Net-(R10-Pad2)") (pinfunction "3") (pintype "passive") (tstamp 48cd0354-bb6f-475a-80cb-0c184a660a4b))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3296W_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (layer "F.Cu")
(tstamp 62ec14fb-c962-4044-a8fa-47b3c26bea2d)
(at 183.388 104.6226)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/ad3032e7-d838-4fe3-9c72-d7cc6aebf672")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 146c4fb3-fc6c-4ac6-a6ba-f3e78e79df88)
)
(fp_text value "MountingHole_Pad" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f29b12b-4aa9-48fc-aa29-856bde970f60)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 421ac7bc-5ff9-4369-971f-43b64148f713)
)
(fp_circle (center 0 0) (end 1.9 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp b68c40b9-4bfc-4c96-839e-17a64f65f424))
(fp_circle (center 0 0) (end 2.15 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 2e9216af-02bf-4a12-9b18-d10494bb1f85))
(pad "1" thru_hole circle (at 0 0) (size 3.8 3.8) (drill 2.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp ecc7032b-b041-4efc-aa05-80de4312d994))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 65a315c8-4718-4d2e-b378-d5ce5b481f9e)
(at 170.01 90.34 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/5be91e86-067b-44bf-9b51-1ab42f206b9c")
(attr smd)
(fp_text reference "C5" (at -2.4856 0.2032 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23a26510-50b5-492f-ad72-d876d49120d0)
)
(fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 317c0808-d5e6-4367-b450-a3a82c960a46)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0c22310e-bf8c-4398-8b15-7be4b475beb5)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbec21fb-73db-43fd-8de0-fdb4b7b7a13e))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 714004a6-c8b7-42e2-a5fb-e3eec4c24e8b))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e5057b86-cb52-413f-9909-5ec0ebb67a21))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52d33e38-61b4-4e36-88dc-c47f4287c680))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c662f72-2818-47d0-b10c-c880a548c58f))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec8e37ab-faca-47a6-a98e-ed408286dbcd))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de7a6865-1980-4117-a67a-9e0e16c0751a))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0374d8aa-136e-4a2c-8b57-204179d913cc))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0798fc67-e659-471d-80e6-171c963141d2))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd83a972-cf94-404b-bae7-6e50faa0899d))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+VCC_IN") (pintype "passive") (tstamp 5d364383-e580-4206-ac1d-086a74108a57))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e410b161-5c9b-4dd1-aa59-b86950f1d9bd))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Cutom_PinHeaders:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 6851a7c3-e43d-4008-9d50-fd0cf303f643)
(at 173.8884 105.9 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/60aa6881-13b2-4311-a42b-62efaefb427b")
(attr through_hole)
(fp_text reference "J4" (at 0.8 7.1884 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab3047df-489f-4dca-9574-b1ebaae2be69)
)
(fp_text value "Conn_01x03_Pin" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e247090-ea9c-41ab-ae3a-73e9fe645ec2)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d18ef92b-64bd-4635-b0c5-4e6bc661d7ea)
)
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fbba0a7-e33c-4838-9adc-8e1a2eb84089))
(fp_line (start -1.8 6.85) (end 1.65 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dab755ee-ee61-4dfd-aa79-a0a102b8b0b9))
(fp_line (start 1.65 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bbef7a3-2cbe-4725-8c08-eaf7f4cab9e0))
(fp_line (start 1.65 6.85) (end 1.65 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e71756f-fecc-4df7-b924-0362fc4f3088))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1fa08492-143a-4c2f-9799-60acd7e29fc4))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19544d45-0e2e-4107-85bf-686cba290c35))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79ff8c07-e772-4c18-8404-ece005991ace))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59725420-f50d-46b9-94e4-2011d0620a61))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14ef3028-288b-4f76-91fd-84468efe4a82))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f0357fa1-93ae-459d-bbbf-c42423e059a0))
(pad "1" thru_hole rect (at 1.651 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 198fa6e3-d473-4275-b13f-1f93ceb56970))
(pad "2" thru_hole rect (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "+VCC_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp f73b8b72-c5fd-4f2d-a077-b958dc9b8ed6))
(pad "2" thru_hole rect (at 1.651 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "+VCC_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp 509637f0-9bfe-4686-8faa-e77f0b11cdf1))
(pad "3" thru_hole rect (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+BATT") (pinfunction "Pin_3") (pintype "passive") (tstamp f288a186-0350-46ed-8e66-3849d39ad9cf))
(pad "3" thru_hole rect (at 1.651 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+BATT") (pinfunction "Pin_3") (pintype "passive") (tstamp 03610b03-ea90-47d2-8154-031f1096417c))
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp 6e65eb0a-d36a-42a7-8283-a5efbbd99b4d)
(at 155.33 89.24 90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "BMS_Buck-Boost.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single cell, Li-Ion/Li-Po charge management controller, 4.20V, Tri-State Status Output, in SOT23-5 package")
(property "ki_keywords" "battery charger lithium")
(path "/7b0f43b4-3f93-4b04-9e7c-392c891f90b3")
(attr smd)
(fp_text reference "U1" (at 2.7432 0.7112 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65b5c00a-e559-49c1-ada1-edc82d203c2c)
)
(fp_text value "MCP73831-2-OT" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70cfeb5f-1223-451e-b223-2332aea05834)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 627f31fb-d5f7-469e-891d-e01c619e38be)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f80ec96b-9837-4df5-9c57-c0179bddb20f))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27d25d84-5b06-4aeb-975a-b166d361b8eb))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f40a3fe-8597-4bca-a016-9db4a039aa5f))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17238de1-1859-4e88-83c6-5c8a93f33086))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5492fa74-2ff2-4e44-b275-8771d5518ad4))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b91abca6-9523-48e3-b08a-5eb0f18b15ce))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8089d6e-432d-49af-8f1f-4c8583c607d4))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1230a22d-2948-4e1d-b6b2-73bb3a312532))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fbc0893-7d01-4bb2-9777-055f5724622a))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0834181b-e1dd-4f12-81c2-7d66ee4b72b7))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)