-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphase.kicad_sch
More file actions
2166 lines (2119 loc) · 80 KB
/
Copy pathphase.kicad_sch
File metadata and controls
2166 lines (2119 loc) · 80 KB
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 20211123) (generator eeschema)
(uuid de2a3187-e130-44c7-a604-738e4fe32846)
(paper "A4")
(title_block
(title "(BCC) Battery Case Controller")
(date "2022-12-06")
(rev "1")
(company "UNIMOC universal motor controller")
)
(lib_symbols
(symbol "Amplifier_Current:INA240A2PW" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 3.81 3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "INA240A2PW" (id 1) (at 3.81 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:TSSOP-8_4.4x3mm_P0.65mm" (id 2) (at 0 -16.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/ina240.pdf" (id 3) (at 3.81 3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "current monitor shunt sensor bidirectional high low" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "High- and Low-Side, Bidirectional, Zero-Drift, Current-Sense Amplifier With Enhanced PWM Rejection, 50V/V, TSSOP-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TSSOP*4.4x3mm*P0.65mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INA240A2PW_0_1"
(polyline
(pts
(xy 5.08 0)
(xy -5.08 5.08)
(xy -5.08 -5.08)
(xy 5.08 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "INA240A2PW_1_1"
(pin passive line (at -2.54 -7.62 90) (length 3.81) hide
(name "GND" (effects (font (size 1.016 1.016))))
(number "1" (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 "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 power_in line (at -2.54 -7.62 90) (length 3.81)
(name "GND" (effects (font (size 1.016 1.016))))
(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.016 1.016))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 90) (length 5.08)
(name "REF2" (effects (font (size 0.508 0.508))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -7.62 90) (length 6.35)
(name "REF1" (effects (font (size 0.508 0.508))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (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" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Schottky_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_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 "Driver_FET:LM5109BMA" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LM5109BMA" (id 1) (at 0 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 -12.7 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm5109b.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Half-Bridge Gate Driver" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Half-Bridge Gate Driver, Output Current 1.0A, 100V, SOIC-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LM5109BMA_0_1"
(rectangle (start -5.08 -10.16) (end 5.08 10.16)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "LM5109BMA_1_1"
(pin power_in line (at -7.62 7.62 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "HI" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -5.08 0) (length 2.54)
(name "LI" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 -7.62 0) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 -7.62 180) (length 2.54)
(name "LO" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 2.54)
(name "HS" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 -2.54 180) (length 2.54)
(name "HO" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 180) (length 2.54)
(name "HB" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:BSC040N08NS5" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BSC040N08NS5" (id 1) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:TDSON-8-1" (id 2) (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "http://www.infineon.com/dgdl/Infineon-BSC040N08NS5-DS-v02_00-EN.pdf?fileId=5546d4624ad04ef9014ae3065a7e2a05" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "OptiMOS Power MOSFET N-MOS" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "100A Id, 80V Vds, OptiMOS N-Channel Power MOSFET, 4.0mOhm Ron, Qg (typ) 43.0nC, PG-TDSON-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TDSON*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BSC040N08NS5_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "BSC040N08NS5_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54) hide
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54) hide
(name "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+12V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+12V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+12V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3VADC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VADC" (id 1) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VADC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VADC_0_0"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VADC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "+3.3VADC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:+BATT" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+BATT" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag battery" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+BATT\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+BATT_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+BATT_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+BATT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GNDA" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDA_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDA_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDPWR" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GNDPWR" (id 1) (at 0 -3.302 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GNDPWR\" , power ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDPWR_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 -1.27)
(xy -1.27 -2.032)
(xy -1.27 -2.032)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.508 -1.27)
(xy -0.762 -2.032)
(xy -0.762 -2.032)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy -0.254 -2.032)
(xy -0.254 -2.032)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 -1.27)
(xy 0.254 -2.032)
(xy 0.254 -2.032)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 -1.27)
(xy -1.016 -1.27)
(xy -1.016 -1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 -1.27)
(xy 0.762 -2.032)
(xy 0.762 -2.032)
(xy 0.762 -2.032)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDPWR_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDPWR" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 62.23 36.83) (diameter 0) (color 0 0 0 0)
(uuid 02187714-fc34-4d2d-a875-c87b1f68814f)
)
(junction (at 53.34 36.83) (diameter 0) (color 0 0 0 0)
(uuid 0794dbbc-ff17-4756-8aac-9e586cc1ad99)
)
(junction (at 241.3 115.57) (diameter 0) (color 0 0 0 0)
(uuid 1d3b130a-3b09-41df-aca3-f17cc58a68bc)
)
(junction (at 241.3 87.63) (diameter 0) (color 0 0 0 0)
(uuid 26c9ecc2-1511-4ddf-b68d-860d559db74e)
)
(junction (at 241.3 125.73) (diameter 0) (color 0 0 0 0)
(uuid 2d0c69bb-c20d-4dec-9c86-47f0ec7095d9)
)
(junction (at 170.18 67.31) (diameter 0) (color 0 0 0 0)
(uuid 3d4423aa-de69-42ad-bf18-2a1dda7907c9)
)
(junction (at 114.3 74.93) (diameter 0) (color 0 0 0 0)
(uuid 3da790a0-d457-404f-8ee9-79db41ebd19a)
)
(junction (at 250.19 113.03) (diameter 0) (color 0 0 0 0)
(uuid 3f7d9f21-8f77-4a40-a458-3f3e47705941)
)
(junction (at 86.36 36.83) (diameter 0) (color 0 0 0 0)
(uuid 43a32523-cc3e-445e-b586-47022bdaf73d)
)
(junction (at 190.5 21.59) (diameter 0) (color 0 0 0 0)
(uuid 53630630-d9c0-4f1b-90cc-8fd595367996)
)
(junction (at 184.15 67.31) (diameter 0) (color 0 0 0 0)
(uuid 564bf73f-cf54-4ed6-ac36-56a30139a92d)
)
(junction (at 91.44 64.77) (diameter 0) (color 0 0 0 0)
(uuid 5ca73e36-f1e9-467f-b99d-2b669e7ecf6d)
)
(junction (at 53.34 97.79) (diameter 0) (color 0 0 0 0)
(uuid 5e38087c-bb68-4d98-9d40-651cf0f9dd28)
)
(junction (at 190.5 48.26) (diameter 0) (color 0 0 0 0)
(uuid 63ec87eb-af6c-43d4-9223-9b445cee4fe2)
)
(junction (at 184.15 109.22) (diameter 0) (color 0 0 0 0)
(uuid 642f8dfc-cffc-4e80-af17-d066a2609419)
)
(junction (at 64.77 83.82) (diameter 0) (color 0 0 0 0)
(uuid 64ba7390-44aa-4983-8381-73c6252ac1af)
)
(junction (at 266.7 101.6) (diameter 0) (color 0 0 0 0)
(uuid 671ecea7-ad0f-4b2e-b3f4-5241d0c4c3e5)
)
(junction (at 250.19 125.73) (diameter 0) (color 0 0 0 0)
(uuid 7703ca1e-8e6a-4fbd-bab7-dc996b44bc94)
)
(junction (at 199.39 21.59) (diameter 0) (color 0 0 0 0)
(uuid 7abfc445-6c3e-40d9-85b6-a01dcc398836)
)
(junction (at 146.05 67.31) (diameter 0) (color 0 0 0 0)
(uuid 7cd184a0-98a1-4125-94b5-49c5fc3eda8b)
)
(junction (at 146.05 83.82) (diameter 0) (color 0 0 0 0)
(uuid 7f54209a-63ef-4a05-8dae-83bd397ddae7)
)
(junction (at 91.44 36.83) (diameter 0) (color 0 0 0 0)
(uuid 8290bdf8-9b38-450a-863d-26c9b48199f6)
)
(junction (at 146.05 55.88) (diameter 0) (color 0 0 0 0)
(uuid 8f9d884b-c21f-4b19-9818-cbb0cad229d2)
)
(junction (at 184.15 129.54) (diameter 0) (color 0 0 0 0)
(uuid ad796875-e352-4513-ba06-b9aea4b50516)
)
(junction (at 114.3 62.23) (diameter 0) (color 0 0 0 0)
(uuid b556bb07-6684-43d1-abd7-b6da883fce05)
)
(junction (at 222.25 67.31) (diameter 0) (color 0 0 0 0)
(uuid d8c4685c-541d-4e67-9b60-b92ff6e1890f)
)
(junction (at 199.39 48.26) (diameter 0) (color 0 0 0 0)
(uuid df0748f4-a0d2-4624-96eb-c8270501a4c1)
)
(junction (at 232.41 67.31) (diameter 0) (color 0 0 0 0)
(uuid f460d828-b1ab-48a5-b838-598e972927b1)
)
(junction (at 100.33 64.77) (diameter 0) (color 0 0 0 0)
(uuid f46f9f4a-ed56-444e-9f93-424faa6acc87)
)
(wire (pts (xy 67.31 52.07) (xy 62.23 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 072d3275-4500-4961-9dd0-4292aee81de3)
)
(wire (pts (xy 146.05 67.31) (xy 170.18 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09e81055-e178-42ca-a09c-c30ffd7a607f)
)
(wire (pts (xy 91.44 36.83) (xy 100.33 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a2bead8-8f03-4792-b702-cfcf8ce0d4dc)
)
(wire (pts (xy 205.74 142.24) (xy 271.78 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0caa0c4d-eacb-4576-8326-c82653a13d56)
)
(wire (pts (xy 158.75 87.63) (xy 130.81 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cc98897-a9aa-4316-a505-74db68b0e2db)
)
(wire (pts (xy 184.15 109.22) (xy 205.74 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dce1247-9077-433e-a5bf-9dbc9080fa43)
)
(wire (pts (xy 77.47 36.83) (xy 86.36 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fc8a5c0-dc4a-45d3-a236-6d2143ef264c)
)
(wire (pts (xy 64.77 97.79) (xy 53.34 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 117c5f93-cb96-400e-b0be-d3afd4394dee)
)
(wire (pts (xy 184.15 105.41) (xy 184.15 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11a1cc7d-bfe8-4b19-a81b-4ed066cefb89)
)
(wire (pts (xy 46.99 74.93) (xy 46.99 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11b8fd14-d6f9-403d-b5fa-959bf3c26cc5)
)
(wire (pts (xy 86.36 36.83) (xy 91.44 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 131e8daf-d225-4a41-93b8-60a4e2265c62)
)
(wire (pts (xy 114.3 48.26) (xy 114.3 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 139fee28-8b67-4f9b-9fb1-3fac987003f2)
)
(wire (pts (xy 116.84 55.88) (xy 146.05 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 152b0e3a-24ca-4245-895f-2e383b3471e6)
)
(wire (pts (xy 123.19 74.93) (xy 114.3 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1569c953-457d-4977-8afe-bd4154f2fff8)
)
(wire (pts (xy 227.33 99.06) (xy 236.22 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16bb98ff-4973-49d7-9412-66b0eb9bbf0e)
)
(wire (pts (xy 170.18 80.01) (xy 170.18 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18c21aa0-0f33-4f41-a966-4bdcb47f3bdb)
)
(wire (pts (xy 190.5 48.26) (xy 190.5 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a039084-adf9-45b8-932c-976987893a2a)
)
(wire (pts (xy 162.56 74.93) (xy 158.75 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f93b408-1048-4883-b402-3527645f8ae3)
)
(wire (pts (xy 227.33 77.47) (xy 232.41 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2101e5f1-41ef-4331-b59b-d41e682a856e)
)
(wire (pts (xy 266.7 125.73) (xy 266.7 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21b7bc79-b89f-4519-a1ed-e66211f57623)
)
(wire (pts (xy 250.19 113.03) (xy 271.78 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21e46a9a-3bb8-40d5-9d8e-1257fe2ec19d)
)
(wire (pts (xy 146.05 53.34) (xy 146.05 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2260546b-4735-4677-82e6-360661c6f146)
)
(wire (pts (xy 241.3 85.09) (xy 241.3 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a53cdaf-3ead-42a8-a0df-9a8fb93f6f02)
)
(wire (pts (xy 91.44 64.77) (xy 91.44 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c9b4a8c-a604-4c0b-a667-633f8bde3dab)
)
(wire (pts (xy 46.99 97.79) (xy 46.99 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3324086d-a31c-4009-8fef-47f22a2952cc)
)
(wire (pts (xy 175.26 129.54) (xy 175.26 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33c69930-c44b-4c83-974d-9e6d5dc24f9c)
)
(wire (pts (xy 82.55 62.23) (xy 114.3 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 413439c1-d97d-4916-aa42-f014ee3446a6)
)
(wire (pts (xy 123.19 87.63) (xy 114.3 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41dcd28e-992f-47be-84e4-3da8a5c2de1d)
)
(wire (pts (xy 243.84 113.03) (xy 243.84 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43698983-8f62-467b-aa7f-caa84f1cb993)
)
(wire (pts (xy 25.4 64.77) (xy 67.31 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4549a7a9-9c77-4a26-a0ea-88939cd4163a)
)
(wire (pts (xy 82.55 52.07) (xy 86.36 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49c38cb5-ffe7-46f5-9888-36e3eaed70d4)
)
(wire (pts (xy 199.39 21.59) (xy 199.39 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4de019e7-a695-47ef-a5e1-615987818ce0)
)
(wire (pts (xy 262.89 101.6) (xy 266.7 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f05e6b8-23fe-4719-9259-299a91cf3175)
)
(wire (pts (xy 190.5 21.59) (xy 190.5 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50017606-a59d-413b-8d19-3c0d978b567b)
)
(wire (pts (xy 130.81 62.23) (xy 157.48 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 526c02f6-4e8b-4747-8c72-444fbb8f5f17)
)
(wire (pts (xy 199.39 21.59) (xy 207.01 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52dcf667-1663-43ab-9806-6b153e278f2a)
)
(wire (pts (xy 190.5 21.59) (xy 199.39 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53057953-3335-4f0a-99f7-b0e130fd96fe)
)
(wire (pts (xy 170.18 67.31) (xy 184.15 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54609e41-ea81-463e-834a-9af6b4278d9c)
)
(wire (pts (xy 231.14 67.31) (xy 232.41 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55cc3ed7-7912-4502-9c48-d2d15753d78e)
)
(wire (pts (xy 251.46 101.6) (xy 255.27 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 571d4a56-262b-48cc-876c-e255eb94d804)
)
(wire (pts (xy 190.5 19.05) (xy 190.5 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bee0c23-18df-4db6-9b95-0c5ae8e4670f)
)
(wire (pts (xy 114.3 87.63) (xy 114.3 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))