forked from rusefi/hellen-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_test.kicad_sch
3705 lines (3620 loc) · 128 KB
/
driver_test.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 ca7f7929-8748-4098-b9d6-bb24efae8a59)
(paper "A4")
(lib_symbols
(symbol "Diode:1N5819WS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N5819WS" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2204281430_Guangdong-Hottech-1N5819WS_C191023.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode Schottky" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "40V 600mV@1A 1A SOD-323 Schottky Barrier Diodes, SOD-323" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*SOD?323*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N5819WS_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(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))
(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))
(fill (type none))
)
)
(symbol "1N5819WS_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 "chips:TLE9201SG" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -1.27 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TLE9201SG" (at 2.54 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:Infineon_PG-DSO-12-11" (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 "LCSC" "C2653438" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TLE9201SG_0_1"
(rectangle (start -2.54 0) (end 12.7 -27.94)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "TLE9201SG_1_1"
(pin passive line (at -5.08 -12.7 0) (length 2.54)
(name "DIR" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -20.32 0) (length 2.54)
(name "SCK" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 2.54)
(name "DIS" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 2.54)
(name "PWM" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -25.4 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 2.54)
(name "VSO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -25.4 0) (length 2.54)
(name "SO" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -2.54 180) (length 2.54)
(name "VS" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -7.62 180) (length 2.54)
(name "OUT1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -22.86 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -12.7 180) (length 2.54)
(name "OUT2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -22.86 0) (length 2.54)
(name "SI" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 2.54)
(name "CSN" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hellen-one-common:Cap" (pin_numbers hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at -3.81 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Cap" (at -2.54 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:C0603" (at -2.54 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -3.81 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Cap_1_0"
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 -2.032)
(xy -0.508 2.032)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.508 2.032)
(xy 0.508 -2.032)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.508 0)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(pin passive line (at -3.81 0 0) (length 2.54)
(name "" (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 "" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hellen-one-common:Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "P" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Pad" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "hellen-one-common:PAD-TH" (at 0 -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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Pad_1_1"
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hellen-one-common:Res" (pin_numbers hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 3.81 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Res" (at 5.08 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 3.81 -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 "LCSC" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Res_1_0"
(rectangle (start 2.54 -1.27) (end 7.62 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "knock:Module-knock-0.2" (in_bom yes) (on_board yes)
(property "Reference" "M" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Module-knock-0.2" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-knock-0.2:knock" (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_description" "Hellen-One Knock Pre-amplifier Module" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Module-knock-0.2_1_0"
(rectangle (start 33.02 0) (end 0 -17.78)
(stroke (width 0) (type default))
(fill (type background))
)
(pin passive line (at 17.78 7.62 270) (length 7.62)
(name "V5A" (effects (font (size 1.27 1.27))))
(number "E1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -25.4 90) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "E2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 40.64 -10.16 180) (length 7.62)
(name "OUT_KNOCK" (effects (font (size 1.27 1.27))))
(number "E3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -10.16 0) (length 7.62)
(name "IN_KNOCK" (effects (font (size 1.27 1.27))))
(number "W1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 7.62 270) (length 7.62)
(name "VREF" (effects (font (size 1.27 1.27))))
(number "W2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+12VA" (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" "+12VA" (at 0 3.556 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 \"+12VA\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12VA_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 "+12VA_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12VA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (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" "+3.3V" (at 0 3.556 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 \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_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 "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (at 0 3.556 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 \"+5V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (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" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (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 \"GND\" , ground" (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))
(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 "test:A4988_STEPPER_MOTOR_DRIVER_CARRIER" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U1" (at 0 23.114 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "A4988_STEPPER_MOTOR_DRIVER_CARRIER" (at 0 20.574 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "test:MODULE_A4988_STEPPER_MOTOR_DRIVER_CARRIER" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Pololu" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "DESCRIPTION" "Stepper motor controler; IC: A4988; 1A; Uin mot: 8÷35V" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PACKAGE" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PRICE" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/A4988%20STEPPER%20MOTOR%20DRIVER%20CARRIER/Pololu/view-part/?ref=eda" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/A4988%20STEPPER%20MOTOR%20DRIVER%20CARRIER/Pololu/view-part/?ref=snap" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "A4988 STEPPER MOTOR DRIVER CARRIER" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "Not in stock" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "AVAILABILITY" "Unavailable" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "\nStepper Motor Driver\n" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "A4988_STEPPER_MOTOR_DRIVER_CARRIER_0_0"
(rectangle (start -12.7 -17.78) (end 12.7 17.78)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -17.78 7.62 0) (length 5.08)
(name "~{ENABLE}" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 15.24 180) (length 5.08)
(name "VDD" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 5.08 180) (length 5.08)
(name "1B" (effects (font (size 1.016 1.016))))
(number "11" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 7.62 180) (length 5.08)
(name "1A" (effects (font (size 1.016 1.016))))
(number "12" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 2.54 180) (length 5.08)
(name "2A" (effects (font (size 1.016 1.016))))
(number "13" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 0 180) (length 5.08)
(name "2B" (effects (font (size 1.016 1.016))))
(number "14" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -12.7 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "15" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 12.7 180) (length 5.08)
(name "VMOT" (effects (font (size 1.016 1.016))))
(number "16" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -7.62 0) (length 5.08)
(name "MS1" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -10.16 0) (length 5.08)
(name "MS2" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -12.7 0) (length 5.08)
(name "MS3" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "~{RESET}" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 2.54 0) (length 5.08)
(name "~{SLEEP}" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 0 0) (length 5.08)
(name "STEP" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -2.54 0) (length 5.08)
(name "DIR" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -15.24 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
)
(junction (at 213.36 81.026) (diameter 0) (color 0 0 0 0)
(uuid 046c941b-320e-4a3d-bde6-b54d395feed7)
)
(junction (at 101.6 46.736) (diameter 0) (color 0 0 0 0)
(uuid 0e03fec4-4015-42c1-9e00-99093f565b40)
)
(junction (at 163.83 46.736) (diameter 0) (color 0 0 0 0)
(uuid 2bb4a79b-c768-4056-b480-37a86cc7a236)
)
(junction (at 229.87 58.166) (diameter 0) (color 0 0 0 0)
(uuid 2fe1a3ad-1402-4c40-8b17-c3339ef27e6c)
)
(junction (at 229.87 68.326) (diameter 0) (color 0 0 0 0)
(uuid 33600b9e-3716-47af-b53a-badb76779b9c)
)
(junction (at 83.82 46.736) (diameter 0) (color 0 0 0 0)
(uuid 3e4921e6-de4b-4933-8dfc-6e1736d42673)
)
(junction (at 91.948 115.316) (diameter 0) (color 0 0 0 0)
(uuid 4e22dc6c-3fba-4c1e-a9c1-b5c902414b0c)
)
(junction (at 185.42 68.326) (diameter 0) (color 0 0 0 0)
(uuid 4f470f81-398b-4538-ba10-61175ac6087f)
)
(junction (at 172.72 46.736) (diameter 0) (color 0 0 0 0)
(uuid 515a5887-a45d-4b2f-858f-df17e4fa79b7)
)
(junction (at 92.71 46.736) (diameter 0) (color 0 0 0 0)
(uuid 53d8ce1a-b18b-4856-a37a-8120f39549af)
)
(junction (at 119.38 46.736) (diameter 0) (color 0 0 0 0)
(uuid 5c05890b-ec85-4488-9e8f-c561b702da1d)
)
(junction (at 110.49 46.736) (diameter 0) (color 0 0 0 0)
(uuid 686591e8-0b08-4829-9648-0e7902c91af9)
)
(junction (at 185.42 73.406) (diameter 0) (color 0 0 0 0)
(uuid 82c190be-6827-4e7b-82b4-027bfb41fee4)
)
(junction (at 144.272 111.506) (diameter 0) (color 0 0 0 0)
(uuid 888c1885-54c8-4259-9cf1-ed4661c0e930)
)
(junction (at 40.132 135.636) (diameter 0) (color 0 0 0 0)
(uuid 8e3658bc-2bcb-48a6-acb0-f88c1104823e)
)
(junction (at 155.194 111.506) (diameter 0) (color 0 0 0 0)
(uuid 95a1788e-3d79-47ff-8717-8cef181b7c51)
)
(junction (at 213.36 83.566) (diameter 0) (color 0 0 0 0)
(uuid ae583af6-4a97-404f-b819-be628296c6ed)
)
(junction (at 137.16 46.736) (diameter 0) (color 0 0 0 0)
(uuid b1e3c138-501b-495a-b784-5ac9b5aad561)
)
(junction (at 146.05 46.736) (diameter 0) (color 0 0 0 0)
(uuid c48c4c66-e159-4552-aa2b-825d93463e4b)
)
(junction (at 133.35 111.506) (diameter 0) (color 0 0 0 0)
(uuid cb613f28-c44c-4e19-9a2c-a7f89ec62060)
)
(junction (at 128.27 46.736) (diameter 0) (color 0 0 0 0)
(uuid df93cb6b-db93-4d35-9151-1bf95400d184)
)
(junction (at 81.026 115.316) (diameter 0) (color 0 0 0 0)
(uuid e77c68e8-9ba6-4ee1-a881-92102176230f)
)
(junction (at 70.104 115.316) (diameter 0) (color 0 0 0 0)
(uuid ed898d8c-7eb9-45bf-a5b9-c4bde003dbbf)
)
(junction (at 193.04 86.106) (diameter 0) (color 0 0 0 0)
(uuid ef77adbb-e640-40bb-b6b9-077eca7c0cff)
)
(junction (at 154.94 46.736) (diameter 0) (color 0 0 0 0)
(uuid ffc8a05a-1558-4860-b56f-b8afe8def06c)
)
(no_connect (at 213.36 86.106) (uuid 7b486507-f3a7-4343-8a67-597caeb04dae))
(no_connect (at 258.572 106.934) (uuid 886fdf49-9a01-4a78-b1a4-c762b124af4e))
(no_connect (at 258.572 104.394) (uuid f0f55064-9a6f-4665-972c-3aabf6e63598))
(no_connect (at 258.572 96.774) (uuid fad1a0cb-c70b-4075-b642-52abff52ab07))
(wire (pts (xy 144.272 111.506) (xy 155.194 111.506))
(stroke (width 0) (type default))
(uuid 02e1c254-50d6-4272-80b7-59773ed9b205)
)
(wire (pts (xy 40.132 134.874) (xy 40.132 135.636))
(stroke (width 0) (type default))
(uuid 0e3d8eb7-df50-4cfb-8e86-ca8ed335a92c)
)
(wire (pts (xy 91.948 115.316) (xy 96.774 115.316))
(stroke (width 0) (type default))
(uuid 11962c4b-42d6-43bf-9aa6-ee7f91b778f7)
)
(wire (pts (xy 193.04 68.326) (xy 185.42 68.326))
(stroke (width 0) (type solid))
(uuid 133a86f3-97df-4b98-b9ad-3e963f725ac9)
)
(wire (pts (xy 213.36 63.246) (xy 223.52 63.246))
(stroke (width 0) (type default))
(uuid 149abaaf-ba7a-44c5-b032-362e8f2da240)
)
(wire (pts (xy 155.194 111.506) (xy 160.02 111.506))
(stroke (width 0) (type default))
(uuid 192b261f-f984-47eb-8929-e0c23d0e7df6)
)
(wire (pts (xy 133.35 113.03) (xy 133.35 111.506))
(stroke (width 0) (type default))
(uuid 1c178ae9-2df1-41b1-9bda-d8b7cc5a94c8)
)
(wire (pts (xy 193.04 83.566) (xy 193.04 86.106))
(stroke (width 0) (type default))
(uuid 1e2f6340-d0bd-408a-b4ea-faffe0ad07c1)
)
(wire (pts (xy 185.42 73.406) (xy 193.04 73.406))
(stroke (width 0) (type default))
(uuid 2207a679-6f22-453e-b74a-f84ccf2cb226)
)
(wire (pts (xy 213.36 70.866) (xy 237.49 70.866))
(stroke (width 0) (type default))
(uuid 23b937e4-ed6a-4e3b-86d3-4313ae541924)
)
(wire (pts (xy 213.36 78.486) (xy 213.36 81.026))
(stroke (width 0) (type default))
(uuid 27a89823-8049-4bd8-8020-54a9b4524853)
)
(wire (pts (xy 119.38 46.736) (xy 128.27 46.736))
(stroke (width 0) (type default))
(uuid 2fde9fe7-6c6d-48ec-8af0-01d12d7032d1)
)
(wire (pts (xy 172.72 46.736) (xy 193.04 46.736))
(stroke (width 0) (type default))
(uuid 3018309e-e35a-4dcb-954e-b1e453ff1090)
)
(wire (pts (xy 261.366 99.314) (xy 258.572 99.314))
(stroke (width 0) (type default))
(uuid 32926041-40e2-4a6d-bd10-87f331a7fab3)
)
(wire (pts (xy 223.52 58.166) (xy 229.87 58.166))
(stroke (width 0) (type default))
(uuid 3aed1832-cf25-4106-a49b-6eedb7a30092)
)
(wire (pts (xy 76.2 46.736) (xy 83.82 46.736))
(stroke (width 0) (type default))
(uuid 3cf447f8-a4f1-4dd0-927b-4e762d9e1070)
)
(wire (pts (xy 48.768 135.636) (xy 40.132 135.636))
(stroke (width 0) (type default))
(uuid 3e28c67a-a546-49e9-95f4-52f6614f5923)
)
(wire (pts (xy 70.104 116.84) (xy 70.104 115.316))
(stroke (width 0) (type default))
(uuid 40e341d2-6b33-441d-b5df-ed818351782a)
)
(wire (pts (xy 144.272 111.506) (xy 144.272 114.046))
(stroke (width 0) (type default))
(uuid 4350bcf4-c0e9-469d-819a-125bb1c789d8)
)
(wire (pts (xy 40.132 135.636) (xy 40.132 136.652))
(stroke (width 0) (type default))
(uuid 45bf785b-19c0-4976-9906-9610223aed8b)
)
(wire (pts (xy 213.36 68.326) (xy 229.87 68.326))
(stroke (width 0) (type default))
(uuid 4a9bfd0c-84dc-4e85-ade4-3e0b0d3b9b6d)
)
(wire (pts (xy 128.27 46.736) (xy 137.16 46.736))
(stroke (width 0) (type default))
(uuid 4db0e2c0-6125-46c9-bb21-07990c3fc83f)
)
(wire (pts (xy 146.05 46.736) (xy 154.94 46.736))
(stroke (width 0) (type default))
(uuid 55f40f0a-35b9-48ac-8155-b1e1bc788cb6)
)
(wire (pts (xy 181.61 73.406) (xy 185.42 73.406))
(stroke (width 0) (type default))
(uuid 562b36ad-99da-49a5-b46e-a4765ac19fed)
)
(wire (pts (xy 101.6 46.736) (xy 110.49 46.736))
(stroke (width 0) (type default))
(uuid 56bbb7b7-001c-498f-aac0-413215f854ff)
)
(wire (pts (xy 81.026 115.316) (xy 81.026 117.856))
(stroke (width 0) (type default))
(uuid 615dc984-7d92-4f70-8681-226789240ced)
)
(wire (pts (xy 110.49 46.736) (xy 119.38 46.736))
(stroke (width 0) (type default))
(uuid 63f7b47e-81b5-4caa-934b-b6e724e15d85)
)
(wire (pts (xy 154.94 46.736) (xy 163.83 46.736))
(stroke (width 0) (type default))
(uuid 70389a54-b655-4c06-ae5d-b265ef966a1c)
)
(wire (pts (xy 163.83 46.736) (xy 172.72 46.736))
(stroke (width 0) (type default))
(uuid 7a48534d-0368-4211-a392-cf17e7a0c582)
)
(wire (pts (xy 137.16 46.736) (xy 146.05 46.736))
(stroke (width 0) (type default))
(uuid 7e43171b-c18f-45d8-aebe-a1b03278611c)
)
(wire (pts (xy 193.04 46.736) (xy 193.04 63.246))
(stroke (width 0) (type default))
(uuid 8097f3bf-8322-40a6-84d1-6e680a0e52de)
)
(wire (pts (xy 185.42 68.326) (xy 185.42 63.246))
(stroke (width 0) (type default))
(uuid 84c97041-87a2-4010-9b64-3951a6373611)
)
(wire (pts (xy 70.104 115.316) (xy 81.026 115.316))
(stroke (width 0) (type default))
(uuid 8b2bc1b7-a654-454d-8244-77c8b57cdebf)
)
(wire (pts (xy 213.36 81.026) (xy 213.36 83.566))
(stroke (width 0) (type default))
(uuid 8df10070-4b4f-4d43-bf58-f9485efcbb4d)
)
(wire (pts (xy 91.948 115.316) (xy 91.948 117.094))
(stroke (width 0) (type default))
(uuid 92fe6349-e851-4f77-93c9-694fc608ee1e)
)
(wire (pts (xy 155.194 111.506) (xy 155.194 110.49))
(stroke (width 0) (type default))
(uuid 96c5d84d-f365-4f35-8554-d6161b588974)
)
(wire (pts (xy 48.768 138.938) (xy 48.768 135.636))
(stroke (width 0) (type default))
(uuid 9b4b6027-4e8e-4275-be84-c20516010975)
)
(wire (pts (xy 185.42 68.326) (xy 181.61 68.326))
(stroke (width 0) (type solid))
(uuid 9e667d51-d2cf-4c4d-a7c1-949bfbeff88b)
)
(wire (pts (xy 229.87 58.166) (xy 237.49 58.166))
(stroke (width 0) (type default))
(uuid 9f9acc58-197b-4d65-ba82-e0ea5af813a5)
)
(wire (pts (xy 193.04 86.106) (xy 193.04 88.646))
(stroke (width 0) (type default))
(uuid a839a18f-b6b4-4b28-9013-652f5a5c678e)
)
(wire (pts (xy 91.948 115.316) (xy 91.948 114.3))
(stroke (width 0) (type default))
(uuid afce688c-b064-4644-b6d0-2531a9b1a954)
)
(wire (pts (xy 155.194 111.506) (xy 155.194 113.284))
(stroke (width 0) (type default))
(uuid b0514ebc-98a2-486c-97af-87561dfeac2c)
)
(wire (pts (xy 133.35 111.506) (xy 144.272 111.506))
(stroke (width 0) (type default))
(uuid bc3999ba-b3c4-4f91-a31a-d9285ec82bf9)
)
(wire (pts (xy 185.42 73.406) (xy 185.42 74.676))
(stroke (width 0) (type default))
(uuid c01d07f8-13fb-4178-b050-46c3a83bcd3a)
)
(wire (pts (xy 83.82 46.736) (xy 92.71 46.736))
(stroke (width 0) (type default))
(uuid c957255c-fe69-4c92-a1d5-516f9e441850)
)
(wire (pts (xy 81.026 115.316) (xy 91.948 115.316))
(stroke (width 0) (type default))
(uuid ccadd956-b1f9-43fc-994e-efc5f2ec5e1a)
)
(wire (pts (xy 223.52 63.246) (xy 223.52 58.166))
(stroke (width 0) (type default))
(uuid d613727d-2a7f-44f5-89c6-bdc99ea12c19)
)
(wire (pts (xy 70.104 127) (xy 70.104 125.476))
(stroke (width 0) (type default))
(uuid d954a117-61cb-49d6-93e0-97577f00ef97)
)
(wire (pts (xy 133.35 123.19) (xy 133.35 121.666))
(stroke (width 0) (type default))
(uuid e5d3c4c2-780e-46d1-89cb-6919e4af34ca)
)
(wire (pts (xy 92.71 46.736) (xy 101.6 46.736))
(stroke (width 0) (type default))
(uuid ed7ccc67-be36-451e-bb6f-dc988da18672)
)
(wire (pts (xy 229.87 68.326) (xy 237.49 68.326))
(stroke (width 0) (type default))
(uuid f24665d2-87e3-472b-b7ff-1dc772f73a79)
)
(wire (pts (xy 213.36 73.406) (xy 236.728 73.406))
(stroke (width 0) (type default))
(uuid f7f50b67-5c14-4420-874f-30c99dd4661b)
)
(label "OUT-" (at 223.012 122.174 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1021fa38-249d-47de-a6eb-a88ac6e9a7c2)
)
(label "PWM" (at 237.49 70.866 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 11d0dbb5-71a3-4e3e-8c5c-e03d9ee23d2a)
)
(label "PPS2_IN" (at 123.19 111.506 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1f568577-1132-4605-86ac-7ca19eb81a7c)
)
(label "DIS" (at 237.49 68.326 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 24ace976-dd85-4489-bf15-0482c61df9f8)
)
(label "DIR" (at 236.728 73.406 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3c80b773-ef13-423e-addc-5e1fb5af91f4)
)
(label "PWM" (at 258.572 124.714 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4b0099c5-d0a4-49ca-b6c5-1f800a43898d)
)
(label "TPS2_IN" (at 59.944 115.316 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 526d7361-75b4-4a26-9da0-bb9213673ebc)
)
(label "OUT+" (at 181.61 73.406 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5db09597-3259-4f65-a6b4-a9c5c1c9d836)
)
(label "PPS2_IN" (at 223.012 109.474 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 67c697f6-14d0-4dee-8c3c-88324f7b2c3d)
)
(label "VREF" (at 57.15 155.702 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6ce64e93-4b51-4a5f-9ece-24858600c97c)
)
(label "TPS2_IN" (at 223.012 106.934 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6f94988e-6e87-463c-8bbd-25c42f8bc7c0)
)
(label "DIS" (at 258.572 127.254 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7b760bd3-76a3-4529-af30-5e58c7499b93)
)
(label "DIR" (at 261.366 99.314 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 834fcc11-3159-4f59-9c09-6cb37a22d618)
)
(label "VREF" (at 128.016 134.62 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 856f4e2a-eb1b-43f0-b9e3-d82dfa533c6b)
)
(label "OUT-" (at 181.61 68.326 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8c307f46-a315-4bb5-9bbc-21495bdc0d6a)
)
(label "OUT+" (at 223.012 124.714 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d8da47d6-7b4d-467b-806f-1d46acf6ca16)
)
(label "VREF" (at 48.768 135.636 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fdab5252-f392-4c8e-afa4-d593d72339a7)