-
Notifications
You must be signed in to change notification settings - Fork 1
/
VIM.kicad_sch
1518 lines (1487 loc) · 53.3 KB
/
VIM.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 12dd0ce1-a7f3-4320-ba0f-d426193f5b9f)
(paper "A4")
(lib_symbols
(symbol "Amplifier_Current:INA139" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 3.81 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "INA139" (at 3.81 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/ina169.pdf" (at 0 0.127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "current sense shunt monitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "High-Side Measurement Current Shunt Monitor, 40V, SOT-23-5" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INA139_0_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "INA139_1_1"
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Analog_ADC:MAX11615" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 11.43 -11.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MAX11615" (at 11.43 -13.97 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:QSOP-16_3.9x4.9mm_P0.635mm" (at 11.43 -16.51 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/MAX11612-MAX11617.pdf" (at 2.54 20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "adc i2c 8ch" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "8-channel single-ended or 4-channel, differential, 12-bit ADC, I2C, 2.048V internal reference, 16-QSOP package" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "QSOP*3.9x4.9mm*P0.635mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX11615_0_1"
(rectangle (start -10.16 15.24) (end 10.16 -17.78)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MAX11615_1_1"
(pin input line (at -12.7 -15.24 0) (length 2.54)
(name "REF" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "AIN5" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "AIN6" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "AIN7" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 0 180) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -20.32 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 17.78 270) (length 2.54)
(name "Vdd" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -10.16 -12.7 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -10.16 -10.16 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -10.16 -7.62 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 2.54)
(name "AIN0" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "AIN1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 2.54)
(name "AIN2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "AIN3" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "AIN4" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Load Ballancing Circuit-altium-import:GND" (power) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "GND" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name 'GND'" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_0"
(polyline
(pts
(xy -2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -3.302)
(xy 1.778 -3.302)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.016 -4.064)
(xy 1.016 -4.064)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -0.254 -4.826)
(xy 0.254 -4.826)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -2.54)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(pin power_in line (at 0 0 0) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VDD\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VDD_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VDD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 128.27 55.88) (diameter 0) (color 0 0 0 0)
(uuid 12d603a8-26e5-4782-b4d1-08e4c1ba25f8)
)
(junction (at 149.86 55.88) (diameter 0) (color 0 0 0 0)
(uuid 1b23d91c-2ab2-45c5-abbb-0dcbde9b3292)
)
(junction (at 189.23 106.68) (diameter 0) (color 0 0 0 0)
(uuid 2e76c5e1-2f76-4998-b2d7-0e18495d22ef)
)
(junction (at 68.58 57.15) (diameter 0) (color 0 0 0 0)
(uuid 380bd521-5424-4486-bfc0-db8b580631ac)
)
(junction (at 81.28 44.45) (diameter 0) (color 0 0 0 0)
(uuid 3ae05698-f036-41b8-b690-029c5056ef6a)
)
(junction (at 82.55 160.02) (diameter 0) (color 0 0 0 0)
(uuid 4122015b-c2d6-408b-9419-6a7ebe25411a)
)
(junction (at 45.72 104.14) (diameter 0) (color 0 0 0 0)
(uuid 42579195-1d71-4017-9e1e-333817ed8a5b)
)
(junction (at 107.95 184.15) (diameter 0) (color 0 0 0 0)
(uuid 445dfd6e-c66d-4e14-9dc6-04e3b229d3c4)
)
(junction (at 81.28 57.15) (diameter 0) (color 0 0 0 0)
(uuid 4ae087df-8579-4b2d-9a72-ec2bc0d34db0)
)
(junction (at 193.04 90.17) (diameter 0) (color 0 0 0 0)
(uuid 7179c66b-c446-423d-8e04-0d4dc00071b9)
)
(junction (at 140.97 43.18) (diameter 0) (color 0 0 0 0)
(uuid 9e1f80d0-6d8b-411d-9301-868ecbfec677)
)
(junction (at 82.55 184.15) (diameter 0) (color 0 0 0 0)
(uuid a02fade0-8f96-4c2b-90ed-61cf62b533a7)
)
(junction (at 90.17 44.45) (diameter 0) (color 0 0 0 0)
(uuid a22a408d-696e-45bf-9bd2-1e66fc64e41f)
)
(junction (at 71.12 104.14) (diameter 0) (color 0 0 0 0)
(uuid a43b0b4f-71e1-4b94-88e6-3220378a47c5)
)
(junction (at 45.72 125.73) (diameter 0) (color 0 0 0 0)
(uuid a7268c43-05f2-42ff-a958-2942c95dbf51)
)
(junction (at 107.95 160.02) (diameter 0) (color 0 0 0 0)
(uuid b8d208ec-66c3-44e5-af39-4788129bbd4f)
)
(junction (at 140.97 55.88) (diameter 0) (color 0 0 0 0)
(uuid d7181ebe-feab-4a3c-b700-59c4f64ac0f2)
)
(junction (at 71.12 125.73) (diameter 0) (color 0 0 0 0)
(uuid d725b204-75b5-4cb0-a9b8-cab3457e4753)
)
(junction (at 149.86 43.18) (diameter 0) (color 0 0 0 0)
(uuid e366dd62-1946-40b5-8b88-651abd190de3)
)
(junction (at 90.17 57.15) (diameter 0) (color 0 0 0 0)
(uuid f10d76e8-f4b5-4b76-b9d5-37e7673a1ad1)
)
(junction (at 201.93 109.22) (diameter 0) (color 0 0 0 0)
(uuid f31e9c22-98cc-46aa-a216-6172f4087d97)
)
(junction (at 193.04 83.82) (diameter 0) (color 0 0 0 0)
(uuid fe05bde2-86c3-4f68-9c02-2476d7e2439e)
)
(no_connect (at 158.75 121.92) (uuid e4b92d00-e5d0-4849-bc69-ac11eacbaa0a))
(wire (pts (xy 73.66 139.7) (xy 82.55 139.7))
(stroke (width 0) (type default))
(uuid 07d8ecec-7035-4c0c-8fd4-b0b6f5eac7bb)
)
(wire (pts (xy 45.72 125.73) (xy 45.72 130.81))
(stroke (width 0) (type default))
(uuid 0c35c203-a66f-4cc9-9172-f48fc3eb06d8)
)
(wire (pts (xy 158.75 106.68) (xy 146.05 106.68))
(stroke (width 0) (type default))
(uuid 0d561b2c-601f-44f9-8132-9d6629980451)
)
(wire (pts (xy 201.93 109.22) (xy 204.47 109.22))
(stroke (width 0) (type default))
(uuid 0ee03e9a-d76f-479a-8682-4f801667aaad)
)
(wire (pts (xy 171.45 127) (xy 171.45 134.62))
(stroke (width 0) (type default))
(uuid 11ccb47d-e984-4f2d-8de2-daf5aa456d9f)
)
(wire (pts (xy 193.04 83.82) (xy 171.45 83.82))
(stroke (width 0) (type default))
(uuid 1b50d19d-4f1c-4334-b454-a84c34706497)
)
(wire (pts (xy 107.95 160.02) (xy 107.95 168.91))
(stroke (width 0) (type default))
(uuid 1d46d145-f11a-4497-8305-d51327cebf5a)
)
(wire (pts (xy 151.13 184.15) (xy 151.13 111.76))
(stroke (width 0) (type default))
(uuid 25eabf68-f8e2-4460-9db2-9ece010056ff)
)
(wire (pts (xy 189.23 106.68) (xy 190.5 106.68))
(stroke (width 0) (type default))
(uuid 26cada92-6028-46fe-8cb3-53d5c7c61d86)
)
(wire (pts (xy 45.72 90.17) (xy 45.72 83.82))
(stroke (width 0) (type default))
(uuid 28f362e4-fa03-4d0f-8450-d0d052a1d991)
)
(wire (pts (xy 36.83 83.82) (xy 45.72 83.82))
(stroke (width 0) (type default))
(uuid 296b4a5f-4949-4f26-9417-8ea79e901027)
)
(wire (pts (xy 82.55 184.15) (xy 107.95 184.15))
(stroke (width 0) (type default))
(uuid 29e17dc4-4f2c-4998-9ad5-8b31249054fc)
)
(wire (pts (xy 128.27 31.75) (xy 128.27 35.56))
(stroke (width 0) (type default))
(uuid 2aab6d5a-6de4-4b4a-b709-b9bc87af1a88)
)
(wire (pts (xy 115.57 45.72) (xy 123.19 45.72))
(stroke (width 0) (type default))
(uuid 2ce80cd2-4a47-4f60-b28b-c25792519a8b)
)
(wire (pts (xy 68.58 57.15) (xy 68.58 52.07))
(stroke (width 0) (type default))
(uuid 2f321797-e7e5-4010-b84d-38bcee201579)
)
(wire (pts (xy 82.55 146.05) (xy 82.55 139.7))
(stroke (width 0) (type default))
(uuid 2fe45b95-1332-4aea-889e-314b5680cc0b)
)
(wire (pts (xy 157.48 43.18) (xy 157.48 93.98))
(stroke (width 0) (type default))
(uuid 30e5ac7f-281b-4e95-be5a-841052029ab6)
)
(wire (pts (xy 149.86 53.34) (xy 149.86 55.88))
(stroke (width 0) (type default))
(uuid 32d76f54-212d-4f27-9e16-cc58a588a404)
)
(wire (pts (xy 71.12 104.14) (xy 158.75 104.14))
(stroke (width 0) (type default))
(uuid 35f6b66e-fd58-4fb6-8705-ce29c3dac801)
)
(wire (pts (xy 68.58 58.42) (xy 68.58 57.15))
(stroke (width 0) (type default))
(uuid 3623628b-2e01-4206-85f0-0ee0b9dda44a)
)
(wire (pts (xy 93.98 57.15) (xy 93.98 88.9))
(stroke (width 0) (type default))
(uuid 38637b87-8405-4bd9-bdc4-22b09a33122f)
)
(wire (pts (xy 149.86 101.6) (xy 149.86 88.9))
(stroke (width 0) (type default))
(uuid 3a73e47d-b486-4dba-80ed-1544ebe511a3)
)
(wire (pts (xy 100.33 87.63) (xy 152.4 87.63))
(stroke (width 0) (type default))
(uuid 44b3708e-bf3f-4653-9762-713197eb8917)
)
(wire (pts (xy 90.17 44.45) (xy 100.33 44.45))
(stroke (width 0) (type default))
(uuid 4b557dbe-7a59-4f6e-b6f7-931643e716f8)
)
(wire (pts (xy 54.61 41.91) (xy 63.5 41.91))
(stroke (width 0) (type default))
(uuid 4f1e6bd0-a54b-4f9d-b15d-2bfd67b580a4)
)
(wire (pts (xy 90.17 57.15) (xy 93.98 57.15))
(stroke (width 0) (type default))
(uuid 59dcb602-9f30-4932-acc0-aca1a4cf8a8e)
)
(wire (pts (xy 152.4 87.63) (xy 152.4 99.06))
(stroke (width 0) (type default))
(uuid 5f0da0e9-78b0-47c3-a405-88985d00d83e)
)
(wire (pts (xy 78.74 44.45) (xy 81.28 44.45))
(stroke (width 0) (type default))
(uuid 603bd3fe-1894-4dfb-95d3-85eb45b29b97)
)
(wire (pts (xy 90.17 54.61) (xy 90.17 57.15))
(stroke (width 0) (type default))
(uuid 609d0709-0fbd-49f6-b210-90ad84c918a9)
)
(wire (pts (xy 115.57 40.64) (xy 123.19 40.64))
(stroke (width 0) (type default))
(uuid 6206b329-d21d-46b5-aef7-d295e5278be7)
)
(wire (pts (xy 193.04 83.82) (xy 193.04 90.17))
(stroke (width 0) (type default))
(uuid 623a0dc6-e580-48e9-9c7f-1ba619c09987)
)
(wire (pts (xy 189.23 102.87) (xy 189.23 106.68))
(stroke (width 0) (type default))
(uuid 62fbd2ce-2208-4b62-8bf8-d2f3452e1b76)
)
(wire (pts (xy 146.05 125.73) (xy 146.05 106.68))
(stroke (width 0) (type default))
(uuid 65c6bec8-d544-4048-8974-3e5ac906671d)
)
(wire (pts (xy 148.59 160.02) (xy 148.59 109.22))
(stroke (width 0) (type default))
(uuid 6be894be-5838-4f65-bdde-201e4c34b024)
)
(wire (pts (xy 107.95 184.15) (xy 151.13 184.15))
(stroke (width 0) (type default))
(uuid 6bfa2a42-dfa8-4b91-9b03-f4342c849af5)
)
(wire (pts (xy 59.69 104.14) (xy 71.12 104.14))
(stroke (width 0) (type default))
(uuid 6cb2024e-a513-48c6-8aeb-2cc060440c53)
)
(wire (pts (xy 81.28 54.61) (xy 81.28 57.15))
(stroke (width 0) (type default))
(uuid 6f246a4d-109d-4817-91ac-011e0fb5b42a)
)
(wire (pts (xy 128.27 57.15) (xy 128.27 55.88))
(stroke (width 0) (type default))
(uuid 7095d7ff-1827-4f92-a251-40f40be06d48)
)
(wire (pts (xy 189.23 90.17) (xy 193.04 90.17))
(stroke (width 0) (type default))
(uuid 74c3647a-e568-4737-9e56-0207d9602cb1)
)
(wire (pts (xy 82.55 184.15) (xy 82.55 194.31))
(stroke (width 0) (type default))
(uuid 758bb566-8126-468f-8200-43c9c31cd9f0)
)
(wire (pts (xy 68.58 57.15) (xy 81.28 57.15))
(stroke (width 0) (type default))
(uuid 77c1ca49-5e9a-415e-bfb9-551b3a3cfcee)
)
(wire (pts (xy 45.72 104.14) (xy 45.72 111.76))
(stroke (width 0) (type default))
(uuid 7831e858-13be-4629-90c2-901bb2864d8a)
)
(wire (pts (xy 140.97 53.34) (xy 140.97 55.88))
(stroke (width 0) (type default))
(uuid 78749a7f-9f8e-4a41-8a30-9d8aabb13bc9)
)
(wire (pts (xy 152.4 99.06) (xy 158.75 99.06))
(stroke (width 0) (type default))
(uuid 7a552037-90b5-45b7-a251-6138e1857716)
)
(wire (pts (xy 189.23 106.68) (xy 184.15 106.68))
(stroke (width 0) (type default))
(uuid 7d53a6a3-5d0c-4853-87fa-85c8713725c7)
)
(wire (pts (xy 128.27 55.88) (xy 140.97 55.88))
(stroke (width 0) (type default))
(uuid 7e80dd60-5a18-43cd-aeb9-3676203ebd2c)
)
(wire (pts (xy 148.59 109.22) (xy 158.75 109.22))
(stroke (width 0) (type default))
(uuid 83f9a0a1-d80f-4096-b94a-77a7a8d95a1d)
)
(wire (pts (xy 54.61 46.99) (xy 63.5 46.99))
(stroke (width 0) (type default))
(uuid 864fb6cb-092d-4432-ad3e-565b4827c4f5)
)
(wire (pts (xy 149.86 43.18) (xy 149.86 45.72))
(stroke (width 0) (type default))
(uuid 8c503d30-73d8-4e08-8fa5-bca63aac2a43)
)
(wire (pts (xy 82.55 175.26) (xy 82.55 184.15))
(stroke (width 0) (type default))
(uuid 8c5b2072-33b8-4e40-b6e5-712762e09ffc)
)
(wire (pts (xy 45.72 104.14) (xy 52.07 104.14))
(stroke (width 0) (type default))
(uuid 8e2fe31d-589f-4b22-aa98-10b911caffee)
)
(wire (pts (xy 140.97 43.18) (xy 149.86 43.18))
(stroke (width 0) (type default))
(uuid 8edfbdcd-c489-47ef-9558-ca4b3cecefe5)
)
(wire (pts (xy 201.93 90.17) (xy 201.93 95.25))
(stroke (width 0) (type default))
(uuid 8fe9ef7b-4cbd-44ad-8b69-c6ef3f427f33)
)
(wire (pts (xy 90.17 44.45) (xy 90.17 46.99))
(stroke (width 0) (type default))
(uuid 90627bd7-6918-4d09-951d-beb671d70f06)
)
(wire (pts (xy 140.97 43.18) (xy 138.43 43.18))
(stroke (width 0) (type default))
(uuid 95c42791-b227-49d3-9433-625ce58cfea3)
)
(wire (pts (xy 149.86 43.18) (xy 157.48 43.18))
(stroke (width 0) (type default))
(uuid 98a9f683-be09-4335-b6e7-65353afde78f)
)
(wire (pts (xy 81.28 44.45) (xy 81.28 46.99))
(stroke (width 0) (type default))
(uuid 9a3de56d-6ab0-41b4-a7da-752aea350612)
)
(wire (pts (xy 189.23 95.25) (xy 189.23 90.17))
(stroke (width 0) (type default))
(uuid 9bbd74bf-3ef8-4bf0-b5c7-9761e391e690)
)
(wire (pts (xy 149.86 55.88) (xy 153.67 55.88))
(stroke (width 0) (type default))
(uuid 9c6860fd-e40d-4012-86f1-9d9d9989627c)
)
(wire (pts (xy 140.97 55.88) (xy 149.86 55.88))
(stroke (width 0) (type default))
(uuid a001b5b8-54bc-470a-8b57-124dfbd8240c)
)
(wire (pts (xy 171.45 83.82) (xy 171.45 88.9))
(stroke (width 0) (type default))
(uuid a2d0cdb5-03de-4454-80d9-b38713364b16)
)
(wire (pts (xy 128.27 55.88) (xy 128.27 50.8))
(stroke (width 0) (type default))
(uuid a2de049a-4ab8-45f9-a174-d46dfb4844f6)
)
(wire (pts (xy 81.28 57.15) (xy 90.17 57.15))
(stroke (width 0) (type default))
(uuid aacd3388-960e-4626-812a-87e9c0989089)
)
(wire (pts (xy 45.72 119.38) (xy 45.72 125.73))
(stroke (width 0) (type default))
(uuid aeb9202c-a207-4e2a-a898-9900b1adb3af)
)
(wire (pts (xy 158.75 111.76) (xy 151.13 111.76))
(stroke (width 0) (type default))
(uuid b3a90dc3-4228-498d-8581-e9d7e2822ce7)
)
(wire (pts (xy 184.15 109.22) (xy 201.93 109.22))
(stroke (width 0) (type default))
(uuid b9f42451-f038-4046-85c1-c654cdf5ca1b)
)
(wire (pts (xy 82.55 160.02) (xy 82.55 167.64))
(stroke (width 0) (type default))
(uuid bd8822e9-b19e-44f4-818a-5adf910e4fa9)
)
(wire (pts (xy 107.95 160.02) (xy 148.59 160.02))
(stroke (width 0) (type default))
(uuid bed3da35-2f93-446f-a9f7-aaa53ff1b1eb)
)
(wire (pts (xy 100.33 44.45) (xy 100.33 87.63))
(stroke (width 0) (type default))
(uuid c068f814-ab55-4922-9ef2-4f26391a6ca0)
)
(wire (pts (xy 158.75 101.6) (xy 149.86 101.6))
(stroke (width 0) (type default))
(uuid c0ae7b37-7dc7-49ea-a6d9-7b12f4bcc4fb)
)
(wire (pts (xy 71.12 125.73) (xy 146.05 125.73))
(stroke (width 0) (type default))
(uuid c12c8d03-76b2-4575-922c-b7e7c579884d)
)
(wire (pts (xy 71.12 116.84) (xy 71.12 125.73))
(stroke (width 0) (type default))
(uuid c16304b1-d10c-4fdc-a6d2-8dae9aab8cfe)
)
(wire (pts (xy 157.48 93.98) (xy 158.75 93.98))
(stroke (width 0) (type default))
(uuid c1ed47d3-9a84-4348-8b7b-2570900c2a1a)
)
(wire (pts (xy 81.28 44.45) (xy 90.17 44.45))
(stroke (width 0) (type default))
(uuid c2c4f8d5-611d-4b3a-b9de-97ca47b116b5)
)
(wire (pts (xy 71.12 125.73) (xy 45.72 125.73))
(stroke (width 0) (type default))
(uuid c2f2d6bb-f446-4659-b339-3c92d95028f5)
)
(wire (pts (xy 45.72 97.79) (xy 45.72 104.14))
(stroke (width 0) (type default))
(uuid c782cc22-5d93-46db-99e8-51b16c257e14)
)
(wire (pts (xy 193.04 90.17) (xy 201.93 90.17))
(stroke (width 0) (type default))
(uuid cab46f1b-18dd-4cd0-86f4-0d35777a62a1)
)
(wire (pts (xy 96.52 160.02) (xy 107.95 160.02))
(stroke (width 0) (type default))
(uuid d20d4962-6c23-4b7d-a835-f80db41e6a1d)
)
(wire (pts (xy 107.95 176.53) (xy 107.95 184.15))
(stroke (width 0) (type default))
(uuid d98aef64-5b06-419f-8f7a-80a267b12c2a)
)
(wire (pts (xy 201.93 102.87) (xy 201.93 109.22))
(stroke (width 0) (type default))
(uuid db15b3be-ca7e-46a6-9861-cb27ac65d945)
)
(wire (pts (xy 193.04 83.82) (xy 195.58 83.82))
(stroke (width 0) (type default))
(uuid db23af87-d631-46af-bb01-9608c7ea294b)
)
(wire (pts (xy 82.55 153.67) (xy 82.55 160.02))
(stroke (width 0) (type default))
(uuid e20bd8b4-2437-4b61-a59f-e1d15a4bfbd1)
)
(wire (pts (xy 68.58 31.75) (xy 68.58 36.83))
(stroke (width 0) (type default))
(uuid e61eb45f-ab28-4233-995c-e4fe53418117)
)
(wire (pts (xy 153.67 55.88) (xy 153.67 96.52))
(stroke (width 0) (type default))
(uuid eaaa9f5f-a571-4f4e-a15e-ca5cfbc177be)
)
(wire (pts (xy 93.98 88.9) (xy 149.86 88.9))
(stroke (width 0) (type default))
(uuid eb9ef832-c25b-4c25-b871-1e672388855e)
)
(wire (pts (xy 153.67 96.52) (xy 158.75 96.52))
(stroke (width 0) (type default))
(uuid f2f18f77-5a6b-4437-a1de-c484270687b2)
)
(wire (pts (xy 71.12 104.14) (xy 71.12 109.22))
(stroke (width 0) (type default))
(uuid f3c531dc-f567-43c7-a85d-7b068656517c)
)
(wire (pts (xy 82.55 160.02) (xy 88.9 160.02))
(stroke (width 0) (type default))
(uuid f45c7935-c134-43e4-b0e2-61598201e0f9)
)
(wire (pts (xy 140.97 45.72) (xy 140.97 43.18))
(stroke (width 0) (type default))
(uuid f9e25125-933b-4309-9063-5ed8099ea78e)
)
(hierarchical_label "SNS1-" (shape input) (at 54.61 46.99 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0fafb0c2-8471-42c5-b95b-b9af9d18229d)
)
(hierarchical_label "Vbatt1_In" (shape input) (at 36.83 83.82 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 12cc4ca2-5886-43bb-9d9e-862a14f76bbe)
)
(hierarchical_label "I2C_SDA" (shape input) (at 204.47 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 296d8afa-445c-4c24-bc4b-1b2ba61e9f0e)
)
(hierarchical_label "SNS2+" (shape input) (at 115.57 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4e682ae2-37a2-41d3-aa6c-55312909476a)
)
(hierarchical_label "GND" (shape passive) (at 171.45 132.08 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5eed03a3-7ef5-4099-8156-80803baf5192)
)
(hierarchical_label "SNS1+" (shape input) (at 54.61 41.91 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid abb901f1-e667-481b-9699-bbfbcf86def8)
)
(hierarchical_label "SNS2-" (shape input) (at 115.57 45.72 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b24370e7-7366-4d0b-a219-c9cfcceb60c2)
)
(hierarchical_label "I2C_SCL" (shape input) (at 190.5 106.68 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b6602a9a-44d4-45be-9b21-960a4628caaf)
)
(hierarchical_label "VDD" (shape input) (at 195.58 83.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dba45917-3842-4f4f-b04b-6df6c2b0226c)
)
(hierarchical_label "Vbatt2_In" (shape input) (at 73.66 139.7 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e4d4fd49-e4ce-4097-9a11-bbf5351eda2a)
)
(symbol (lib_id "Device:R_US") (at 92.71 160.02 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 040b009a-c864-492d-9ce6-9fa8de5fb8aa)
(property "Reference" "R14" (at 92.71 153.67 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1k" (at 92.71 156.21 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 92.456 161.036 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid adcf3a10-3127-46d0-b97d-abb4f63b11bb))
(pin "2" (uuid 517a141d-2051-4263-8fac-b02884aed544))
(instances
(project "Load Ballancing Circuit"
(path "/3c80be29-1084-4d09-9b70-344866d482c5/06e37958-9d39-4a77-96cb-ce86c29d49d3"
(reference "R14") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 107.95 172.72 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1880245d-ec04-4d30-9e4b-15f61c0f1040)
(property "Reference" "C10" (at 111.76 171.45 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10uF" (at 113.03 173.99 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 106.9848 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 107.95 172.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9d1670fe-894a-44ef-bdcd-dd7861d469eb))
(pin "2" (uuid ac69f9e7-600f-4e29-af66-fc8edb2371d4))
(instances
(project "Load Ballancing Circuit"
(path "/3c80be29-1084-4d09-9b70-344866d482c5/06e37958-9d39-4a77-96cb-ce86c29d49d3"
(reference "C10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 55.88 104.14 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2b3c8411-f962-4ae6-8a07-6b0025276f1c)
(property "Reference" "R11" (at 55.88 97.79 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1k" (at 55.88 100.33 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 55.626 105.156 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 55.88 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 60c86517-19a8-4f48-aed2-f2de57666ae4))
(pin "2" (uuid 5a23fda1-16a7-4cb8-80c5-7c36a6489b3e))
(instances
(project "Load Ballancing Circuit"
(path "/3c80be29-1084-4d09-9b70-344866d482c5/06e37958-9d39-4a77-96cb-ce86c29d49d3"
(reference "R11") (unit 1)
)
)
)
)
(symbol (lib_id "power:VDD") (at 128.27 31.75 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3611b709-0031-40c8-9fc9-29e3451563a6)
(property "Reference" "#PWR07" (at 128.27 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (at 128.27 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 128.27 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 128.27 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 61a5e201-d12f-43cd-bc60-9643705af18a))
(instances
(project "Load Ballancing Circuit"
(path "/3c80be29-1084-4d09-9b70-344866d482c5/06e37958-9d39-4a77-96cb-ce86c29d49d3"
(reference "#PWR07") (unit 1)
)
)
)
)
(symbol (lib_id "Analog_ADC:MAX11615") (at 171.45 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3cc37fa2-5a38-4d6b-8fa7-a4224c0033c2)
(property "Reference" "U4" (at 173.6441 86.36 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MAX11615" (at 173.6441 88.9 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:QSOP-16_3.9x4.9mm_P0.635mm" (at 182.88 123.19 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/MAX11612-MAX11617.pdf" (at 173.99 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4c6ffbf1-7fde-4d77-8f77-d2299c352035))