-
Notifications
You must be signed in to change notification settings - Fork 0
/
drive.kicad_sch
2593 lines (2525 loc) · 96.6 KB
/
drive.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 20211123) (generator eeschema)
(uuid e6730801-ea90-4c2b-81a5-90dfbe74716b)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_NMOS_SGD" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NMOS_SGD" (id 1) (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 5.08 2.54 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" "transistor NMOS N-MOS N-MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "N-MOSFET transistor, source/gate/drain" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NMOS_SGD_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 "Q_NMOS_SGD_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 input line (at -5.08 0 0) (length 5.08)
(name "G" (effects (font (size 1.27 1.27))))
(number "2" (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 "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small_US" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small_US" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "r resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small US symbol" (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_Small_US_1_1"
(polyline
(pts
(xy 0 0)
(xy 1.016 -0.381)
(xy 0 -0.762)
(xy -1.016 -1.143)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.524)
(xy 1.016 1.143)
(xy 0 0.762)
(xy -1.016 0.381)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at 0 2.54 270) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.016)
(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" (id 0) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.016 -0.254 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, US symbol" (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_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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) (color 0 0 0 0))
(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) (color 0 0 0 0))
(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) (color 0 0 0 0))
(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 "a22verter:DRV8300" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DRV8300" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DFN_QFN:VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/drv8300.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DRV8300_0_1"
(rectangle (start -11.43 25.4) (end 11.43 -24.13)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "DRV8300_1_1"
(pin input line (at -13.97 17.78 0) (length 2.54)
(name "INLA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 -5.08 180) (length 2.54)
(name "GLB" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 11.43 180) (length 2.54)
(name "GLA" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 -17.78 180) (length 2.54)
(name "SHC" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 -13.97 180) (length 2.54)
(name "GHC" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 -10.16 180) (length 2.54)
(name "BSTC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 -1.27 180) (length 2.54)
(name "SHB" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 2.54 180) (length 2.54)
(name "GHB" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 6.35 180) (length 2.54)
(name "BSTB" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 15.24 180) (length 2.54)
(name "SHA" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 19.05 180) (length 2.54)
(name "GHA" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 6.35 0) (length 2.54)
(name "INLB" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 22.86 180) (length 2.54)
(name "BSTA" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -19.05 0) (length 2.54)
(name "DT" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 21.59 0) (length 2.54)
(name "INHA" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 10.16 0) (length 2.54)
(name "INHB" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -1.27 0) (length 2.54)
(name "INHC" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -5.08 0) (length 2.54)
(name "INLC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "GVDD" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -12.7 0) (length 2.54)
(name "MODE" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -26.67 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 13.97 -21.59 180) (length 2.54)
(name "GLC" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "a22verter:INA186" (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" "INA186" (id 1) (at 3.81 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 1.27 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/ina186.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" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bidirectional, Low- and High-Side Voltage Output, Current-Sense Amplifier, SOT-23-6" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INA186_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 "INA186_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 input line (at 2.54 -7.62 90) (length 6.35)
(name "REF" (effects (font (size 0.508 0.508))))
(number "5" (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 "6" (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:+3V3" (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" "+3V3" (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 \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_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 "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (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" "GND" (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 \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_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 "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (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:VBUS" (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" "VBUS" (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 \"VBUS\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VBUS_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 "VBUS_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 71.12 109.22) (diameter 0) (color 0 0 0 0)
(uuid 08332192-0fd6-4152-9cd9-94312db288fd)
)
(junction (at 31.75 161.29) (diameter 0) (color 0 0 0 0)
(uuid 1410c9d3-3068-4710-930e-ccb0495baa5b)
)
(junction (at 247.65 26.67) (diameter 0) (color 0 0 0 0)
(uuid 20bbf8bd-dd18-4307-ae6e-2d95b5341437)
)
(junction (at 71.12 92.71) (diameter 0) (color 0 0 0 0)
(uuid 2fc1798d-92cf-4b99-96b0-24d8bdb600e0)
)
(junction (at 39.37 161.29) (diameter 0) (color 0 0 0 0)
(uuid 3406afe3-a56e-48c9-99fd-a150f90e93c5)
)
(junction (at 39.37 172.72) (diameter 0) (color 0 0 0 0)
(uuid 4fba7c79-7a46-49f8-bc6b-f5788bf7d5ad)
)
(junction (at 46.99 161.29) (diameter 0) (color 0 0 0 0)
(uuid 5731dc15-5a09-4f8c-8201-7c4dda0d415d)
)
(junction (at 124.46 138.43) (diameter 0) (color 0 0 0 0)
(uuid 5bd72a5f-f0dd-41a3-83c9-1822468e94ff)
)
(junction (at 110.49 26.67) (diameter 0) (color 0 0 0 0)
(uuid 625148e2-070e-418f-9690-d353bd77a77f)
)
(junction (at 219.71 31.75) (diameter 0) (color 0 0 0 0)
(uuid 65bbdef5-a4ea-4825-a538-8f52d5b7e29a)
)
(junction (at 46.99 172.72) (diameter 0) (color 0 0 0 0)
(uuid 6e07c6bf-f2db-4723-9e25-0745c37ee12c)
)
(junction (at 219.71 68.58) (diameter 0) (color 0 0 0 0)
(uuid 6ea75385-e9fe-4b4f-8240-93c24886c395)
)
(junction (at 110.49 74.93) (diameter 0) (color 0 0 0 0)
(uuid 7680ccba-3986-4ecc-ba7c-b88813699b1e)
)
(junction (at 110.49 120.65) (diameter 0) (color 0 0 0 0)
(uuid 7ae2aa44-15d3-4bd1-8dfe-eddf48f77775)
)
(junction (at 124.46 44.45) (diameter 0) (color 0 0 0 0)
(uuid 842b083d-d0a6-445b-8896-5b91c8d82a83)
)
(junction (at 31.75 172.72) (diameter 0) (color 0 0 0 0)
(uuid 89d0315d-e9be-4236-8f19-11c235a094c7)
)
(junction (at 110.49 92.71) (diameter 0) (color 0 0 0 0)
(uuid 8f2eac40-3dc1-432d-b41b-3172c42367b4)
)
(junction (at 134.62 44.45) (diameter 0) (color 0 0 0 0)
(uuid 9f50b0f9-ad4f-431b-a170-1f80eb335769)
)
(junction (at 134.62 92.71) (diameter 0) (color 0 0 0 0)
(uuid a0739845-a59c-4623-a58b-6b6ae3b6d697)
)
(junction (at 124.46 92.71) (diameter 0) (color 0 0 0 0)
(uuid a5da7895-661d-4ad3-87b7-86c80c4e004f)
)
(junction (at 71.12 76.2) (diameter 0) (color 0 0 0 0)
(uuid ac2309b1-3482-4cae-b050-50aeaf752d20)
)
(junction (at 110.49 44.45) (diameter 0) (color 0 0 0 0)
(uuid b4758e47-105a-4bed-8ea2-4fc064fbeb41)
)
(junction (at 134.62 138.43) (diameter 0) (color 0 0 0 0)
(uuid be14964e-acbe-4705-9ecd-3130598ac207)
)
(junction (at 219.71 105.41) (diameter 0) (color 0 0 0 0)
(uuid d68eb4b8-e4f7-424d-945d-6f70fde66f64)
)
(junction (at 110.49 138.43) (diameter 0) (color 0 0 0 0)
(uuid eac4fc2d-1b47-480c-8871-33620adb4fc6)
)
(wire (pts (xy 27.94 69.85) (xy 39.37 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 005258c2-0c0e-41cf-be22-e2ccea320779)
)
(wire (pts (xy 30.48 110.49) (xy 25.4 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 029ed928-70fd-4b13-bf33-c0af8394bd38)
)
(wire (pts (xy 120.65 74.93) (xy 124.46 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02e8cdd0-7f90-4ebc-af94-ff3f28cfce4d)
)
(wire (pts (xy 83.82 99.06) (xy 92.71 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04455e8a-fceb-4b22-972a-0485dbd35a42)
)
(wire (pts (xy 25.4 110.49) (xy 25.4 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0546af43-e8f6-4b9a-8bed-5e72d6ce22c8)
)
(wire (pts (xy 97.79 86.36) (xy 102.87 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05b80536-c824-48e2-b431-4c66ca019a63)
)
(wire (pts (xy 133.35 92.71) (xy 134.62 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09bbf7d0-ce0a-4a2e-aa4e-50dd1c65fc5b)
)
(wire (pts (xy 124.46 44.45) (xy 124.46 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a0db247-5bda-4558-9ec1-2908b419b480)
)
(wire (pts (xy 134.62 92.71) (xy 134.62 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a2326a4-b7e2-4cf1-8586-fee73f2a4e44)
)
(wire (pts (xy 83.82 105.41) (xy 83.82 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a69c622-f45b-4808-94ec-fcc30aec1a32)
)
(wire (pts (xy 134.62 92.71) (xy 137.16 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0be4a392-f582-4f2f-9af8-09a078ebdfca)
)
(wire (pts (xy 110.49 92.71) (xy 110.49 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f2c1464-85be-44aa-ad42-e745a9645657)
)
(wire (pts (xy 229.87 80.01) (xy 233.68 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10ff24f9-c489-4360-8891-6e882850f798)
)
(wire (pts (xy 71.12 91.44) (xy 71.12 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 128c89d1-d42f-4055-b507-4da790248046)
)
(wire (pts (xy 46.99 161.29) (xy 46.99 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12ca255e-982f-4a58-9b10-f712f262098d)
)
(wire (pts (xy 27.94 96.52) (xy 39.37 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1303a30c-7d59-4c00-9fc8-e01cd6f3183c)
)
(wire (pts (xy 224.79 88.9) (xy 227.33 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1392c3d5-0579-4943-b7ec-92b88c08f08c)
)
(wire (pts (xy 78.74 38.1) (xy 92.71 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18cc0234-3c2f-4b5b-bf00-736c33104791)
)
(wire (pts (xy 39.37 172.72) (xy 31.75 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a9bccf3-ad9a-483a-9019-ad77df566ee9)
)
(wire (pts (xy 16.51 102.87) (xy 16.51 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c6e3b60-dbfe-4387-9831-bc06ca3482bf)
)
(wire (pts (xy 83.82 50.8) (xy 92.71 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cadaeb9-3545-4fe6-a3a4-2356c49b2238)
)
(wire (pts (xy 124.46 74.93) (xy 124.46 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e0d5061-ff1f-4949-ac33-ca74f243c5d3)
)
(wire (pts (xy 71.12 92.71) (xy 110.49 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ea868e5-ad3b-43c9-8a7a-a79459de85b7)
)
(wire (pts (xy 120.65 120.65) (xy 124.46 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f787b47-407c-4acc-88c4-a30f9d3b8170)
)
(wire (pts (xy 247.65 25.4) (xy 247.65 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20a2b6e2-2823-4319-a9db-5b8cdc0825e1)
)
(wire (pts (xy 134.62 44.45) (xy 137.16 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20cd9272-2137-4423-99a0-b9d3033eeb83)
)
(wire (pts (xy 53.34 118.11) (xy 53.34 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21b5fc51-11d6-4d35-a773-2f0bf64cad8b)
)
(wire (pts (xy 54.61 172.72) (xy 46.99 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 239d0ad9-6bc4-4c2a-8cb1-70fdf28283be)
)
(wire (pts (xy 27.94 73.66) (xy 39.37 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2497a447-fd92-459f-a6bd-2204dbee6476)
)
(wire (pts (xy 110.49 138.43) (xy 110.49 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26e06011-cb53-4e07-8a04-6fa0c842d446)
)
(wire (pts (xy 71.12 76.2) (xy 81.28 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 275914ee-ed7e-4945-85ac-e02ac0d7951c)
)
(wire (pts (xy 67.31 76.2) (xy 71.12 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2849f81d-13d1-48f6-a494-c86b9334df1f)
)
(wire (pts (xy 124.46 92.71) (xy 125.73 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 295b6387-3944-4630-a735-9735d189d2ee)
)
(wire (pts (xy 133.35 44.45) (xy 134.62 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2aa5dac7-b3a0-4c02-b44d-e3eedc7974e1)
)
(wire (pts (xy 39.37 168.91) (xy 39.37 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b097970-125c-4994-9039-110a33599ff1)
)
(wire (pts (xy 124.46 138.43) (xy 124.46 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ba6b246-060c-4a64-8478-1e7413d79a66)
)
(wire (pts (xy 97.79 144.78) (xy 102.87 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bbd3941-36bc-42cc-90cb-8566b5279572)
)
(wire (pts (xy 81.28 44.45) (xy 110.49 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bd1bd48-a597-42fc-87b9-4beeaa79e44b)
)
(wire (pts (xy 134.62 138.43) (xy 134.62 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32091069-e3d1-4708-8b20-f579a5129a90)
)
(wire (pts (xy 134.62 138.43) (xy 137.16 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3349bf60-bc93-4d7f-b994-58bb00367ac9)
)
(wire (pts (xy 27.94 81.28) (xy 39.37 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34f5e802-790c-42c2-b47e-fe136a8051f9)
)
(wire (pts (xy 210.82 45.72) (xy 214.63 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 367ee023-5196-46b0-b37b-2f1fb6a7853e)
)
(wire (pts (xy 110.49 73.66) (xy 110.49 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36a5ea2d-870a-4372-b5ea-14d89749f789)
)
(wire (pts (xy 247.65 33.02) (xy 247.65 35.56))