-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDRV8870-breakout-board.kicad_pcb
4140 lines (4121 loc) · 168 KB
/
DRV8870-breakout-board.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 117.1 0)
(grid_origin 117.1 75.7)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "BOM/")
)
)
(net 0 "")
(net 1 "VMOTORS")
(net 2 "Net-(U102-ISEN)")
(net 3 "GND")
(net 4 "OUT1")
(net 5 "OUT2")
(net 6 "+3V3")
(net 7 "IN2")
(net 8 "IN1")
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tstamp 2eb77eb0-a40f-4eaa-83d5-4b52c71cdb0b)
(at 140.6 112.2)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "LCSC Part #" "No need")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/8ad828df-69fb-4808-92c2-a0d3b0c6e3c5")
(zone_connect 2)
(attr exclude_from_pos_files)
(fp_text reference "H104" (at 0 -3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c156fda-6256-4d65-922d-c0d956ab6a70)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a033be90-2bf5-4095-b9d0-046ada8b7d27)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18844424-6be5-469d-bcb3-49c09142a478)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 87c63596-1f32-4d2d-91ee-007edddc9262))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 17bd96eb-e1f7-42c7-a853-8a553c2c65b3))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "1") (pintype "input") (tstamp b9f03ee3-b9d8-404b-9324-283dfb43a8f9))
)
(footprint "VsReality_Footprints:JILN JL126-50002G01" (layer "F.Cu")
(tstamp 32ab96d6-7203-4049-b774-296361a6b0c3)
(at 130.6 79.8)
(descr "LCSC Part #C394556")
(property "LCSC Part #" "C394556")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/a881b915-50b9-4a21-9b57-933015d007b1")
(zone_connect 2)
(attr through_hole)
(fp_text reference "J103" (at -3.9 -4.9 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 41c8d31e-0d55-4de0-a477-5a43b77d76d1)
)
(fp_text value "M0_CONN" (at 2.8 7.2 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 903a46b7-bf14-4f3d-b8ee-0fdecb63a196)
)
(fp_text user "${REFERENCE}" (at -0.2 5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e4699ea-efaf-43cb-99be-e4d8c0f9144b)
)
(fp_line (start -5.5 3.8) (end -5.5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e08f44cc-eae1-4254-ac83-999667270503))
(fp_line (start -5 -4) (end -5.5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 8956dea1-01f5-426a-9dc8-5843ab2c3cb6))
(fp_line (start -5 -4) (end -5 3.8)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp b78f1313-6343-47a0-b7be-e954005c05e2))
(fp_line (start -5 -4) (end 5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 600074a9-f2f5-4f32-b0c0-81b018da8fcc))
(fp_line (start -5 3.8) (end -5.5 3.8)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 153bb2a7-e181-474f-be9b-91e7849446a3))
(fp_line (start -5 3.8) (end 5 3.8)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f74fd103-a626-4e79-b06b-9b8b0ffca206))
(fp_line (start 5 -3.7) (end -5 -3.7)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp cdab3011-af5b-43d3-978e-70772b0362cf))
(fp_line (start 5 3.8) (end 5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 2470e9da-9a87-49e8-bc53-f6080bc56892))
(pad "1" thru_hole rect (at -2.5 0) (size 3 3) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "Pin_1") (pintype "passive") (zone_connect 2) (tstamp 3e8ebd17-f36a-43ea-a35c-0bc324e55c66))
(pad "2" thru_hole circle (at 2.5 0) (size 3 3) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 1 "VMOTORS") (pinfunction "Pin_2") (pintype "passive") (tstamp cc99d93b-8c93-4080-81f8-6e162b38662d))
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (layer "F.Cu")
(tstamp 3bea0d10-a57c-4141-bd2f-a2249431fa06)
(at 125.885113 97.78 180)
(descr "CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor")
(property "LCSC Part #" "In stock")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(path "/4ad5ee79-596a-42a5-b55f-938db6aab371")
(attr through_hole)
(fp_text reference "C101" (at 0.985113 -3.52) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e6237159-a8ff-42ef-9ab1-3d55395934fc)
)
(fp_text value "47u" (at 1 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 481d6fbb-3447-4bec-b368-3a52409ffd08)
)
(fp_text user "${REFERENCE}" (at 1 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99f52969-331a-4ab0-a059-1cb6882b80c9)
)
(fp_line (start -1.804775 -1.475) (end -1.304775 -1.475)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5ce7c00-fc92-4d3b-9257-215836a3700a))
(fp_line (start -1.554775 -1.725) (end -1.554775 -1.225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c97d109e-b9a2-4933-9db1-2989f56675a7))
(fp_line (start 1 -2.58) (end 1 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5ea5b57-ddd3-44cf-9e3b-ff0827dcbf33))
(fp_line (start 1 1.04) (end 1 2.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0225764-cd93-430c-885a-30a6d82a3220))
(fp_line (start 1.04 -2.58) (end 1.04 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e9fe9d1-1a28-45b2-a25d-5bf90d84c82e))
(fp_line (start 1.04 1.04) (end 1.04 2.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3e9715f-bcd1-4c45-b583-7017ca563653))
(fp_line (start 1.08 -2.579) (end 1.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82ee1464-f9ef-41b0-ac35-ccdb0b0417b4))
(fp_line (start 1.08 1.04) (end 1.08 2.579)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec8d7e24-318a-434b-b04a-68cb26b525ee))
(fp_line (start 1.12 -2.578) (end 1.12 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be89f597-716d-4c2c-a53d-a34f8a599daa))
(fp_line (start 1.12 1.04) (end 1.12 2.578)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25aa7879-2a6a-436b-980d-b6c3199f91a0))
(fp_line (start 1.16 -2.576) (end 1.16 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc514ea8-d95f-4613-9d31-6e3d26512eeb))
(fp_line (start 1.16 1.04) (end 1.16 2.576)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66825e56-b0d7-44aa-a823-63c478a6c823))
(fp_line (start 1.2 -2.573) (end 1.2 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4aa685b-75b5-4eab-9184-ced59d6e03bb))
(fp_line (start 1.2 1.04) (end 1.2 2.573)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c971633e-0abb-4eba-9fa5-008146e4f6ea))
(fp_line (start 1.24 -2.569) (end 1.24 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 080d9119-45ce-4a59-97ee-c8ccf4b9895a))
(fp_line (start 1.24 1.04) (end 1.24 2.569)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb00945b-b7cb-4eec-9190-5191b5704953))
(fp_line (start 1.28 -2.565) (end 1.28 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75d98e6f-90ff-411b-beb6-486473bc94ec))
(fp_line (start 1.28 1.04) (end 1.28 2.565)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86196fa2-c688-4981-8713-8b944b7a094f))
(fp_line (start 1.32 -2.561) (end 1.32 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f9a4c18-f08f-45d2-bed0-beee1609b65b))
(fp_line (start 1.32 1.04) (end 1.32 2.561)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e845506c-6a33-4194-ac01-d77d99b5c3e8))
(fp_line (start 1.36 -2.556) (end 1.36 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2504ea10-82cd-42be-948f-6e7a7ba278a7))
(fp_line (start 1.36 1.04) (end 1.36 2.556)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c01384b5-3610-44f3-b252-7a27f593b003))
(fp_line (start 1.4 -2.55) (end 1.4 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33c97229-2d6e-4098-ae73-0a39ba62ccd7))
(fp_line (start 1.4 1.04) (end 1.4 2.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70460ad5-53c8-4c5d-bcc5-84fe10f56078))
(fp_line (start 1.44 -2.543) (end 1.44 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8a33c10-6227-4bb3-8cc3-f2154556c57a))
(fp_line (start 1.44 1.04) (end 1.44 2.543)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 030a159e-2ac3-4c17-921f-e181da48495d))
(fp_line (start 1.48 -2.536) (end 1.48 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c68b572d-4ef0-42fc-a6c6-201f4bcbda87))
(fp_line (start 1.48 1.04) (end 1.48 2.536)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7bffabd-b80d-466e-8101-9c3a8135feeb))
(fp_line (start 1.52 -2.528) (end 1.52 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1525c921-1628-446d-a748-af81c2b871d1))
(fp_line (start 1.52 1.04) (end 1.52 2.528)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c844a3e-b6f9-473b-a6a4-920c533735e2))
(fp_line (start 1.56 -2.52) (end 1.56 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9187449-3c09-4609-933b-17bc322e8266))
(fp_line (start 1.56 1.04) (end 1.56 2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e308b2c2-89ce-409e-9c3f-d56091d0a322))
(fp_line (start 1.6 -2.511) (end 1.6 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5b88d8f-95e7-43c6-83ea-62b02f391987))
(fp_line (start 1.6 1.04) (end 1.6 2.511)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 176aabef-00f5-4314-bcf9-0e6c1f49e2fe))
(fp_line (start 1.64 -2.501) (end 1.64 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2431649b-d4c9-45dd-a2ac-3ca1ca4fdb43))
(fp_line (start 1.64 1.04) (end 1.64 2.501)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f68753f0-3c47-48c4-8391-ed9131149bf2))
(fp_line (start 1.68 -2.491) (end 1.68 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f102cd24-3bd5-4335-b74f-af8c42a88e46))
(fp_line (start 1.68 1.04) (end 1.68 2.491)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c66b50e-6930-48bf-b0d2-36fb74ca5697))
(fp_line (start 1.721 -2.48) (end 1.721 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d137b739-7c36-43f5-b8bd-0ca5c8101c23))
(fp_line (start 1.721 1.04) (end 1.721 2.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c22b859b-f7b6-41de-9420-e53c3d5f8d3f))
(fp_line (start 1.761 -2.468) (end 1.761 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4157eb9-0603-4b7e-a139-3ddfe2310a57))
(fp_line (start 1.761 1.04) (end 1.761 2.468)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fd772dd-b264-4d45-9cfa-8271247d031a))
(fp_line (start 1.801 -2.455) (end 1.801 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28922ce0-79e2-4579-a170-9f1b73b12fc9))
(fp_line (start 1.801 1.04) (end 1.801 2.455)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3bfdde0-221b-4894-8526-e02eb3368524))
(fp_line (start 1.841 -2.442) (end 1.841 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03982c7b-26da-4e8b-83e9-f54fd1ac6bb2))
(fp_line (start 1.841 1.04) (end 1.841 2.442)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cca105cd-e61b-4721-91ca-e229865bcbe1))
(fp_line (start 1.881 -2.428) (end 1.881 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a63235ad-7607-464a-9855-7d4a0bcdcdde))
(fp_line (start 1.881 1.04) (end 1.881 2.428)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b605c85-8157-4c61-b662-e68a5cbd54db))
(fp_line (start 1.921 -2.414) (end 1.921 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e649a4b-1024-48dc-8ac9-0206d30e3b78))
(fp_line (start 1.921 1.04) (end 1.921 2.414)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75ad767d-890b-40c3-969a-23321562f8c3))
(fp_line (start 1.961 -2.398) (end 1.961 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fcd6775-3417-4ac6-8317-f1983f35f8ef))
(fp_line (start 1.961 1.04) (end 1.961 2.398)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcc2e6b4-68aa-4b03-a2c0-e0de71dc4a5c))
(fp_line (start 2.001 -2.382) (end 2.001 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e09e64bb-656d-4e2d-9d7d-0f9bbde2e623))
(fp_line (start 2.001 1.04) (end 2.001 2.382)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb9b9549-87e0-42eb-b195-0c07ff018292))
(fp_line (start 2.041 -2.365) (end 2.041 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33e22486-c191-442a-be0f-2be4262733cf))
(fp_line (start 2.041 1.04) (end 2.041 2.365)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b394b66c-22df-47b7-9232-6ee7f4d7f3f1))
(fp_line (start 2.081 -2.348) (end 2.081 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0692137f-1dce-4c8e-9f45-91295759e914))
(fp_line (start 2.081 1.04) (end 2.081 2.348)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1caa62d-5e00-4719-9fc9-3d736faf0271))
(fp_line (start 2.121 -2.329) (end 2.121 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a14a59fc-e23e-4f7a-abd0-19283653c79c))
(fp_line (start 2.121 1.04) (end 2.121 2.329)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bef2ecc-ef1c-4a03-a172-b3ab3f4ece0f))
(fp_line (start 2.161 -2.31) (end 2.161 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca591144-3c0a-4a85-b916-4718885fca1d))
(fp_line (start 2.161 1.04) (end 2.161 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0312b992-e892-4930-bca1-14955fcfbbbf))
(fp_line (start 2.201 -2.29) (end 2.201 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 325a1bc6-1c30-403e-90a5-6d24817f3e95))
(fp_line (start 2.201 1.04) (end 2.201 2.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7ccf933-450a-4a6d-96c5-32c6021a26a7))
(fp_line (start 2.241 -2.268) (end 2.241 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b09f9ac5-cfbc-4956-a1e0-4032bbabd5c2))
(fp_line (start 2.241 1.04) (end 2.241 2.268)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9220c0b5-81fd-4157-a951-9af5a073362a))
(fp_line (start 2.281 -2.247) (end 2.281 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62e51d1d-d14e-47c6-b465-0a572125f6a7))
(fp_line (start 2.281 1.04) (end 2.281 2.247)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6db16705-6603-450c-bd02-53bbb11a7d63))
(fp_line (start 2.321 -2.224) (end 2.321 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 053d8cdf-192a-4052-8a76-4f8562f6f312))
(fp_line (start 2.321 1.04) (end 2.321 2.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b35c2c35-bc09-4f67-95bc-034a9e847611))
(fp_line (start 2.361 -2.2) (end 2.361 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89345a41-25c3-4f99-8dbd-bd0d6fa240cf))
(fp_line (start 2.361 1.04) (end 2.361 2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd0c87cd-ff55-4127-a485-5329ad80aeb4))
(fp_line (start 2.401 -2.175) (end 2.401 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58e30fbb-bdd6-4f4f-bfe3-5b9db19d6d51))
(fp_line (start 2.401 1.04) (end 2.401 2.175)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8bd6cc5-dd67-4c69-b334-2fd76f005337))
(fp_line (start 2.441 -2.149) (end 2.441 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2de0c031-1901-4b28-b7ad-532cb0ee6e38))
(fp_line (start 2.441 1.04) (end 2.441 2.149)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fd1dd8e-941d-43cd-bdb1-ce4be8bbc55b))
(fp_line (start 2.481 -2.122) (end 2.481 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1970e4b7-575b-4eed-a2a8-5aff3cc580b2))
(fp_line (start 2.481 1.04) (end 2.481 2.122)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59b1e0a6-a7dd-4ff5-a6e8-0184c941ae24))
(fp_line (start 2.521 -2.095) (end 2.521 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b59e517f-1599-4e58-b540-343038e84fea))
(fp_line (start 2.521 1.04) (end 2.521 2.095)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06695907-7071-414a-9570-5c8b0113412d))
(fp_line (start 2.561 -2.065) (end 2.561 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4bd24e87-eda2-4c2d-bebb-b9c9253d6cb8))
(fp_line (start 2.561 1.04) (end 2.561 2.065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb5a7043-7b2f-4749-a6c3-cb83bc1299a1))
(fp_line (start 2.601 -2.035) (end 2.601 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ddce429-8ded-4c0b-aa9f-7511f88e1693))
(fp_line (start 2.601 1.04) (end 2.601 2.035)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb1ce711-662b-4ffc-8160-cc17799ff353))
(fp_line (start 2.641 -2.004) (end 2.641 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6165a7e4-4a35-4bf5-933b-3a39279df646))
(fp_line (start 2.641 1.04) (end 2.641 2.004)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5397183e-37d6-4762-bd1e-7b1a5874b2a7))
(fp_line (start 2.681 -1.971) (end 2.681 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b462750-4ba3-40a8-abfb-fa3efa616717))
(fp_line (start 2.681 1.04) (end 2.681 1.971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1381e3e-1d0e-404f-a661-04919adb9ba8))
(fp_line (start 2.721 -1.937) (end 2.721 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d670549-f246-4085-8a81-ed2d494ac9c7))
(fp_line (start 2.721 1.04) (end 2.721 1.937)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c9694ff-9a47-4375-a393-fd1057e39896))
(fp_line (start 2.761 -1.901) (end 2.761 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e53bb45-52b1-4f93-ae18-ad72720df791))
(fp_line (start 2.761 1.04) (end 2.761 1.901)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f96da4a-a5f5-4ab5-9892-cd157615f9d6))
(fp_line (start 2.801 -1.864) (end 2.801 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d761a162-098d-446b-8153-c140eb093274))
(fp_line (start 2.801 1.04) (end 2.801 1.864)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ce2e5a6-b424-48ae-a492-d364b03fba98))
(fp_line (start 2.841 -1.826) (end 2.841 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdf91d01-f6a1-41c9-8086-f1d448783ac4))
(fp_line (start 2.841 1.04) (end 2.841 1.826)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2bf3659-dcde-4b18-a069-2e925d03f0a3))
(fp_line (start 2.881 -1.785) (end 2.881 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a88740a4-c42c-4c01-924a-19d72b64b0dc))
(fp_line (start 2.881 1.04) (end 2.881 1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7811c3cd-39b6-40ea-969f-b377066fa4d3))
(fp_line (start 2.921 -1.743) (end 2.921 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac297daa-8f25-405c-ac88-55a1e32b46d3))
(fp_line (start 2.921 1.04) (end 2.921 1.743)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c569c41-aa80-4fbb-849f-22a73c03eea7))
(fp_line (start 2.961 -1.699) (end 2.961 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5c9dcc3-5fe0-4adc-9021-584fe31f0c84))
(fp_line (start 2.961 1.04) (end 2.961 1.699)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efe38cdb-8930-4849-a274-f4e4c3a12a62))
(fp_line (start 3.001 -1.653) (end 3.001 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4658a67a-8c17-4cfb-a529-af412b1ac351))
(fp_line (start 3.001 1.04) (end 3.001 1.653)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cae89c3-6a0c-485d-9d1b-75611cf1d354))
(fp_line (start 3.041 -1.605) (end 3.041 1.605)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9516355-2e09-4ffa-a0b3-ab4a043b74df))
(fp_line (start 3.081 -1.554) (end 3.081 1.554)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30c90d86-d0a6-451b-aa53-3835e93bf062))
(fp_line (start 3.121 -1.5) (end 3.121 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67edc3c4-af81-4647-bede-3500e360cd4b))
(fp_line (start 3.161 -1.443) (end 3.161 1.443)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9b490f4-346a-4403-bc53-8faa93614e61))
(fp_line (start 3.201 -1.383) (end 3.201 1.383)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81f1c9d7-75c8-4199-a96a-c0cdc40db7a1))
(fp_line (start 3.241 -1.319) (end 3.241 1.319)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4a85d4f-3d53-4767-817a-5bf5f1fe1eb4))
(fp_line (start 3.281 -1.251) (end 3.281 1.251)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e27b43f2-7d6c-417b-8caf-93d02ac3c2ad))
(fp_line (start 3.321 -1.178) (end 3.321 1.178)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63b0b8a1-f3ae-4242-ae13-ea8dba598cf1))
(fp_line (start 3.361 -1.098) (end 3.361 1.098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b12d326-5588-480c-a151-c19b1e96cc60))
(fp_line (start 3.401 -1.011) (end 3.401 1.011)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6648f391-3901-45e4-ba23-079592e99bbb))
(fp_line (start 3.441 -0.915) (end 3.441 0.915)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 562c6f6a-d59b-4700-b370-43ba539d69d8))
(fp_line (start 3.481 -0.805) (end 3.481 0.805)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 394e668b-111f-4a34-b0c9-963e609b264c))
(fp_line (start 3.521 -0.677) (end 3.521 0.677)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71366acd-0f5d-4a58-95da-60b152ba4fcb))
(fp_line (start 3.561 -0.518) (end 3.561 0.518)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19e263db-bba0-4fb9-9c3f-6d5f64408882))
(fp_line (start 3.601 -0.284) (end 3.601 0.284)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c5a918e-89e6-4568-9f1a-1ba5f01c5e3a))
(fp_circle (center 1 0) (end 3.62 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a1cba5b0-39ae-422d-aa20-51dea7baf81d))
(fp_circle (center 1 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp db434ea4-6f77-461f-849d-4d48dc2d8fd7))
(fp_line (start -1.133605 -1.0875) (end -0.633605 -1.0875)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20ab0059-7fd0-49a7-86a2-5bcbd8a79913))
(fp_line (start -0.883605 -1.3375) (end -0.883605 -0.8375)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a7bd75a-18c9-40b0-b9ff-014465aa537a))
(fp_circle (center 1 0) (end 3.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp bcd1de83-74fa-429e-af27-e65fca7aa38a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "VMOTORS") (pintype "passive") (tstamp 7291c999-1896-4673-b9d1-ba8834e697c4))
(pad "2" thru_hole circle (at 2 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pintype "passive") (tstamp 8e85aafd-265e-4725-a6e3-d264779563ae))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 458cd799-c6ee-48e5-aa14-05ea5d839acb)
(at 119.1 87.9)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "LCSC Part #" "In stock")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/63723732-28ab-4659-82d8-51c1182cb3f8")
(attr through_hole)
(fp_text reference "J104" (at 0 -2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b101bb6-7c33-4710-87ca-2dea35dfbe74)
)
(fp_text value "Conn_01x02_Pin" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 049a40fb-7463-413e-b53f-88229f6587e1)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e78a8cb5-ce38-46f4-955f-e680aadaaccd)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60892d9a-1bf9-4741-aab4-19cd47499b6e))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7be04a44-61f6-4d1b-bf90-43e5417ef7ea))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a899068e-c4ba-4be8-9e38-920036a4fcf2))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e854544f-6333-4b25-b9ff-167e45d5e1f9))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5a145ab-b568-4230-9fc2-6289960fe8cc))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9461fdc-e14c-4ee9-92f5-f9cf40c4e15e))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3a40ff1-c811-436e-ab2f-c3fe8ef3d331))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06fbc84a-ca6e-4e27-86bc-3fa5ecb3106f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00f27b28-3f6c-40a3-816b-6a5334a61c17))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc0f2b8c-569d-4301-aac0-f17041bbdd4b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b8b1afc-c2ae-489e-9859-04fe264c1a5b))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70d2c947-32b5-4022-8b26-2754091681d0))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ddc9949-15f9-4194-837e-bd4b0fbfad44))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp beedf64b-9bdc-4a31-b7e5-a7cef633b4b6))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35c4871d-dc0e-48c7-b0d4-14f5d52a8c76))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 60b4af64-4015-4b3b-9d41-ca350054c472))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 6a83ce60-49dd-4f97-b562-6d5db411e014))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 5303882f-0b7e-4c30-8688-d30305e84492)
(at 138.4 101.525 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC Part #" "C45879")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/24f9ae5c-ea55-4c77-9e65-792fc98ddbac")
(attr smd)
(fp_text reference "R104" (at -0.075 1.7 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1990ed02-fffa-46a7-beb4-54ec8053377a)
)
(fp_text value "0.15" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 576c9579-a155-4e67-b1d3-faf02d17f91b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4093097c-7a8a-495a-bb64-2d6f1086a292)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c9ea81c-06f5-46bc-a085-d901dbb1cda6))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59ed42de-02bf-4992-a2f5-b6cc94c5d9a5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7925afc-ee43-4b8b-a3af-b1a9c35f1697))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8ed9ec2-16c0-4978-93bb-0e94bea150fe))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a8d73c1-1a5d-4575-9cb1-fdc90631dde9))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b2f1140-5228-4382-9895-d1c15b37c800))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9d2f03b-1b50-4fc8-b86c-2c53278b2fc9))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b913783-522d-45e7-ad20-76e0bd634028))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a21df76-0176-4b19-85b7-7e0f6a68b0c7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 298cceeb-304c-4528-b7b5-5f8db7b9f28a))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(U102-ISEN)") (pintype "passive") (tstamp 92f27ec4-6d5d-4f77-8efa-add67fdd9d04))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 967e07a9-586e-41c8-bc4f-f02a17f974f0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (layer "F.Cu")
(tstamp 65d98bc6-60cd-4040-9902-e24f8f14a9b7)
(at 138.4 104.065 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm")
(property "LCSC Part #" "C114605")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/c2738215-29fe-44a5-88d1-1a2a0621b3af")
(attr through_hole)
(fp_text reference "R105" (at 2.54 -1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee2b4ca3-f074-4198-baa1-d2556dff83e7)
)
(fp_text value "~" (at 2.54 1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3991d4a3-e500-4432-9db2-84934e424e3a)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 0.72 0.72) (thickness 0.108)))
(tstamp 7782593b-78fa-4332-b02c-3434b02d4d80)
)
(fp_line (start 0.62 -0.92) (end 4.46 -0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40dd2653-4ce0-4f0b-9668-07be45bd521d))
(fp_line (start 0.62 0.92) (end 4.46 0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce565f22-1849-4162-8654-81da4a56303b))
(fp_line (start -0.95 -1.05) (end -0.95 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54fe5bfb-5673-4464-b23d-a5fc1cb87999))
(fp_line (start -0.95 1.05) (end 6.03 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d9aa2b2-da0a-487a-97a9-711983459498))
(fp_line (start 6.03 -1.05) (end -0.95 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 676fe3c3-c7f4-4da1-a656-69cb954de874))
(fp_line (start 6.03 1.05) (end 6.03 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da4704de-3571-41df-a04c-a3663b9b6cdb))
(fp_line (start 0 0) (end 0.74 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ac47a6e-de42-4cb0-8a53-be40680d9a9e))
(fp_line (start 0.74 -0.8) (end 0.74 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0280ffb6-371a-4893-962f-ccefec4fc53b))
(fp_line (start 0.74 0.8) (end 4.34 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8843431-f7e6-4198-8680-40eede594ec9))
(fp_line (start 4.34 -0.8) (end 0.74 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b233e05-f203-4b6a-9a1d-49b742329248))
(fp_line (start 4.34 0.8) (end 4.34 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb619149-6b0a-4a50-bdd1-fefd123fda12))
(fp_line (start 5.08 0) (end 4.34 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c06c0bec-ed58-4d33-bf26-aa39e71b2118))
(pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "Net-(U102-ISEN)") (pintype "passive") (tstamp 86b08b92-cd33-45cf-b33f-07a4924c63ed))
(pad "2" thru_hole oval (at 5.08 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pintype "passive") (tstamp 95cb85c7-ab64-4e77-837b-b07ecc827584))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tstamp 73433e29-7436-48de-b740-4a0355b6b87c)
(at 120.6 112.2)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "LCSC Part #" "No need")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/e2a71163-a497-4f4c-8a82-03cd43f4deac")
(zone_connect 2)
(attr exclude_from_pos_files)
(fp_text reference "H103" (at 0 -3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 289f06ab-f9d2-4cb4-83ce-34f5ae66cb7e)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56ad5d55-ae98-4dd4-8ab5-fc1a02fdf874)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0a0193a-1c58-4ace-8a5f-775824b2c8a6)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 655385f5-8d7c-4060-952a-5135faca96c6))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d561c5fa-c470-43f6-8534-e7d8b068296c))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "1") (pintype "input") (tstamp 31d3db71-99e2-4b83-8463-4e7361a531ca))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 96501983-495d-435b-86b1-697807d2c31b)
(at 141.96 87.9)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "LCSC Part #" "In stock")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/1fdb3983-a9e6-4acb-838b-debad0b3364e")
(attr through_hole)
(fp_text reference "J102" (at 3 1.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fc86fe5-ce82-4e98-9052-74ede4bb6fe9)
)
(fp_text value "Conn_01x02_Pin" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d39fdbe8-c480-4bf6-b186-5308f779f0a0)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d666d80-d33c-4481-9e55-e6408d85992f)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c397a2f9-8c44-4af8-b4b2-36124682ff20))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a91ff185-0db6-4cd6-9e45-8c041add1a91))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab69a91d-56ef-442e-8193-a3d3f53a4da0))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84d9955e-5a0a-4898-a69e-4487f725692a))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 136ed97c-3e04-4687-9cf2-701d6d3cc5f4))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0bee98b-1bb7-4e6f-8d60-44339e50c14c))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 560cc59c-abfb-4ecb-93fd-406583ca26b8))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ccefd11-d770-496d-81fa-151d7f22a95a))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83e7d4af-a037-4bc3-b8d7-8a94c42f2b1d))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c06b3a7-7ac9-46e5-bc06-a87eec9b572d))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 704442cf-4084-4ba4-aa6e-47a96a0d6051))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b6a1bff-b095-47a9-8e41-54c8445c4871))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebe89519-a4b4-4234-a8fa-06c079bf6c0e))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 989afb8d-47ce-4d3d-9d1f-8c1dea3225a3))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7ef63cd-cc20-4023-895b-e267b6137022))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "IN1") (pinfunction "Pin_1") (pintype "passive") (tstamp 28ec58d2-b3e9-4462-bf7b-e654c7a9f46a))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "IN2") (pinfunction "Pin_2") (pintype "passive") (tstamp b8953a09-5dc1-44d7-bb22-3e1727134159))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tstamp 9b7ec762-5bf8-40e6-bf7e-2209301d4312)
(at 140.6 79.2)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "LCSC Part #" "No need")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/bbe76f5f-f548-4f01-a889-ef11605130bb")
(zone_connect 2)
(attr exclude_from_pos_files)
(fp_text reference "H102" (at 0 -3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0aee12ea-6a85-406f-8008-11a649e70b86)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce7e3ca9-0809-480f-aa6a-aba271d8a9d8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 930c1436-6802-43ae-92f7-832f65d69d90)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 601a9e63-cfc3-4e9c-91d0-6ab862c30cea))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 43eb47db-fff6-422a-9c23-0765622cf819))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "1") (pintype "input") (tstamp 4082f93b-dca9-4d73-9af1-fff797f7bb61))
)
(footprint "VsReality_Footprints:JILN JL126-50002G01" (layer "F.Cu")
(tstamp d0dfc36e-65ba-4616-9e8f-816f6ef129ae)
(at 130.6 111.6 180)
(descr "LCSC Part #C394556")
(property "LCSC Part #" "C394556")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/c30a2053-bd8c-4e7a-b7a9-450e4c19142d")
(zone_connect 2)
(attr through_hole)
(fp_text reference "J101" (at -3.6 -4.7 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 00a5bbee-0006-4f2f-90fc-2468c7fc2deb)
)
(fp_text value "M0_CONN" (at 2.8 7.2 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70e7a82f-1101-46eb-b6d8-74c1b0abc81e)
)
(fp_text user "${REFERENCE}" (at -0.2 5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed2128cf-6328-4111-a61f-f8d58aeaf4c0)
)
(fp_line (start -5.5 3.8) (end -5.5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 29fd28d5-4a06-485b-b8a7-8d37a7ec84f0))
(fp_line (start -5 -4) (end -5.5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3333e803-f1c7-4f22-8179-b915e216b551))
(fp_line (start -5 -4) (end -5 3.8)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp b85754d8-6558-4bb4-8e7a-4635e20c861e))
(fp_line (start -5 -4) (end 5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp b9e63309-4f53-4601-9522-532da6a92383))
(fp_line (start -5 3.8) (end -5.5 3.8)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 8c95d6d8-8ad5-4db1-ab63-9e7d059ece66))
(fp_line (start -5 3.8) (end 5 3.8)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 8635de8e-9ac4-4c61-b0b5-42aa21573b63))
(fp_line (start 5 -3.7) (end -5 -3.7)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp c59455be-cc30-4149-993d-f6e1b6d1fc26))
(fp_line (start 5 3.8) (end 5 -4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp fe0c779f-ecc5-4dfb-96e5-ae9064364141))
(pad "1" thru_hole rect (at -2.5 0 180) (size 3 3) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 5 "OUT2") (pinfunction "Pin_1") (pintype "passive") (tstamp 24564ae9-82f6-4132-ae97-ec7f630e4236))
(pad "2" thru_hole circle (at 2.5 0 180) (size 3 3) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 4 "OUT1") (pinfunction "Pin_2") (pintype "passive") (tstamp 414f2817-625d-47ad-81f1-4a134f8ad85f))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tstamp dfa819cc-236c-4cd4-8f2d-e055a95a2d68)
(at 120.6 79.2)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "LCSC Part #" "No need")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/12c75fa8-5855-42e0-adeb-bc197b390779")
(zone_connect 2)
(attr exclude_from_pos_files)
(fp_text reference "H101" (at 0 -3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce2c6c4f-4a2e-4546-8699-87915fffe87e)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c55605b0-d95e-474a-a54b-e2db93170999)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4a35149-1c89-4427-ac0e-ef8f395e4177)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 9bdb8dd3-07d9-4ad2-a9af-537357d86919))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 35f5aaa1-f127-4fd3-ac7c-6f13f1d0fb3f))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "1") (pintype "input") (tstamp c588b9cc-6dc5-4c53-b621-8eea58cf8dd9))
)
(footprint "Package_SO:Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias" (layer "F.Cu")
(tstamp e5850bad-6d23-4031-ad05-a706fc461e69)
(at 132 95.8 -90)
(descr "8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf")
(tags "HTSOP 1.27")
(property "LCSC Part #" "C86590")
(property "Sheetfile" "DRV8870-breakout-board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Brushed DC Motor Driver, PWM Control, 45V, 3.6A, Dynamic current limiting, HTSOP-8")
(property "ki_keywords" "H-bridge driver motor current limit")
(path "/c97a4173-2c89-4688-a6ca-2232b61c05fb")
(solder_mask_margin 0.07)
(zone_connect 2)
(attr smd)
(fp_text reference "U102" (at -2.5 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94688e71-7e09-4c21-a603-b9efe0b03f7e)
)
(fp_text value "DRV8870DDA" (at 0 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1841202f-f21d-4229-85ee-be376a70fb69)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.9 0.9) (thickness 0.135)))
(tstamp 1eff36a0-97da-490f-8598-2029973024fa)
)
(fp_line (start -2.075 -2.575) (end -2.075 -2.525)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7e9fcaaa-58c8-4f65-9a81-9007a509d2d0))
(fp_line (start -2.075 -2.575) (end 2.075 -2.575)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2f6268cb-d906-4232-a139-38ee9352115a))
(fp_line (start -2.075 -2.525) (end -3.475 -2.525)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b14e50c6-c557-43c4-825d-48cd3db31378))
(fp_line (start -2.075 2.575) (end -2.075 2.43)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3d5e3bd6-5304-40b6-a226-e04caaca8354))
(fp_line (start -2.075 2.575) (end 2.075 2.575)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 21c45fd8-7d5b-4f21-852f-14bab8e91dc3))
(fp_line (start 2.075 -2.575) (end 2.075 -2.43)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f8566f5b-32ad-4196-921a-a11e135ab3f3))
(fp_line (start 2.075 2.575) (end 2.075 2.43)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fb88a250-b91b-42a0-890c-3cb3aca698cd))
(fp_line (start -4.2 -2.75) (end -4.2 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba2b44f0-c368-43b7-b588-a7e487f735e4))
(fp_line (start -4.2 -2.75) (end 4.2 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 839efb1b-42cd-44dc-9dba-a5268e013f8e))
(fp_line (start -4.2 2.75) (end 4.2 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a34b7f5-e3d3-40d1-a418-754050b70be8))
(fp_line (start 4.2 -2.75) (end 4.2 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb4f9fdc-ab36-4c14-9c80-8edb452202dc))
(fp_line (start -1.95 -1.45) (end -0.95 -2.45)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 85d5847a-2265-40b5-bf72-06f2d6751d1f))
(fp_line (start -1.95 2.45) (end -1.95 -1.45)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 08b78742-ad9b-467a-8ed9-30cc909dd76f))
(fp_line (start -0.95 -2.45) (end 1.95 -2.45)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp cb566c1c-a4fa-4f3d-93fb-bbdb9e531220))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 43b9f21d-adfc-48e6-8228-ad3ecfd05d21))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp b253d118-1acc-433a-a103-b81275949474))
(pad "" smd rect (at 0 0 270) (size 2.4 3.1) (layers "F.Paste") (tstamp c4a8f82a-6260-4689-923a-cbdd8d9fcef6))
(pad "" smd rect (at 0 0 270) (size 2.4 3.1) (layers "F.Mask") (tstamp aeb50ae7-4681-48c7-a3ff-4054eff5a800))
(pad "1" smd rect (at -2.875 -1.905 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f5fdfcad-271e-4597-93e2-8bea316c993e))
(pad "2" smd rect (at -2.875 -0.635 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "IN2") (pinfunction "IN2") (pintype "input") (tstamp 59d6a70d-fc55-4702-b29a-25ad7015d86c))
(pad "3" smd rect (at -2.875 0.635 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "IN1") (pinfunction "IN1") (pintype "input") (tstamp 14540008-a704-4be4-ba7e-a155890f22bb))
(pad "4" smd rect (at -2.875 1.905 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+3V3") (pinfunction "VREF") (pintype "input") (tstamp 79faa4be-dccb-47d3-9c8d-889f428908c5))
(pad "5" smd rect (at 2.875 1.905 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VMOTORS") (pinfunction "VM") (pintype "power_in") (tstamp fa39167a-7a88-49ba-b0c4-55f66a9ef453))
(pad "6" smd rect (at 2.875 0.635 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "OUT1") (pinfunction "OUT1") (pintype "output") (tstamp 7f021eb0-475b-4a27-84a8-bb6eecbf28a7))
(pad "7" smd rect (at 2.875 -0.635 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(U102-ISEN)") (pinfunction "ISEN") (pintype "passive") (tstamp dca63685-7157-4b97-8f59-e395f1122356))
(pad "8" smd rect (at 2.875 -1.905 270) (size 2.2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "OUT2") (pinfunction "OUT2") (pintype "output") (tstamp 7cb9378f-b74a-49be-b2e0-70e07d48f4a7))
(pad "9" thru_hole circle (at -0.65 -1.3 270) (size 0.63 0.63) (drill 0.33) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp ca959cb1-28a9-4782-a6c1-5d7fdd64e042))
(pad "9" thru_hole circle (at -0.65 0 270) (size 0.63 0.63) (drill 0.33) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2f520839-5335-433f-8ee0-51b6ade229a7))
(pad "9" thru_hole circle (at -0.65 1.3 270) (size 0.63 0.63) (drill 0.33) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 4b323c3e-c535-4798-b61e-d0211b1ec078))
(pad "9" smd rect (at 0 0 270) (size 2.6 3.3) (layers "B.Cu")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 690b7f16-4cd8-4a2e-9605-f75961936c77))
(pad "9" smd rect (at 0 0 270) (size 2.95 4.9) (layers "F.Cu")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6f5cc838-6899-4963-9dfe-9cd199fedcd7))
(pad "9" thru_hole circle (at 0.65 -1.3 270) (size 0.63 0.63) (drill 0.33) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp b8142e06-3265-4ee3-b84a-33e622beb54b))
(pad "9" thru_hole circle (at 0.65 0 270) (size 0.63 0.63) (drill 0.33) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 825a1fc0-589c-498a-bf01-d4777e0b2fe4))
(pad "9" thru_hole circle (at 0.65 1.3 270) (size 0.63 0.63) (drill 0.33) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 48c11df9-35bb-4112-8a8d-2dcddb790b8d))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.85x4.9mm_Mask2.4x3.1mm_ThermalVias.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 134.9 91.3) (end 135.05 91.3)
(stroke (width 0.3) (type default)) (fill none) (layer "F.SilkS") (tstamp 9605622c-ef92-4093-81e7-ab1a302df137))
(gr_line (start 144.1 112.2) (end 144.1 79.2)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0a2207b1-1265-4527-88ab-69615b6ba92f))
(gr_arc (start 117.098572 79.2) (mid 118.159728 76.68901) (end 120.7 75.7)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 215257d3-3adb-4148-a5a7-f230c44565e7))
(gr_arc (start 144.1 112.2) (mid 143.074874 114.674874) (end 140.6 115.7)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 4fe7ab3a-cc82-442a-9b19-018c84817223))
(gr_arc (start 120.6 115.7) (mid 118.125126 114.674874) (end 117.1 112.2)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5e252407-8ce6-4a27-8dab-d9f5fc69c95f))
(gr_line (start 120.7 75.7) (end 140.6 75.7)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6f4ca7c2-5b17-4503-92ed-7c1e20b770e8))
(gr_line (start 117.098572 79.2) (end 117.1 112.2)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a32857ec-af8a-424e-8997-8dce8717abb8))
(gr_line (start 120.6 115.7) (end 140.6 115.7)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dc940d2b-33da-41b0-9d90-8cddd4f68408))
(gr_arc (start 140.6 75.7) (mid 143.074874 76.725126) (end 144.1 79.2)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ec3192e5-87e1-4bf7-89b5-a14c04a87f9b))
(gr_text "1" (at 128.6 115) (layer "B.SilkS") (tstamp 1b42f50a-6eb0-4c4a-9792-6a20b7b39162)
(effects (font (size 1.2 1.2) (thickness 0.16)) (justify left bottom mirror))
)
(gr_text "+3.3V" (at 125.63 88.66) (layer "B.SilkS") (tstamp 26ec128e-256d-48fc-a55c-45cfd631cbfe)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "-" (at 127.35 78) (layer "B.SilkS") (tstamp 421a0d60-b5bc-4d1e-b37d-915c84d20aa4)
(effects (font (size 1.2 1.2) (thickness 0.16)) (justify left bottom))
)
(gr_text "MOTOR" (at 133.05 109.05) (layer "B.SilkS") (tstamp 724cf639-fbdd-4f57-8f59-765b5969067a)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "+" (at 132.35 78) (layer "B.SilkS") (tstamp 843ede7d-d357-40c9-944d-51081d22103d)
(effects (font (size 1.2 1.2) (thickness 0.16)) (justify left bottom))
)
(gr_text "DRV8870 V1.0" (at 142.7 93.72 90) (layer "B.SilkS") (tstamp 8bb08522-1a36-4d9d-aa34-7d09332779a7)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "+" (at 126.5 99.7) (layer "B.SilkS") (tstamp 9c2da257-7f52-4c0d-ba8e-b3ca3cbb3983)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "2" (at 133.7 115) (layer "B.SilkS") (tstamp 9df524cf-52fd-483d-819d-6acf0e80a586)
(effects (font (size 1.2 1.2) (thickness 0.16)) (justify left bottom mirror))
)
(gr_text "IN2" (at 140.1 91.26) (layer "B.SilkS") (tstamp ae736cb8-4afe-419c-ba2e-702ee972520e)
(effects (font (size 1 1) (thickness 0.15) bold) (justify left bottom mirror))
)
(gr_text "POWER" (at 133.1 83.35) (layer "B.SilkS") (tstamp b7919bc6-6238-4ddd-b6da-e422f0e13fee)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "IN1" (at 140.1 88.7) (layer "B.SilkS") (tstamp cc62869a-20e9-412c-9c7b-d95af4d6b77c)
(effects (font (size 1 1) (thickness 0.15) bold) (justify left bottom mirror))