-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLoad Ballancing Circuit.kicad_pcb
7632 lines (7595 loc) · 322 KB
/
Load Ballancing Circuit.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")
(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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.05)
(aux_axis_origin 104.0511 163.2331)
(grid_origin 104.0511 163.2331)
(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 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/V_BAT_OUT")
(net 2 "Net-(D1-2)")
(net 3 "Net-(D2-2)")
(net 4 "/V_BAT_IN_1")
(net 5 "/V_BAT_IN_2")
(net 6 "GND")
(net 7 "/GATE_1")
(net 8 "/GATE_2")
(net 9 "unconnected-(U1-NC-Pad3)")
(net 10 "unconnected-(U1-NC-Pad7)")
(net 11 "unconnected-(U2-NC-Pad3)")
(net 12 "unconnected-(U2-NC-Pad7)")
(net 13 "Net-(U4-AIN2)")
(net 14 "Net-(U4-AIN0)")
(net 15 "3V3")
(net 16 "/I2C_SDA")
(net 17 "/I2C_SCL")
(net 18 "Net-(U4-AIN4)")
(net 19 "Net-(U4-AIN6)")
(net 20 "/SNS1+")
(net 21 "/SNS1-")
(net 22 "unconnected-(U4-REF-Pad1)")
(net 23 "unconnected-(U4-NC-Pad2)")
(net 24 "unconnected-(U4-NC-Pad3)")
(net 25 "unconnected-(U4-NC-Pad4)")
(net 26 "/SNS2+")
(net 27 "/SNS2-")
(net 28 "Net-(R11-Pad2)")
(net 29 "Net-(R14-Pad2)")
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 143e9466-088e-42b8-a0da-2534b8e8e666)
(at 177.9511 76.1331)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/040b009a-c864-492d-9ce6-9fa8de5fb8aa")
(attr smd)
(fp_text reference "R14" (at 2.9 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp dc00dd54-260f-4787-a7ff-dc97c72b4c44)
)
(fp_text value "1k" (at 0 1.65 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp be9622e7-a110-49bb-8dd7-632b5cdcab8a)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 828a93ac-55dd-4c10-b2ea-a1ba4c718340)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 29025067-abf4-461e-a3e3-e7c6bc121d62))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 09267d82-4b24-47bd-a3f0-3bb3cdf8a43b))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 164a5150-350a-4916-b732-4b19fbe9c63c))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 1f2f8803-7106-411f-8b7a-23d07bc1d5f4))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp d0ad4f3d-57d0-47aa-a2ae-e624349542ab))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 55580d02-beaa-43cd-840a-b5cef1da7bee))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 5924f6f6-028e-4daa-88e5-e0c45895cced))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 189dc41f-57dc-4107-bb75-99589e606d1a))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 4686e5f6-fa9f-4d5a-a382-58ae3abbcbe9))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 1d7ee133-d09d-4372-a95e-9bff99143e4c))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 19 "Net-(U4-AIN6)") (pintype "passive") (tstamp bbfab83a-027f-4e10-a8f1-8ee685acf64f))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 29 "Net-(R14-Pad2)") (pintype "passive") (tstamp 3d9faf1e-6032-4972-88ad-dde6e9a24cae))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 18a3057a-1ddf-4f44-b1f4-834048549743)
(at 162.4511 81.8331 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/9399fce3-d05b-425f-91c0-be13e5b1c88e")
(attr smd)
(fp_text reference "R10" (at 2.4 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp de3ac0a7-6934-497d-b85f-04ec15fc04e4)
)
(fp_text value "27k" (at 0 1.65 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 4df15e8c-c198-48a1-8760-27ec47846181)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp c09a3386-a1be-4753-8a2d-743f9ab513fc)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7de85890-1780-400f-bca7-2684dacdafda))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 15d4b8bc-abc1-4c3f-9412-903a1417834a))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 296fa2bc-2349-44cb-a5e2-d1eab806f725))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp bac8b68f-e496-4bab-be3d-4c43061bb401))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp e24f8b76-bad6-48cc-8ffa-070850f2821c))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 25f1808a-df98-4a79-968d-b24d211467e0))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 3f9e20b2-e1b9-401b-b8e1-e48030ebddec))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 5b0c6f0c-25d8-479a-bcb9-3919b9c27c0a))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 7890426e-882f-4952-9c80-e9d606c27975))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 0ac73b34-8256-4883-ad9d-2a690c7e7cf2))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 6 "GND") (pintype "passive") (tstamp 734ea9e4-2b10-4c12-9656-006707a47829))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 14 "Net-(U4-AIN0)") (pintype "passive") (tstamp 9b37a4da-30b1-43dc-a30f-d312f66ba9df))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 25697555-9479-45fd-a140-af913ae38d49)
(at 164.4511 81.8331 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/a511b55a-bcf2-41aa-a150-a0fde93287dd")
(attr smd)
(fp_text reference "C6" (at 2.4 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 45e0c21a-6dc5-4227-a01c-4db27e705c37)
)
(fp_text value "350p" (at 0 1.68 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 8627b636-50bb-449c-88f0-70f988cd7a79)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp c2afb82d-57ee-4bbe-ac18-a369f984cdca)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b3651f1c-1e56-42cf-87f2-5239e57306c3))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0ce85630-33b8-468c-9920-9b8b793816da))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 8ab3abf6-d9af-49f8-8cb0-b5d014088a60))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 076814f0-98dd-4d69-91e7-be90afded0ac))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 7b24a428-a23f-49b6-8822-c8c1e488ad89))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 8b24bccf-5899-4d4b-9cd8-fb9d83794b6c))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 0918a5f9-41b6-4770-8afb-4b74367b82fd))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 69ad29bf-53de-4ed3-b1af-2432b25efe91))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp faffda5e-423e-4a76-b240-f9e3d9dfbf1a))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 0688e099-2b6d-418d-a87d-4647f38d15ae))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 6 "GND") (pintype "passive") (tstamp f49bcadf-47c8-4c1c-9bc0-801d0d6aed1a))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 14 "Net-(U4-AIN0)") (pintype "passive") (tstamp 09ae0f08-de3e-4cea-ad47-febba08ccd6d))
(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 "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 2bbdac83-bf1a-4c0e-ba36-367bab49f6c6)
(at 167.6511 84.7331)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/daf92733-eaf1-41bc-b181-e936c2d149d3")
(attr smd)
(fp_text reference "R8" (at 0 -1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 38a3493b-9ed5-409b-8092-3fbe974e2698)
)
(fp_text value "DNP" (at 0 1.65 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp a2cc38bd-9da0-438d-a8bb-810670520606)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp e6e375b8-b6a1-49a6-8641-c6f5f2d3d0f0)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4fe4813d-fc7e-4bc1-975c-0de0c106967c))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 19bfc12b-0df3-4297-b084-896131054364))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 7d8c56dd-6781-45b5-a2f1-dc5c8828097e))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp b71550a3-f129-459b-9865-958c29662517))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp a9c7cda4-9a7a-4407-94cf-87235a8cb980))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 6f6cb788-9eab-48b9-9b77-67ae9d6d030d))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp ff62f03c-eb64-4b98-90b7-ba99c3ab495d))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp cd9c0f65-b77b-42c1-bd39-9f8d14fe56ab))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 6da9f105-6382-429f-ae0d-527bffe960fc))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 717f7d4b-ab50-4a72-9783-36e6326c310e))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 16 "/I2C_SDA") (pintype "passive") (tstamp a810a677-7559-4670-a0ad-38b6f0052f26))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 15 "3V3") (pintype "passive") (tstamp d3f0dca6-e441-475a-8d67-8092a5edb26f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 3ef7e88a-e4b4-4538-836d-11880e7442a7)
(at 164.4511 76.7331 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/555a14c1-8c11-42fb-aa8d-126eea0f17e4")
(attr smd)
(fp_text reference "C5" (at 2.4 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 8ceca1fb-7a18-4810-94f0-cc3bb5c6df0e)
)
(fp_text value "350p" (at 0 1.68 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 671d83b8-8f0a-4c18-9cf0-5738f0fe578a)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 2ade73b5-0123-4daa-a1b5-eeeaa902bf83)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ad1257b7-6f7f-4a39-8318-55721298799d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6a6ec9cb-2c5c-4a16-b254-279aaba11250))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 98d8d789-1634-4562-8278-593dcb067d66))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 9b38adac-666a-448c-a5f1-512d7b6d7181))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 68d94e9b-de6a-4a92-92fe-57e942220ce2))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp fb016e99-bc95-49d9-88c7-7f19ea64753a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 0aadaf70-ba87-4160-8706-b291b2e90ea1))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 62859b43-6c03-4c38-b3fe-3bd65e76dbc6))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp f60556d2-71b7-4daf-b05a-466eda161613))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp da5e9376-6409-4a4f-aaf8-6ed1908bc5ec))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 6 "GND") (pintype "passive") (tstamp 79a53e9a-50e7-4c8c-aa9e-97bce32e0880))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 13 "Net-(U4-AIN2)") (pintype "passive") (tstamp b3443327-a8fe-4339-a42f-abbebc64bde0))
(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 "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp 4848ccda-5a9b-4222-b261-e2b772a86523)
(at 159.4511 81.8331 180)
(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" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "High-Side Measurement Current Shunt Monitor, 40V, SOT-23-5")
(property "ki_keywords" "current sense shunt monitor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/4463fddc-b9b5-461e-9a8f-a0267e363424")
(attr smd)
(fp_text reference "U5" (at 0 -2.3 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp ad86fa22-0bc5-4c74-95ad-298944854e1f)
)
(fp_text value "INA139" (at 0 2.4 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 02686e29-cfd3-42ce-843a-31b1f481419a)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 962eb702-2a89-4d4b-b457-3614c9ed6072)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b2f6bbe4-f8a6-4912-bbbf-aabcc6b9bb35))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 359d2331-f8e3-4bbd-bec8-d35de4c5ebf0))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e6ae0a16-bc64-4fdb-85af-3e341ae03901))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c1757592-5b34-4e09-9638-14572eee4224))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 34a210d6-9bf5-48bb-bfbf-36865cc0aa52))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp b2c82ffb-3302-460b-b9d6-bbad068ac0c9))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp f83d3b88-371a-405d-91ea-db043560c13d))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp f297d047-4612-4317-879a-9d877b9462dd))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp ed9e6399-cc4c-4164-a469-29c6d19f9528))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 6e5ad20b-741c-4f60-9c30-5b928100e272))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 65a5aa94-243b-483a-aaee-eb96dd2b90b6))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp c8a63966-c0a6-4c07-ade3-c4f98d5f2351))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 631299de-d538-4e91-a613-d1b9a28f3464))
(pad "1" smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(U4-AIN0)") (pintype "output") (tstamp ffd57aea-dd01-499b-83fe-d66ea5c8e66b))
(pad "2" smd roundrect (at -1.1375 0 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 74df2405-afbd-4355-9aa2-3f143cee279d))
(pad "3" smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/SNS2+") (pinfunction "+") (pintype "input") (tstamp 9d2b36d6-23c1-458e-874e-6985aae64c1e))
(pad "4" smd roundrect (at 1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/SNS2-") (pinfunction "-") (pintype "input") (tstamp 0fa0b6dc-e5a4-45c5-9d98-37fd0e442232))
(pad "5" smd roundrect (at 1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "3V3") (pinfunction "V+") (pintype "power_in") (tstamp 0dc9437d-a9a3-4c86-8195-c29813d8991d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 49d7c372-48a6-4164-ab8b-940f4b5d26f3)
(at 171.3511 84.7331 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/ef68d05f-221f-4c16-bb87-ed3e3eba7e08")
(attr smd)
(fp_text reference "R4" (at 0 1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 2e23311e-25d3-42e3-841e-e44779b69abc)
)
(fp_text value "1.38M" (at 0 1.65 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp fce9f506-497e-4a28-8859-a96fc6f63c39)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 32912a72-ed2d-4e20-8e6e-075793eeb467)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b73f23f7-fe46-4c87-9c2f-19c0e450f376))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 311d768c-41bc-4ebf-a8ec-02e9aa222ad6))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 97df471a-e3f7-4d31-a941-ad037c9ea9a9))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 20df3661-7e84-488d-9fdc-a6b952735f86))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 38097aff-93a7-41aa-8f20-62e35c945d76))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 5de5f333-cfa0-44b1-9d89-2a80ffc4ed2b))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp ccf7ac2f-e847-4248-bcde-2b7d91af4464))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp ad0f2efa-7715-4072-ad7f-563694497380))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp f964149e-8e6f-4ec2-aa72-a874a1e7be03))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp bc6cbe1e-d5d9-4e68-ad37-3188e18b82e1))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 28 "Net-(R11-Pad2)") (pintype "passive") (tstamp 4ae396ff-9ff0-4762-9d23-bdf9d20b2353))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 6 "GND") (pintype "passive") (tstamp 7f625c07-4c67-4bfe-aa5a-d58fc34a0f6b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 50f6bef9-4caf-45e2-b253-d77c7dc66122)
(at 175.0511 86.6331)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/aef620f7-f577-45c7-b7e1-ebba7df0bd27")
(attr smd)
(fp_text reference "R5" (at 0 1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 33a4763b-4b01-4501-be7f-96d2813be056)
)
(fp_text value "10M" (at 0 1.65 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 0a6663c5-4137-4b05-9806-88c9e598b934)
)
(fp_text user "${REFERENCE}" (at 0 -0.625 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 0ed05dc6-0454-43d3-9977-140b84ade92d)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5aeb6196-6b16-4463-8907-c9e04744c343))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 48539035-7528-44a0-a481-5f9145ee9937))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 928646d3-8081-4b89-b8ff-f0a2f9528308))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 6772b3dd-272d-4e6b-b2b3-a4aeb0b0c82d))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 69a67ab9-c5b3-4aa7-bcae-274a3137621a))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 92aaaef5-5823-48d8-87cf-b40873acf533))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp e07bb154-8d98-407b-a841-e5657be8d7f8))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 4d452011-c456-44a7-9cfe-987c109f5e92))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp b25483a1-d7ef-4295-850f-066b5672f66d))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp ca11eb95-f43e-43e8-ac3c-00b63f833ab8))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 29 "Net-(R14-Pad2)") (pintype "passive") (tstamp 9e4799fc-2eef-4963-88d8-435e2954901d))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 5 "/V_BAT_IN_2") (pintype "passive") (tstamp 951be4bd-54b7-4034-ab5f-c813ff3f4280))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 5502748e-4aba-4746-9a16-ab537e2d7984)
(at 167.6511 86.6331)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/40facf2d-89b5-4719-8206-b362493f58db")
(attr smd)
(fp_text reference "R7" (at 0 1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp c016ce29-1a56-4768-b73c-ea9efdcf2512)
)
(fp_text value "DNP" (at 0 1.65 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp a1f4871f-f5f2-4dba-b8bb-410028e3f0a6)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 731ec799-c636-4d6e-aeb5-84dac5ca437f)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4f43ad83-82f5-450e-bfe3-5e48c6a3eec2))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1dd40fb7-f884-4dd2-8b81-a1caf3e8fb66))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 6e8725e5-6927-4506-a9ab-50496da5d596))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp ce862688-3ba3-4431-9333-b3427c78b68f))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 6574ebce-33b6-4c8d-a28d-6ff6163fd6ac))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 702e9e64-f9ce-47ea-b68f-38cc29d847a4))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp a2ee00b6-1734-43aa-8cbc-a315a4d0c62d))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 3c0c81ab-453f-4c34-8ec6-9ded009267f1))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp c5bd43d3-53b3-4c30-9368-94fe298221b6))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 0c5f5937-1167-41d3-a9ba-a424e2a5152f))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 17 "/I2C_SCL") (pintype "passive") (tstamp 159abb2d-71be-4761-bd6b-b1ee9ffbbc5a))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 15 "3V3") (pintype "passive") (tstamp ab4c2738-58e2-4e16-aa99-3088e4c9e8bd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "AltiumImport:SMD-0805-RES" (layer "F.Cu")
(tstamp 55d8a629-3896-49ac-a567-48bc3de8ae9c)
(at 178.2511 95.3331 180)
(property "Part Number" "ERJ-P06F1001V")
(property "Sheetfile" "Load Ballancing Circuit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RES SMD 1K OHM 1% 1/2W")
(path "/e4b0d986-a1df-437e-af68-03e5ed02f751")
(fp_text reference "R1" (at 0.8 -2.8 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp f8551dfe-3714-40b7-b724-de440e0ddc61)
)
(fp_text value "1k" (at -0.7493 3.8989 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp ad5b5dc5-c8c9-4c52-96a2-96c273caec64)
)
(fp_line (start -0.889 0.254) (end -0.889 -0.254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8c57afcc-6fa8-46f3-b7ce-8701a613d4a8))
(fp_line (start 0.889 0.254) (end 0.889 -0.254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8cdca0fe-c327-4644-9328-6f5c63139c3b))
(pad "1" smd rect (at 0 -1.016 90) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(D1-2)") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp e5dd43d4-8974-4d8e-87e1-4913e24dc8bd))
(pad "2" smd rect (at 0 1.016 90) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp d77169f2-9efb-4a75-bf6f-00b89a55c857))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/SW3dPS-0805 SMD Resistor.STEP"
(offset (xyz 0.02548 0.00008 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 -0 -90))
)
)
(footprint "Package_SO:QSOP-16_3.9x4.9mm_P0.635mm" (layer "F.Cu")
(tstamp 57a34926-9fca-44a5-81a0-5b215e8fab97)
(at 171.8511 79.2331)
(descr "16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150\" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SSOP 0.635")
(property "Sheetfile" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "8-channel single-ended or 4-channel, differential, 12-bit ADC, I2C, 2.048V internal reference, 16-QSOP package")
(property "ki_keywords" "adc i2c 8ch")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/3cc37fa2-5a38-4d6b-8fa7-a4224c0033c2")
(attr smd)
(fp_text reference "U4" (at 0 -3.4 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp cbb54156-6e2d-419c-b35c-5a697fc8ac2a)
)
(fp_text value "MAX11615" (at 0 3.5 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 47d8ed36-7d1d-400c-aba7-70862c469e31)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 2dc5a64d-a5d9-40b4-94ae-ebc5a1a7cbdb)
)
(fp_line (start -3.525 -2.725) (end 1.8586 -2.725)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e4b52ad8-cac8-4ff2-b2e3-c611142a0792))
(fp_line (start -1.8543 2.675) (end 1.8543 2.675)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1ce90954-8c63-40de-9fd1-95bacbb2c488))
(fp_line (start -3.7 -2.85) (end -3.7 2.8)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 4e76dfd2-e416-4da5-83f3-397f7856c86c))
(fp_line (start -3.7 -2.85) (end 3.7 -2.85)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 3bcec3f2-03fb-4ff0-866b-eec2fc47e7a4))
(fp_line (start -3.7 2.8) (end 3.7 2.8)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 5fb65200-f3ad-4c20-b583-e84c79f805e5))
(fp_line (start 3.7 -2.85) (end 3.7 2.8)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 9c360ab7-04e7-465e-8908-be3f5428333f))
(fp_line (start -1.95 -1.45) (end -0.95 -2.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 8b1ea709-1057-499b-a815-4b2c2ffa0360))
(fp_line (start -1.95 2.45) (end -1.95 -1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 0a966f77-b859-448d-be56-a00d2e7a548a))
(fp_line (start -0.95 -2.45) (end 1.95 -2.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 421ca4f6-1332-4d09-b59d-774ad0425a05))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 109585d8-45d7-4877-beae-5a2de99d789e))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 60c92a12-2497-4423-aded-65680a536959))
(pad "1" smd rect (at -2.6543 -2.2225) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U4-REF-Pad1)") (pinfunction "REF") (pintype "input+no_connect") (tstamp a41a3128-9cde-4a18-8880-342dff496a4c))
(pad "2" smd rect (at -2.6543 -1.5875) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(U4-NC-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp d8528466-3750-4e50-82b3-f8c638f63cc3))
(pad "3" smd rect (at -2.6543 -0.9525) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U4-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp 0957ba1e-f6fe-4048-a633-2d976fa58dd3))
(pad "4" smd rect (at -2.6543 -0.3175) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(U4-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 104c50b6-cae7-46e0-addc-0b7a00604fe9))
(pad "5" smd rect (at -2.6543 0.3175) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(U4-AIN0)") (pinfunction "AIN0") (pintype "input") (tstamp 1105dfa8-57a4-45a1-997f-77956615179b))
(pad "6" smd rect (at -2.6543 0.9525) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "AIN1") (pintype "input") (tstamp 1e9ef382-5be6-471a-ae10-07e38681eab6))
(pad "7" smd rect (at -2.6543 1.5875) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(U4-AIN2)") (pinfunction "AIN2") (pintype "input") (tstamp de02bd6d-aa72-4a93-a10c-24a68c1a809b))
(pad "8" smd rect (at -2.6543 2.2225) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "AIN3") (pintype "input") (tstamp 5a6a2e12-4c7a-4b40-a9d9-125171b16377))
(pad "9" smd rect (at 2.6543 2.2225) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(U4-AIN4)") (pinfunction "AIN4") (pintype "input") (tstamp 966d9151-e017-4c81-bd11-5fa37ae091fb))
(pad "10" smd rect (at 2.6543 1.5875) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "AIN5") (pintype "input") (tstamp 75c9f42a-b8ce-47b7-b655-b2bce1f8d460))
(pad "11" smd rect (at 2.6543 0.9525) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(U4-AIN6)") (pinfunction "AIN6") (pintype "input") (tstamp a5448743-6f59-43f1-ab4b-afb35b01460b))
(pad "12" smd rect (at 2.6543 0.3175) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "AIN7") (pintype "input") (tstamp 32552f82-7eab-499d-a4d1-4f392609cf58))
(pad "13" smd rect (at 2.6543 -0.3175) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/I2C_SCL") (pinfunction "SCL") (pintype "input") (tstamp bb96ef0e-ea5a-4079-a58e-7730f8425bc3))
(pad "14" smd rect (at 2.6543 -0.9525) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/I2C_SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp f7b8d9c5-7f1c-4dc2-9138-a43842013db8))
(pad "15" smd rect (at 2.6543 -1.5875) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 25484afc-13d5-4d6f-8c01-0adec34c9fb5))
(pad "16" smd rect (at 2.6543 -2.2225) (size 1.6 0.41) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "3V3") (pinfunction "Vdd") (pintype "power_in") (tstamp 25ef6d95-f5df-4980-a9cb-f50f7c7214a9))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/QSOP-16_3.9x4.9mm_P0.635mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "AltiumImport:SMD-0805-RES" (layer "F.Cu")
(tstamp 5a5a8519-9254-455b-a8cb-4acbd6195e2f)
(at 178.3511 106.3331 180)
(property "Part Number" "ERJ-P06F1001V")
(property "Sheetfile" "Load Ballancing Circuit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RES SMD 1K OHM 1% 1/2W")
(path "/62e078cb-cec4-4469-88d0-d94685eeb487")
(fp_text reference "R2" (at 0.8 -2.8 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp da5ba87f-6ef2-422f-8c5c-32ef07fb613f)
)
(fp_text value "1k" (at -0.7493 3.8989 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp 027b1c0d-d040-4787-a640-29a8f211819b)
)
(fp_line (start -0.889 0.254) (end -0.889 -0.254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 38013b21-e909-455c-9926-71ca9072f39d))
(fp_line (start 0.889 0.254) (end 0.889 -0.254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b865f07a-a2b6-427a-8eb4-9849628602b1))
(pad "1" smd rect (at 0 -1.016 90) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(D2-2)") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 99946021-436d-4dc7-897c-1fd464bbfbb3))
(pad "2" smd rect (at 0 1.016 90) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp a10522e6-096f-49e1-8594-4ca64d38e103))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/SW3dPS-0805 SMD Resistor.STEP"
(offset (xyz 0.02548 0.00008 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 -0 -90))
)
)
(footprint "AltiumImport:SMD-0805C" (layer "F.Cu")
(tstamp 66920c0b-cc1b-40b7-b760-2e3665ff6477)
(at 176.0511 95.3331)
(property "Part Number" "GRM216R71H152KA01D")
(property "Sheetfile" "Load Ballancing Circuit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "CAP CER 1500PF 50V X7R 0805")
(path "/4f9d18d8-6d64-45a7-aafd-fd70fc2fc5d9")
(fp_text reference "C1" (at -0.9 2.8 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp 1844d130-0855-47cd-bbed-ee14f49d97eb)
)
(fp_text value "1500pF" (at 4.7879 0.4699 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp b40721ab-a731-4d3c-86b3-064d43d6a37c)
)
(fp_line (start 0.62496 -0.00024) (end -0.62496 -0.00024)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1e0b462a-7e5a-4e9c-818b-7796317a4ee7))
(pad "1" smd rect (at 0 -1.016 270) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "/V_BAT_OUT") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp d0ea9f2b-b670-498d-b4d6-33b2fc04eb1c))
(pad "2" smd rect (at 0 1.016 270) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(D1-2)") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp d849e94f-0617-4c48-8500-7c81ce4f8792))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/capacitor 0805.step"
(offset (xyz 0.00004 0.00012 0))
(scale (xyz 1 1 1))
(rotate (xyz -0 -0 -90))
)
)
(footprint "AltiumImport:Zenor Diode - duplicate" (layer "F.Cu")
(tstamp 7276f625-be71-42e5-b1d0-90772e12c37b)
(at 171.2511 91.2331)
(property "Part Number" "SMBJ24CA")
(property "Sheetfile" "Load Ballancing Circuit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "TVS DIODE 24VWM 38.9VC DO214AA")
(path "/78361915-6e5a-4af0-8a95-37c574a65cce")
(fp_text reference "D1" (at 4.4 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp 62665db4-366d-45f3-b69c-d6ba53e9d35e)
)
(fp_text value "26.7 V" (at -6.7945 -1.8415 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp 9625adf9-5042-43b2-b6fe-10ffe7e841c1)
)
(fp_line (start -4.4 -2) (end -4.4 0)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9994cd9a-037b-46bd-86b1-6fd8e7fa5ce0))
(fp_line (start -4.4 -2) (end 4.4 -2)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4782b727-b4ee-41d0-b30c-c1961fd11012))
(fp_line (start -4.4 0) (end -4.4 2)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1c0804a9-3ee1-4c53-ac09-34fe002874b9))
(fp_line (start -4.4 2) (end 4.4 2)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7fe0f1db-2147-47e8-80a0-0d1d1d2665e3))
(fp_line (start 4.4 -2) (end 4.4 2)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8db147a4-a2fb-4cb6-9957-a2a370d2fe9a))
(pad "A" smd rect (at -2.45 0) (size 2.16 2.26) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/V_BAT_IN_1") (pintype "passive") (thermal_bridge_angle 45) (tstamp cbc731e3-1919-407d-acaf-9fa6cef785c4))
(pad "K" smd rect (at 2.45 0) (size 2.16 2.26) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(D1-2)") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp a381c5f4-b7aa-447e-bb21-a590036343f7))
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp 85f8e6c0-1f5b-4e63-98ff-68be8a08183d)
(at 159.4511 76.7331 180)
(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" "VIM.kicad_sch")
(property "Sheetname" "Voltage and Current Monitoring")
(property "ki_description" "High-Side Measurement Current Shunt Monitor, 40V, SOT-23-5")
(property "ki_keywords" "current sense shunt monitor")
(path "/06e37958-9d39-4a77-96cb-ce86c29d49d3/67e9f5cb-4ba2-4212-8c5b-9407f5cbc10d")
(attr smd)
(fp_text reference "U3" (at -0.1 -2.3 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 5041f216-231e-485d-aaf0-1b440d7e04b9)
)
(fp_text value "INA139" (at 0 2.4 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp 667d1007-1b49-4463-a867-6c699373a245)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.254) bold))
(tstamp ae58d882-543b-4bd5-859b-419c2f2db654)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9f5d543d-372d-40c7-bec8-4604a372eff8))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4616341e-3491-4c90-ac9d-110afeb2afba))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a222b65c-8f80-4fb6-ae59-c282923d8293))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a9776579-68f8-428b-95c4-0e6fc278aa1c))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 7bd0575e-64ed-4eb4-923d-684a7938b41b))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 43a02e77-7cb1-4f34-b541-de7e3582c1cc))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 0a7de85c-f793-497a-84c5-d85d5557b599))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.0508) (type solid)) (layer "F.CrtYd") (tstamp 83e16cdd-eb54-4707-9de3-7888766a652c))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 1358a73b-828b-4b7b-988a-b8dbaf767464))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 3b4ae2e6-91f9-4adb-96b0-79c5e06550a2))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 10bb2262-2431-4022-9dae-76f423e21ba0))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 4b632240-5651-4bb5-b811-7230897fdc6d))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.254) (type solid)) (layer "F.Fab") (tstamp 39512a28-7545-4b88-bedf-09fc5c5aca6f))
(pad "1" smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U4-AIN2)") (pintype "output") (tstamp 1eafdea8-6928-4e40-93c6-91a759466ce3))
(pad "2" smd roundrect (at -1.1375 0 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1aabf6aa-a198-4260-a604-be500f7b8569))
(pad "3" smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/SNS1+") (pinfunction "+") (pintype "input") (tstamp e69fa990-28d8-4d3f-93d5-1349b51a6981))
(pad "4" smd roundrect (at 1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/SNS1-") (pinfunction "-") (pintype "input") (tstamp 2e67990b-904a-425f-b89b-c162fa990312))
(pad "5" smd roundrect (at 1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "3V3") (pinfunction "V+") (pintype "power_in") (tstamp 721507ca-566e-480e-841c-ce0e62fd6061))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "AltiumImport:FP-MS8-8-05-08-1660-IPC_A" (layer "F.Cu")
(tstamp 8b87ee1e-2d6a-4da2-b963-20539597fbda)
(at 171.2511 95.2331)
(property "Part Number" "LTC4359HMS8#PBF")
(property "Sheetfile" "Load Ballancing Circuit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "IC OR CTRLR N+1 8MSOP")
(path "/07fd4304-1d85-4530-aa7d-fc03110e6a3e")
(fp_text reference "U1" (at -0.8 2.7 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp ec619711-f5a5-4fce-b4e5-61019bae6524)
)
(fp_text value "LTC4359HMS8#PBF" (at -10.7315 18.1229 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp 231e6f7e-eea2-49fa-94fc-f0be381df7f2)
)
(fp_text user "${REFERENCE}" (at -0.00001 -0.01108 unlocked) (layer "User.5")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp fe46f36c-2b82-461a-babf-560d4944ae38)
)
(fp_line (start -0.73963 -1.5) (end 0.73964 -1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 23eb8999-3571-41df-8d96-bf5a131c71a6))
(fp_line (start -0.73963 1.5) (end -0.73963 -1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 74f054a9-9b2c-44b1-a7ea-63b0c7163c13))
(fp_line (start -0.73963 1.5) (end 0.73964 1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 21299fef-4194-4a4d-8592-370cb4835ecf))
(fp_line (start 0.73964 1.5) (end 0.73964 -1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dcadb53b-5636-4613-ad0a-b78eeba6fab8))
(fp_circle (center -3.65 -0.975) (end -3.65 -1.1)
(stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 68c93750-f28d-438e-8009-9353f63bf8d7))
(fp_line (start -0.5 0) (end 0.5 0)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp ec5439c4-6875-4f56-bdc5-97e864e04c70))
(fp_line (start 0 0.5) (end 0 -0.5)
(stroke (width 0.254) (type solid)) (layer "Eco1.User") (tstamp 5a76953c-dde5-4e07-ae37-81b0e37c9eb5))
(fp_line (start -1.5 -1.5) (end 1.5 -1.5)
(stroke (width 0.254) (type solid)) (layer "User.2") (tstamp e7897f70-75e0-4307-962d-8b77d34c593c))
(fp_line (start -1.5 1.5) (end -1.5 -1.5)
(stroke (width 0.254) (type solid)) (layer "User.2") (tstamp ddd2c6b8-eb63-4c5a-835c-1ea42b7d89bd))
(fp_line (start -1.5 1.5) (end 1.5 1.5)
(stroke (width 0.254) (type solid)) (layer "User.2") (tstamp 08268410-d6eb-4a26-b0d9-a2b10c665751))
(fp_line (start 1.5 1.5) (end 1.5 -1.5)
(stroke (width 0.254) (type solid)) (layer "User.2") (tstamp 4d799610-0fe0-497c-b85e-6d36117664a5))
(fp_line (start -3.58006 -2) (end 3.58006 -2)
(stroke (width 0.254) (type solid)) (layer "User.3") (tstamp 892078ab-eb91-4b49-b6d1-66305fc45b7e))
(fp_line (start -3.58006 2) (end -3.58006 -2)
(stroke (width 0.254) (type solid)) (layer "User.3") (tstamp 26f02c1f-ba6c-4017-b4e2-a55b35a96ac2))
(fp_line (start -3.58006 2) (end 3.58006 2)
(stroke (width 0.254) (type solid)) (layer "User.3") (tstamp 66826c57-df39-4f95-bf25-8d5be0116d88))
(fp_line (start 3.58006 2) (end 3.58006 -2)
(stroke (width 0.254) (type solid)) (layer "User.3") (tstamp 54bb64ea-fda9-46a8-acc8-b74bafeac920))
(fp_line (start -3.58006 -2) (end 3.58006 -2)
(stroke (width 0.254) (type solid)) (layer "User.5") (tstamp 2fefd9c7-f500-46a4-8686-e49e7b9634d7))
(fp_line (start -3.58006 2) (end -3.58006 -2)
(stroke (width 0.254) (type solid)) (layer "User.5") (tstamp 03f77fc5-fc75-426d-a8d7-58b638a8f2db))
(fp_line (start -3.58006 2) (end 3.58006 2)
(stroke (width 0.254) (type solid)) (layer "User.5") (tstamp 1051d468-bdf7-426f-80eb-a4952d5a5857))
(fp_line (start 3.58006 2) (end 3.58006 -2)
(stroke (width 0.254) (type solid)) (layer "User.5") (tstamp 315003f7-93ab-4aba-897a-1743c4b4cbde))
(pad "1" smd rect (at -2.15985 -0.975) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/GATE_1") (pinfunction "GATE") (pintype "output") (thermal_bridge_angle 45) (tstamp 69eb17b2-ddad-4050-80d1-648549e773a9))
(pad "2" smd roundrect (at -2.15985 -0.325) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 4 "/V_BAT_IN_1") (pinfunction "SOURCE") (pintype "passive") (thermal_bridge_angle 45) (tstamp 2ed1168c-3538-4545-bc48-4de1070cf800))
(pad "3" smd roundrect (at -2.15985 0.325) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 9 "unconnected-(U1-NC-Pad3)") (pinfunction "NC") (pintype "passive") (thermal_bridge_angle 45) (tstamp 257bace6-34bb-4929-9a9c-c64a1ac9d5a1))
(pad "4" smd roundrect (at -2.15985 0.975) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 4 "/V_BAT_IN_1") (pinfunction "IN") (pintype "input") (thermal_bridge_angle 45) (tstamp af2fa0c6-c5c3-40f7-974b-ca979e865b95))
(pad "5" smd roundrect (at 2.15985 0.975) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 4 "/V_BAT_IN_1") (pinfunction "~{SHDN}") (pintype "input") (thermal_bridge_angle 45) (tstamp c8abb8c3-5d77-45c7-be3f-4669e505098a))
(pad "6" smd roundrect (at 2.15985 0.325) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 2 "Net-(D1-2)") (pinfunction "VSS") (pintype "power_in") (thermal_bridge_angle 45) (tstamp de086625-e8ec-465d-8022-a2c7c0c9380a))
(pad "7" smd roundrect (at 2.15985 -0.325) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 10 "unconnected-(U1-NC-Pad7)") (pinfunction "NC") (pintype "passive") (thermal_bridge_angle 45) (tstamp a78b6ba9-6d1b-4e2a-b0f3-491cb423ae5e))
(pad "8" smd roundrect (at 2.15985 -0.975) (size 1.84042 0.49493) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 1 "/V_BAT_OUT") (pinfunction "OUT") (pintype "input") (thermal_bridge_angle 45) (tstamp b63e20be-882f-4786-8211-9249216de719))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/IC_Analog_Devices_Inc_LT6100IMS8#TRPBF_eec.STEP"
(offset (xyz 0 -0 0))
(scale (xyz 1 1 1))
(rotate (xyz -0 -0 0))
)
)
(footprint "AltiumImport:SMD-0805C" (layer "F.Cu")
(tstamp 8bfb82c7-d74b-4351-9136-70320750e95b)
(at 176.1511 106.3331)
(property "Part Number" "GRM216R71H152KA01D")
(property "Sheetfile" "Load Ballancing Circuit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "CAP CER 1500PF 50V X7R 0805")
(path "/4f0f0612-932a-4897-aca0-6381886faecd")
(fp_text reference "C2" (at -0.9 2.8 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp c437ba97-ee06-4d69-ba7e-a1e7d7cc284e)
)
(fp_text value "1500pF" (at 4.7879 0.4699 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.254) bold) (justify left bottom))
(tstamp 0d1c3d62-7406-4202-8e76-978cf5ec7fba)
)
(fp_line (start 0.62496 -0.00024) (end -0.62496 -0.00024)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 78b90d97-6935-4ac0-a314-27e2507ed92c))
(pad "1" smd rect (at 0 -1.016 270) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "/V_BAT_OUT") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp a15e9e2c-b55b-4f70-a28d-70cf1d093720))
(pad "2" smd rect (at 0 1.016 270) (size 1.016 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(D2-2)") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp c79ab2d6-f245-4195-9640-a7d785b9f34e))
(model "${KIPRJMOD}/ALTIUM_EMBEDDED_MODELS/capacitor 0805.step"
(offset (xyz 0.00004 0.00012 0))
(scale (xyz 1 1 1))