-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompactMotor.kicad_pcb
14500 lines (14441 loc) · 627 KB
/
CompactMotor.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.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 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (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)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 "")
)
)
(net 0 "")
(net 1 "5V0")
(net 2 "GNDREF")
(net 3 "3V3")
(net 4 "Net-(D1-Pad2)")
(net 5 "EN")
(net 6 "SENSOR_VP")
(net 7 "SENSOR_VN")
(net 8 "Net-(D2-Pad2)")
(net 9 "Net-(D3-Pad2)")
(net 10 "IO0")
(net 11 "STALLPLUS")
(net 12 "STALLMINUS")
(net 13 "IO14")
(net 14 "IO12")
(net 15 "IO13")
(net 16 "SCK")
(net 17 "IO15")
(net 18 "IO2")
(net 19 "unconnected-(U1-Pad32)")
(net 20 "RXD0")
(net 21 "TXD0")
(net 22 "unconnected-(U3-Pad11)")
(net 23 "SHD{slash}SD2")
(net 24 "SWP{slash}SD3")
(net 25 "SCS{slash}CMD")
(net 26 "SCK{slash}CLK")
(net 27 "SDO{slash}SD0")
(net 28 "SDI{slash}SD1")
(net 29 "DIR")
(net 30 "STEP")
(net 31 "TMC_EN")
(net 32 "CS")
(net 33 "MISO")
(net 34 "MOSI")
(net 35 "SPI_MODE")
(net 36 "DC0")
(net 37 "DCEN_CFG4")
(net 38 "DCIN_CFG5")
(net 39 "DIAG0")
(net 40 "DIAG1")
(net 41 "Net-(C3-Pad1)")
(net 42 "Net-(C3-Pad2)")
(net 43 "Net-(C5-Pad2)")
(net 44 "Net-(C7-Pad2)")
(net 45 "Net-(J1-Pad1)")
(net 46 "Net-(J1-Pad2)")
(net 47 "Net-(J1-Pad3)")
(net 48 "Net-(J1-Pad4)")
(net 49 "Net-(R2-Pad2)")
(net 50 "Net-(R4-Pad2)")
(net 51 "Net-(R5-Pad1)")
(net 52 "unconnected-(U3-Pad9)")
(net 53 "VM")
(net 54 "Net-(JP1-Pad2)")
(net 55 "Net-(JP2-Pad2)")
(net 56 "Net-(R7-Pad1)")
(net 57 "Net-(R8-Pad1)")
(footprint "" (layer "F.Cu")
(tedit 622B5CE2) (tstamp 03b7ea59-04ff-4bfc-a26f-17e4b04b9d62)
(at 34.798 44.831)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 22c5ec8c-92fa-43bc-955a-ac62de3d0d1e)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 40f359aa-e8bc-4d4c-ab4e-c4039d94c199)
)
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp eaa0bd9a-d861-4278-acc9-286248faecf5))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 622782F2) (tstamp 2444a3ac-b8f9-4b4d-919f-626eed04b33e)
(at 26.543 6.223)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference " " (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccf37dc3-b298-4d8e-91d5-89965d37e841)
)
(fp_text value " " (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 057294b1-5556-446c-a8b5-a0c6ad6184d4)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a83c7d3-4713-45cf-9b3a-3e853b34fa1c)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e65c2d61-2a49-47ea-b6ed-4f1be6fa2315))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6455e8a8-3dd9-4f8d-86ed-f2cc83f66bba))
(pad "" thru_hole circle locked (at 0 0) (size 6 6) (drill 4.3) (layers *.Cu *.Mask) (remove_unused_layers) (keep_end_layers)
(net 53 "VM") (tstamp 9540d97e-43f7-4bb5-8834-1af49b54897a))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 622782E6) (tstamp 33b461bc-9875-4056-b3bb-758b25bd7c64)
(at 26.416 34.798)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference " " (at -1.651 -5.3) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9f30e515-d36d-4db9-978a-07857740ebfe)
)
(fp_text value " " (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b502294b-b828-422b-af09-36a74e0cbd4e)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d5af225-80e7-4cd9-8f1b-026b7a30f2d4)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 882ff8f4-52cf-4740-b7c6-24fa7b7b826a))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6463a2f8-bd0b-49d6-a9d1-1f4a60216c91))
(pad "" thru_hole circle locked (at 0 0) (size 6 6) (drill 4.3) (layers *.Cu *.Mask) (remove_unused_layers) (keep_end_layers)
(net 2 "GNDREF") (tstamp f0b56d1d-3c1f-4914-8e09-2d5af1e0ae88))
)
(footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391EB7) (tstamp 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3)
(at 17.145 26.924 180)
(descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/1e316721-e42d-4c77-8f1f-8be0b59e37c5")
(attr exclude_from_pos_files)
(fp_text reference "JP2" (at -2.667 -0.127 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 37a423bc-f22b-4f78-8391-c64cc41bfdd6)
)
(fp_text value "SolderJumper_3_Open" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7279a0ce-75b5-4d17-adea-e5e9949407a6)
)
(fp_line (start -2.05 0.3) (end -2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 21de29f1-55e6-491f-9b72-2d0cf15d30d9))
(fp_line (start -1.2 1.2) (end -0.9 1.5) (layer "F.SilkS") (width 0.12) (tstamp 441f9c55-be25-4fae-8b9b-6a71ad3b0b86))
(fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 51c3e3cc-739b-4bac-a271-7f779051de39))
(fp_line (start -1.2 1.2) (end -1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp 6f4bbdb8-5bb2-4c5f-b604-50c819181981))
(fp_line (start -1.5 1.5) (end -0.9 1.5) (layer "F.SilkS") (width 0.12) (tstamp 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2))
(fp_line (start 2.05 -0.3) (end 2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp 93b57547-14ef-426b-8dd7-720b4647ee08))
(fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp a7f09cc9-2878-4daf-b4fb-2ce63103f4de))
(fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1) (layer "F.SilkS") (width 0.12) (tstamp 5cff2459-d275-4803-8fa2-8289cb689a75))
(fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp 620fd31f-1d7e-453a-874c-5731a4bbc505))
(fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1) (layer "F.SilkS") (width 0.12) (tstamp 932b167d-ddab-4c71-b0d5-3168e84d05b6))
(fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp dc588c3d-5206-4af5-96df-dc33e470667e))
(fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5b3893c6-e4cc-4fa9-be23-63d62d12d2ee))
(fp_line (start 2.3 1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 659d7e05-6d30-4048-9451-144bfa6ef129))
(fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 885fe160-5562-498c-ba18-9f416e1d87d2))
(fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 99f42b58-88eb-419e-9dff-f13059ef50e4))
(pad "1" smd custom locked (at -1.3 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 38 "DCIN_CFG5") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.55 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.55 -0.75)
) (width 0) (fill yes))
) (tstamp 5d580eb5-0e83-488b-a0fd-a803c630f551))
(pad "2" smd rect locked (at 0 0 180) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 55 "Net-(JP2-Pad2)") (pinfunction "C") (pintype "input") (tstamp 7aec2799-4000-4098-a752-1bed4b75fdcf))
(pad "3" smd custom locked (at 1.3 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 2 "GNDREF") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.55 0.75)
(xy -0.55 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 331e4b06-587c-447e-bea7-ab3ccd3f7d67))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 622A0B74) (tstamp 52fbbec6-37ec-462d-9fa0-85e70993c9df)
(at 9.017 4.699)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference " " (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ccc9513-c36c-4884-be1f-6a9c5a0ac8ac)
)
(fp_text value " " (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ccd938f-6f88-407a-968c-a37fb3d24bf1)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c944416b-38bc-401e-9dee-b7fe126a9533)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 1d4216a7-192b-402d-9735-4a209c5d9eae))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp f48cf2f6-90c6-434e-ae18-0f7472619f34))
(pad "" thru_hole circle locked (at 0 0) (size 6 6) (drill 4.3) (layers *.Cu *.Mask) (remove_unused_layers) (keep_end_layers)
(net 53 "VM") (tstamp 26d1aaa5-4b59-45db-bb28-d5aed403ef59))
)
(footprint "" (layer "F.Cu")
(tedit 622B5CE2) (tstamp 797336a2-12e4-4dd0-a33e-dc6624c7dd5e)
(at 21.336 44.958)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 806a040a-651b-439f-9240-0e13101ec59b)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp de22b9d9-5bc1-4cd3-825e-62cfb6fe5a54)
)
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp 3823150a-b9c1-440b-b100-07f0f20cd8ad))
)
(footprint "" (layer "F.Cu")
(tedit 622B5CB3) (tstamp 8d33a8d3-c5cc-40b4-ba71-6923d60927e2)
(at 1.016 40.132)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 34bb2d5a-a1fd-4187-b623-25a5b805199b)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 066893ee-f587-4ad1-a5e3-e3171a7f7252)
)
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp 66734891-cd33-4205-a68e-7aa74d4b75f8))
)
(footprint "MotorBracket:MotorBracker" (layer "F.Cu")
(tedit 6227A60C) (tstamp 901000c1-364b-410c-a299-8b7f4688456c)
(at 0.954955 -0.163712)
(fp_text reference " " (at 20.127045 20.991712 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23a4aa0c-b68b-43b3-b2c8-8afb4810ba63)
)
(fp_text value "MotorBracker" (at 15.22 21.98 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1be333c9-0989-4cf7-8ea1-0d074e673600)
)
(fp_text user "${REFERENCE}" (at 15.22 23.48 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57fcfff6-d9c1-4c30-9e75-6ad83cce015c)
)
(fp_line (start 22.34509 24.896424) (end 19.17009 24.896424) (layer "Dwgs.User") (width 0.25) (tstamp 082d9532-8ce7-47cf-b919-84c89defaf36))
(fp_line (start 27.67009 36.571424) (end 27.67009 33.396424) (layer "Dwgs.User") (width 0.25) (tstamp 089a1cd1-a449-4a6f-9a1e-022ce4c2334d))
(fp_line (start 23.37009 36.571424) (end 23.37009 33.396424) (layer "Dwgs.User") (width 0.25) (tstamp 09635521-1226-4340-b450-fa7e7a29289f))
(fp_line (start 18.14509 36.571424) (end 18.14509 33.396424) (layer "Dwgs.User") (width 0.25) (tstamp 129c6353-2492-48dc-adcf-d9356decbbf3))
(fp_line (start 23.37009 4.821424) (end 23.37009 7.996424) (layer "Dwgs.User") (width 0.25) (tstamp 1bf3c3c5-6c8f-4bbc-bdff-8d7cd29999d4))
(fp_line (start 0.04509 33.796424) (end 0.04509 39.346424) (layer "Dwgs.User") (width 0.25) (tstamp 29097b9b-00b0-4ce7-8edb-9464ce74ec90))
(fp_line (start 18.14509 4.821424) (end 18.14509 7.996424) (layer "Dwgs.User") (width 0.25) (tstamp 30ab59bd-036e-45b1-89ca-9ecd8c66dbd6))
(fp_line (start 9.64509 34.421424) (end 6.47009 34.421424) (layer "Dwgs.User") (width 0.25) (tstamp 350615ba-22b1-4df9-87ca-af8745b22d6b))
(fp_line (start 9.64509 6.971424) (end 6.47009 6.971424) (layer "Dwgs.User") (width 0.25) (tstamp 35f933fa-6826-467f-aac2-dd06571de60c))
(fp_line (start 9.64509 2.671424) (end 6.47009 2.671424) (layer "Dwgs.User") (width 0.25) (tstamp 39470717-fbf1-4992-a9d9-289451b4de47))
(fp_line (start 13.84509 4.821424) (end 13.84509 7.996424) (layer "Dwgs.User") (width 0.25) (tstamp 42689e17-1550-41e1-a2ec-31ac554044d6))
(fp_line (start 9.64509 38.721424) (end 6.47009 38.721424) (layer "Dwgs.User") (width 0.25) (tstamp 4ccbadaf-90ec-485a-a820-66437019f2f1))
(fp_line (start 35.04509 0.046424) (end 2.04509 0.046424) (layer "Dwgs.User") (width 0.25) (tstamp 53885470-d8ad-4f73-ab27-b53662a2fd9e))
(fp_line (start 35.04509 0.046424) (end 35.04509 41.346424) (layer "Dwgs.User") (width 0.25) (tstamp 59124ecc-d83f-4e2b-a488-14c0d691b07c))
(fp_line (start 13.84509 36.571424) (end 13.84509 33.396424) (layer "Dwgs.User") (width 0.25) (tstamp 599fe300-f937-4656-9062-91822fa94a93))
(fp_line (start 0.04509 2.046424) (end 0.04509 7.596424) (layer "Dwgs.User") (width 0.25) (tstamp 64490111-9d9a-4f80-b755-ff0ce2104490))
(fp_line (start 15.04509 18.546424) (end 15.99509 18.546424) (layer "Dwgs.User") (width 0.25) (tstamp 7a912bdd-bc9b-4fd5-87f7-717141cdfc21))
(fp_line (start 13.04509 11.596424) (end 13.04509 16.546424) (layer "Dwgs.User") (width 0.25) (tstamp 7df28974-fb5d-4175-8b97-f201aaba6ea6))
(fp_line (start 32.04509 0.046424) (end 32.04509 41.346424) (layer "Dwgs.User") (width 0.25) (tstamp 8180b188-eb2b-48a7-bb55-4c0cf9c93e61))
(fp_line (start 27.67009 4.821424) (end 27.67009 7.996424) (layer "Dwgs.User") (width 0.25) (tstamp 8fb4977a-6393-4c49-aedd-751587806852))
(fp_line (start 15.04509 22.846424) (end 15.99509 22.846424) (layer "Dwgs.User") (width 0.25) (tstamp a44f2be3-81c3-4dd4-8adc-edbde2cd6580))
(fp_line (start 22.34509 12.196424) (end 19.17009 12.196424) (layer "Dwgs.User") (width 0.25) (tstamp ac8716a0-190c-4cd7-a33b-c911a325a6b6))
(fp_line (start 35.04509 41.346424) (end 2.04509 41.346424) (layer "Dwgs.User") (width 0.25) (tstamp bac8216a-c200-44ae-b615-d6eeb38f2582))
(fp_line (start 13.04509 29.796424) (end 13.04509 24.846424) (layer "Dwgs.User") (width 0.25) (tstamp bcca1528-7d94-419f-b312-27555c67252e))
(fp_line (start 35.04509 4.046424) (end 32.04509 4.046424) (layer "Dwgs.User") (width 0.25) (tstamp d0e6ca10-629b-4a45-9c5a-4634f65cf0d8))
(fp_line (start 32.04509 37.346424) (end 35.04509 37.346424) (layer "Dwgs.User") (width 0.25) (tstamp dcfaa2e8-09cc-4e5a-9cba-9a40d7fca200))
(fp_line (start 22.34509 29.196424) (end 19.17009 29.196424) (layer "Dwgs.User") (width 0.25) (tstamp e6f95bc6-ee87-4f9d-b5cb-cb543fdf5cbc))
(fp_line (start 2.04509 31.796424) (end 11.04509 31.796424) (layer "Dwgs.User") (width 0.25) (tstamp ed2806aa-a198-4600-92a4-e25691352202))
(fp_line (start 22.34509 16.496424) (end 19.17009 16.496424) (layer "Dwgs.User") (width 0.25) (tstamp ef30a4ad-035c-467a-89e1-1904bb53c455))
(fp_line (start 2.04509 9.596424) (end 11.04509 9.596424) (layer "Dwgs.User") (width 0.25) (tstamp f0762228-8cab-411b-afee-1d37105470ff))
(fp_arc (start 11.04509 9.596424) (mid 12.459304 10.18221) (end 13.04509 11.596424) (layer "Dwgs.User") (width 0.25) (tstamp 0e02d316-e557-4842-a361-4a873c570504))
(fp_arc (start 0.04509 2.046424) (mid 0.630876 0.63221) (end 2.04509 0.046424) (layer "Dwgs.User") (width 0.25) (tstamp 1812545c-2629-457d-bb73-1413396ef203))
(fp_arc (start 13.84509 4.821424) (mid 15.99509 2.671424) (end 18.14509 4.821424) (layer "Dwgs.User") (width 0.25) (tstamp 1a4c1252-d1b3-42d2-ac31-c895a0b684c5))
(fp_arc (start 27.67009 7.996424) (mid 25.52009 10.146424) (end 23.37009 7.996424) (layer "Dwgs.User") (width 0.25) (tstamp 240b28f5-4b5f-465f-83dc-0fe7500d3c82))
(fp_arc (start 23.37009 33.396424) (mid 25.52009 31.246424) (end 27.67009 33.396424) (layer "Dwgs.User") (width 0.25) (tstamp 27ca12c5-a41f-487e-80a6-e4f47adc794c))
(fp_arc (start 0.04509 33.796424) (mid 0.630876 32.38221) (end 2.04509 31.796424) (layer "Dwgs.User") (width 0.25) (tstamp 2b1e44ba-e06b-4dc3-915f-816b778b48bd))
(fp_arc (start 18.14509 7.996424) (mid 15.99509 10.146424) (end 13.84509 7.996424) (layer "Dwgs.User") (width 0.25) (tstamp 3496e9e9-b81b-459c-9ccc-fca61518fbb6))
(fp_arc (start 6.47009 6.971424) (mid 4.32009 4.821424) (end 6.47009 2.671424) (layer "Dwgs.User") (width 0.25) (tstamp 3f9fb807-c023-4162-a635-5697479ae9b1))
(fp_arc (start 2.04509 41.346424) (mid 0.630876 40.760638) (end 0.04509 39.346424) (layer "Dwgs.User") (width 0.25) (tstamp 53637482-e113-487d-995f-632d3e1ac39f))
(fp_arc (start 9.64509 34.421424) (mid 11.79509 36.571424) (end 9.64509 38.721424) (layer "Dwgs.User") (width 0.25) (tstamp 5c09882f-7a81-42c3-afd2-e7a641d06315))
(fp_arc (start 23.37009 4.821424) (mid 25.52009 2.671424) (end 27.67009 4.821424) (layer "Dwgs.User") (width 0.25) (tstamp 6c6d1b2b-456b-4d12-9952-ad187f2265a7))
(fp_arc (start 18.14509 36.571424) (mid 15.99509 38.721424) (end 13.84509 36.571424) (layer "Dwgs.User") (width 0.25) (tstamp 6c87b061-d879-4634-898d-11a5cb733233))
(fp_arc (start 22.34509 12.196424) (mid 24.49509 14.346424) (end 22.34509 16.496424) (layer "Dwgs.User") (width 0.25) (tstamp 705eeb74-d564-4beb-8a03-43ced47b35f2))
(fp_arc (start 15.99509 18.546424) (mid 18.14509 20.696424) (end 15.99509 22.846424) (layer "Dwgs.User") (width 0.25) (tstamp 70b3d761-8dfd-46e5-98a8-9e7ffebd2c30))
(fp_arc (start 13.04509 24.846424) (mid 13.630876 23.43221) (end 15.04509 22.846424) (layer "Dwgs.User") (width 0.25) (tstamp 8856630f-4422-4e36-a634-f801b334c161))
(fp_arc (start 19.17009 16.496424) (mid 17.02009 14.346424) (end 19.17009 12.196424) (layer "Dwgs.User") (width 0.25) (tstamp 8c8fd925-8e02-4f44-8d3f-faf68bc31f73))
(fp_arc (start 22.34509 24.896424) (mid 24.49509 27.046424) (end 22.34509 29.196424) (layer "Dwgs.User") (width 0.25) (tstamp 975ae1e5-3695-4a5d-9f50-42009633d3e9))
(fp_arc (start 6.47009 38.721424) (mid 4.32009 36.571424) (end 6.47009 34.421424) (layer "Dwgs.User") (width 0.25) (tstamp ad7a7d90-6068-40b6-8897-5363b93b1b60))
(fp_arc (start 9.64509 2.671424) (mid 11.79509 4.821424) (end 9.64509 6.971424) (layer "Dwgs.User") (width 0.25) (tstamp bd2cef8b-7f33-48a8-8759-e900b3ba89f3))
(fp_arc (start 13.04509 29.796424) (mid 12.459304 31.210638) (end 11.04509 31.796424) (layer "Dwgs.User") (width 0.25) (tstamp c2cddb78-c847-485e-94fa-5454b3108dce))
(fp_arc (start 27.67009 36.571424) (mid 25.52009 38.721424) (end 23.37009 36.571424) (layer "Dwgs.User") (width 0.25) (tstamp d170fec2-d1c4-459d-8864-e4c113b532aa))
(fp_arc (start 2.04509 9.596424) (mid 0.630876 9.010638) (end 0.04509 7.596424) (layer "Dwgs.User") (width 0.25) (tstamp e577c0ac-93ec-45c2-ab6a-32bbb657ade6))
(fp_arc (start 15.04509 18.546424) (mid 13.630876 17.960638) (end 13.04509 16.546424) (layer "Dwgs.User") (width 0.25) (tstamp ea72da38-bd9a-4247-9b7c-01907a5f7cc4))
(fp_arc (start 13.84509 33.396424) (mid 15.99509 31.246424) (end 18.14509 33.396424) (layer "Dwgs.User") (width 0.25) (tstamp f3931907-fdcf-4f3b-9589-ca3645e4ad28))
(fp_arc (start 19.17009 29.196424) (mid 17.02009 27.046424) (end 19.17009 24.896424) (layer "Dwgs.User") (width 0.25) (tstamp f8cdc7d6-cf2d-41fd-991b-e5af2c13e22a))
(fp_arc (start 27.67009 20.696424) (mid 25.52009 22.846424) (end 23.37009 20.696424) (layer "Dwgs.User") (width 0.25) (tstamp fc6bbf72-58e7-4cbc-85ea-fa576aa4fe3c))
)
(footprint "" (layer "F.Cu")
(tedit 0) (tstamp 953d45d5-e11a-4df6-a8ea-bd278753d364)
(at 34.671 -3.81)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 19a5a40d-c31a-4b14-b306-06b0a763bddb)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 5881ee20-278a-4e12-9254-07f1db1cba4c)
)
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp 76dc83c0-04b7-4721-befc-235e837b0de0))
)
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 98268b71-f03c-4446-8c7b-ae4d9a96e163)
(at 22.86 20.574)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/6565c387-8075-4e94-acf1-1e780158c4db")
(attr exclude_from_pos_files)
(fp_text reference "TP1" (at 0 -2.898) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d07a5333-7dd7-40a8-a719-b3658917620b)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48d16067-dd63-4229-be35-e52bbe1da138)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb48d24e-2ecd-4d3c-8464-6bba688e26ff)
)
(fp_line (start 2.2 -2.2) (end 2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp 3b1fd5d0-cf2a-43ad-9c3d-96ceaf817960))
(fp_line (start -2.2 2.2) (end -2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp d392203c-6d8c-4b5e-9011-0876a4a9334a))
(fp_line (start -2.2 -2.2) (end 2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp d6065ca3-e2b2-487e-836b-020e0bf05e82))
(fp_line (start 2.2 2.2) (end -2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp f5544952-18f1-435c-a1e8-f4c0ef8255ae))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 2434d047-4ee8-467b-858a-a2f5f656c457))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 5bbe1d70-e29e-412f-83e2-16c980a0abe4))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 91665015-29bc-4c1e-a9a9-4b846a9f4ea8))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp c1d59fa4-5975-401f-aa26-2a1f6168842a))
(pad "1" smd rect locked (at 0 0) (size 4 4) (layers "F.Cu" "F.Mask")
(net 2 "GNDREF") (pinfunction "1") (pintype "passive") (tstamp fa0c6f7e-6f83-493b-a53a-e4797f0e754b))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 622782DD) (tstamp 9dab09b8-cc33-426b-9648-cdda603432e4)
(at 9.017 36.449)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference " " (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26de5a83-689d-4655-af36-d24168c0bf2d)
)
(fp_text value " " (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c71920a3-eec2-4104-ac9f-8393240aea5e)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67dc29dc-56ad-47f0-81e0-6020c127ed29)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 74cadac4-5cfb-46b3-9391-6ec4422a6b17))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ef6c7d9b-23e4-4b88-b049-ae0e089ead63))
(pad "" thru_hole circle locked (at 0 0) (size 6 6) (drill 4.3) (layers *.Cu *.Mask) (remove_unused_layers) (keep_end_layers)
(net 2 "GNDREF") (tstamp de306be1-8e16-4ab6-a2d8-d0de4671e0a0))
)
(footprint "" (layer "F.Cu")
(tedit 0) (tstamp a587fbd2-119d-431c-964c-d65c1fee09ba)
(at 21.59 -3.937)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 31255751-7676-4170-a371-07b9ff014b0c)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 3aa723d9-24a0-4bf0-a280-c60fcfe4d231)
)
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp d0013b1e-e07d-4ede-965c-248637e236ca))
)
(footprint "MountingHole:MountingHole_2.5mm_Pad" (layer "F.Cu")
(tedit 622B5CC5) (tstamp b3eebb03-af8c-48e8-a7d9-5ec3741206fa)
(at 30.48 1.524)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec7a7d72-678f-4bfb-a06b-17a4d013c413)
)
(fp_text value "MountingHole_2.5mm_Pad" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f0e1ea6-d278-4117-9e02-aaadcc59362e)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92587ea2-e589-4cd0-a110-fdbbe9573c25)
)
(fp_circle (center 0 0) (end 2.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp a5d527e3-93e5-4f7c-9403-79aabfbdc470))
(fp_circle (center 0 0) (end 2.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c587e41e-e411-44d4-a360-b7b652a17e87))
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp 46c35bc8-3e06-4afa-a332-565364e00f33))
)
(footprint "RF_Module:ESP32-WROOM-32" (layer "F.Cu")
(tedit 5B5B4654) (tstamp baf058ca-8f8e-4f22-8c6e-9f7c748a2480)
(at 2.583 20.65 90)
(descr "Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf")
(tags "Single 2.4 GHz Wi-Fi and Bluetooth combo chip")
(property "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4")
(attr smd)
(fp_text reference "U1" (at -0.051 7.069 90) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 1b0106bc-ae50-4651-9afb-3d2e86908b41)
)
(fp_text value "ESP32-WROOM-32D" (at 0 11.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50829a43-4abf-48b4-be56-5e5f6a07b3c8)
)
(fp_text user "5 mm" (at 11.8 -14.375 90) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 4b7636ec-5386-43e5-be43-ca1a14eeb5f9)
)
(fp_text user "Antenna" (at 0 -13 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82f00667-c7b1-40e0-8e5c-25fe6513bdff)
)
(fp_text user "KEEP-OUT ZONE" (at 0 -19 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89d54789-7fe0-405d-93ad-ac071d5fbf25)
)
(fp_text user "5 mm" (at -11.2 -14.375 90) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp e6295b42-89a4-4ac7-9119-59106daf0f77)
)
(fp_text user "5 mm" (at 7.8 -19.075) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp e9382d89-bb68-45e1-a67c-2ff8155e3f1b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e44e2101-6e27-4a0d-9669-81d563069641)
)
(fp_line (start -9.12 -15.865) (end 9.12 -15.865) (layer "F.SilkS") (width 0.12) (tstamp 11385c9d-23f0-4468-9d35-5ce0d968ade8))
(fp_line (start 9.12 -15.865) (end 9.12 -9.445) (layer "F.SilkS") (width 0.12) (tstamp 241fbfa4-fc19-4a2f-85a3-aab9ef030802))
(fp_line (start 9.12 9.1) (end 9.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp 7b4a42d0-cec6-4a6f-99d2-99a1c24cc0cf))
(fp_line (start 9.12 9.88) (end 8.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp 80f4cabc-c1c6-4be9-957e-5ce390a82aa5))
(fp_line (start -9.12 9.88) (end -8.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp aaa2ba18-751d-48a1-ad61-1b7d1c283934))
(fp_line (start -9.12 -9.445) (end -9.5 -9.445) (layer "F.SilkS") (width 0.12) (tstamp b00c31cd-62ad-40d0-9e0e-49f66a86e87d))
(fp_line (start -9.12 -15.865) (end -9.12 -9.445) (layer "F.SilkS") (width 0.12) (tstamp e8cd77c7-090b-47b5-8de7-41f4b5cea45c))
(fp_line (start -9.12 9.1) (end -9.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp eca02d0a-152e-46f2-a218-b78047871464))
(fp_line (start 11.475 -20.75) (end -2 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 060f123e-6ad4-4715-a2f3-5cd5621f9c5c))
(fp_line (start 14 -16.43) (end 6 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 0a23cda8-89f5-4d41-addb-5f620c821edf))
(fp_line (start -14 -9.97) (end -14 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 1f248ae2-5a5a-42bf-b23f-db651f702009))
(fp_line (start 7.475 -20.75) (end -6 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 27e2323e-48d0-44d6-8f6d-b36160aea9a8))
(fp_line (start 13.475 -20.75) (end 0 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 31a01909-497e-419f-b238-e9b44b15a3b9))
(fp_line (start -4.525 -20.75) (end -14 -13.2) (layer "Dwgs.User") (width 0.1) (tstamp 40374e67-b4f3-4380-87d4-d7d874d0bff0))
(fp_line (start 14 -18.045) (end 4 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 517a6dbd-2009-494b-ba1a-37cd49a04916))
(fp_line (start -10.525 -20.75) (end -14 -18.045) (layer "Dwgs.User") (width 0.1) (tstamp 52ea4f03-9d69-4266-93c8-192089a4f82f))
(fp_line (start -6.525 -20.75) (end -14 -14.815) (layer "Dwgs.User") (width 0.1) (tstamp 5a3d7a28-53ce-4473-bfe3-196d6cc0dd6e))
(fp_line (start -8 -9.97) (end 5.475 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 67e35e0a-77e9-4a25-928b-43c27de68dee))
(fp_line (start 9.475 -20.75) (end -4 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 831dcfd5-d395-494b-a533-516d5cb0adcc))
(fp_line (start 14 -13.2) (end 10 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 870ac6c1-5c53-4a1a-8563-f3b8afeb73f7))
(fp_line (start 14 -20.75) (end -14 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 8c5ffeea-1488-42e0-ab84-089a7db0d579))
(fp_line (start 14 -14.815) (end 8 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 8ce37238-f214-44cf-ba1d-df1ec33a865c))
(fp_line (start 14 -9.97) (end 14 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 90766ea6-fdba-46f8-8cf4-d9e04b6715b2))
(fp_line (start 14 -11.585) (end 12 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp b2406600-a0ca-426e-85a4-e5989ce39275))
(fp_line (start 14 -19.66) (end 2 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp bf62867a-a551-429f-8f74-923e1a072441))
(fp_line (start -8.525 -20.75) (end -14 -16.43) (layer "Dwgs.User") (width 0.1) (tstamp c8e91576-b950-4679-95cf-f951dbc19666))
(fp_line (start 3.475 -20.75) (end -10 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp cf782e92-8d95-4520-938b-746062fc31c4))
(fp_line (start 1.475 -20.75) (end -12 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp d8d87417-4572-4162-b959-679609f62fe2))
(fp_line (start -12.525 -20.75) (end -14 -19.66) (layer "Dwgs.User") (width 0.1) (tstamp e552d8b4-9e04-4209-9cb7-41f42ba0b1d0))
(fp_line (start -0.525 -20.75) (end -14 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp e61dbb6e-b983-4427-b712-3df60ad739d3))
(fp_line (start 14 -9.97) (end -14 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp eb8a2b05-e064-42af-b5fc-d3e89175ae1a))
(fp_line (start -2.525 -20.75) (end -14 -11.585) (layer "Dwgs.User") (width 0.1) (tstamp f6c36f53-9f49-424e-a3b3-28759ad28a45))
(fp_line (start -13.8 -13.875) (end -13.6 -14.075) (layer "Cmts.User") (width 0.1) (tstamp 1d49e79f-f03a-419e-b959-45fc82342e28))
(fp_line (start -13.8 -13.875) (end -9.2 -13.875) (layer "Cmts.User") (width 0.1) (tstamp 1f782450-6cbf-436b-8770-1fdb21c8470a))
(fp_line (start 13.8 -13.875) (end 13.6 -13.675) (layer "Cmts.User") (width 0.1) (tstamp 4311fb48-be64-43e6-9452-b922a4d12382))
(fp_line (start -13.8 -13.875) (end -13.6 -13.675) (layer "Cmts.User") (width 0.1) (tstamp 4f2922a6-0f03-4bdb-9cbb-7f64acd8e0c6))
(fp_line (start 8.4 -16) (end 8.6 -16.2) (layer "Cmts.User") (width 0.1) (tstamp 687a6820-a009-4d0a-b6f6-1505e7508f93))
(fp_line (start 9.2 -13.875) (end 9.4 -14.075) (layer "Cmts.User") (width 0.1) (tstamp 6dfce9d4-9e07-4290-bc78-d4bb706a34d4))
(fp_line (start 13.8 -13.875) (end 13.6 -14.075) (layer "Cmts.User") (width 0.1) (tstamp 729881a5-a6be-4804-a528-66e41588011f))
(fp_line (start 8.4 -16) (end 8.4 -20.6) (layer "Cmts.User") (width 0.1) (tstamp 85e55387-3927-4df8-89f6-a3c649df5751))
(fp_line (start -9.2 -13.875) (end -9.4 -14.075) (layer "Cmts.User") (width 0.1) (tstamp a3911778-f1b6-4a13-8c88-355b1e617e23))
(fp_line (start -9.2 -13.875) (end -9.4 -13.675) (layer "Cmts.User") (width 0.1) (tstamp b01cad86-a9e6-4500-8563-3d040128abe0))
(fp_line (start 9.2 -13.875) (end 9.4 -13.675) (layer "Cmts.User") (width 0.1) (tstamp cb51e179-7aaf-44a6-b292-141895c430c7))
(fp_line (start 8.4 -20.6) (end 8.2 -20.4) (layer "Cmts.User") (width 0.1) (tstamp d9cbf717-4e2d-4788-87ad-c48886037228))
(fp_line (start 9.2 -13.875) (end 13.8 -13.875) (layer "Cmts.User") (width 0.1) (tstamp f2706685-90ad-4c0e-b764-b1e87444078b))
(fp_line (start 8.4 -16) (end 8.2 -16.2) (layer "Cmts.User") (width 0.1) (tstamp f442ce31-3f1d-451a-b9d4-51208f0d4252))
(fp_line (start 8.4 -20.6) (end 8.6 -20.4) (layer "Cmts.User") (width 0.1) (tstamp f78a74fd-c232-4f4c-ae8b-d80d4cd93ae6))
(fp_line (start -14.25 -21) (end -14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 3f641255-3726-4a5d-8ff3-ecec222147ec))
(fp_line (start -9.75 10.5) (end -9.75 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 6dd50f52-0b94-4325-bd68-6c6657eadd03))
(fp_line (start -14.25 -21) (end 14.25 -21) (layer "F.CrtYd") (width 0.05) (tstamp 70300468-88b9-4f25-a5f7-26c09132dcf9))
(fp_line (start -14.25 -9.72) (end -9.75 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 8e7a943d-dbe1-4bba-9694-95d38e8c8205))
(fp_line (start 14.25 -21) (end 14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 9fb75f02-0ecc-4c40-b4db-11d016ae7291))
(fp_line (start 9.75 -9.72) (end 14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp c9fd2174-7705-47bf-8603-2af1efc9c63c))
(fp_line (start -9.75 10.5) (end 9.75 10.5) (layer "F.CrtYd") (width 0.05) (tstamp caa4fabb-51c3-4709-8627-75222cd50fae))
(fp_line (start 9.75 -9.72) (end 9.75 10.5) (layer "F.CrtYd") (width 0.05) (tstamp eceee7a0-248b-4d08-b8e0-bdfb7b53f330))
(fp_line (start -9 -15.745) (end 9 -15.745) (layer "F.Fab") (width 0.1) (tstamp 36f52ec9-b04a-405a-8b2d-a68a5b2f28be))
(fp_line (start -9 -15.745) (end -9 -10.02) (layer "F.Fab") (width 0.1) (tstamp 496020f9-0aa5-4c6b-833c-d16f0b684dc5))
(fp_line (start -9 -9.02) (end -9 9.76) (layer "F.Fab") (width 0.1) (tstamp 4aee9f31-cccc-4d33-b8cd-044a53af5d7c))
(fp_line (start -8.5 -9.52) (end -9 -10.02) (layer "F.Fab") (width 0.1) (tstamp 8b844839-8e43-44f5-9f9c-5778557e6766))
(fp_line (start -9 -9.02) (end -8.5 -9.52) (layer "F.Fab") (width 0.1) (tstamp 9533bfde-b9a9-4492-ad65-f96a4399c3e1))
(fp_line (start -9 9.76) (end 9 9.76) (layer "F.Fab") (width 0.1) (tstamp defaa2a6-9e1e-445f-a8b3-c92a5ad5bc08))
(fp_line (start 9 9.76) (end 9 -15.745) (layer "F.Fab") (width 0.1) (tstamp e9ffde61-8d68-4330-9d6b-7608ae80299c))
(pad "1" smd rect locked (at -8.5 -8.255 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (pinfunction "GND") (pintype "power_in") (tstamp 5729c648-30bf-482b-8909-622c7471981a))
(pad "2" smd rect locked (at -8.5 -6.985 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 6e79ec4f-6f3c-4a85-a981-79270678faf8))
(pad "3" smd rect locked (at -8.5 -5.715 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "EN") (pinfunction "EN") (pintype "input") (tstamp ea6500c7-adad-44a2-b5de-49e3b02b8143))
(pad "4" smd rect locked (at -8.5 -4.445 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "SENSOR_VP") (pinfunction "SENSOR_VP") (pintype "input") (tstamp b80cf3b0-68dd-480b-8274-c4746828f227))
(pad "5" smd rect locked (at -8.5 -3.175 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "SENSOR_VN") (pinfunction "SENSOR_VN") (pintype "input") (tstamp 9585a76b-0ee1-48b9-87ae-739284ebbfa4))
(pad "6" smd rect locked (at -8.5 -1.905 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "DIAG0") (pinfunction "IO34") (pintype "input") (tstamp 3be5191b-78d6-4865-bb04-d2c8a644f7d5))
(pad "7" smd rect locked (at -8.5 -0.635 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "DIAG1") (pinfunction "IO35") (pintype "input") (tstamp 0281cd00-ade3-4164-815e-9675f0c269a6))
(pad "8" smd rect locked (at -8.5 0.635 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "Net-(JP1-Pad2)") (pinfunction "IO32") (pintype "bidirectional") (tstamp 19005f8c-45d2-4dde-974b-f62e6e2adafd))
(pad "9" smd rect locked (at -8.5 1.905 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "Net-(JP2-Pad2)") (pinfunction "IO33") (pintype "bidirectional") (tstamp 2d6430ae-da3f-4366-9872-64dd830fdc9a))
(pad "10" smd rect locked (at -8.5 3.175 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "STALLPLUS") (pinfunction "IO25") (pintype "bidirectional") (tstamp 07b586a2-f986-4915-b4ff-18e84f12aa67))
(pad "11" smd rect locked (at -8.5 4.445 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "STALLMINUS") (pinfunction "IO26") (pintype "bidirectional") (tstamp ebd25053-364b-4be4-81a6-e26683e52dad))
(pad "12" smd rect locked (at -8.5 5.715 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "DC0") (pinfunction "IO27") (pintype "bidirectional") (tstamp 69d229f4-a06f-4984-929e-a1e3daf1998b))
(pad "13" smd rect locked (at -8.5 6.985 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "IO14") (pinfunction "IO14") (pintype "bidirectional") (tstamp 8f924fcc-9963-48de-b928-243a60fdf563))
(pad "14" smd rect locked (at -8.5 8.255 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "IO12") (pinfunction "IO12") (pintype "bidirectional") (tstamp eebb4f8d-efa4-4607-8519-166caad87d89))
(pad "15" smd rect locked (at -5.715 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (pinfunction "GND") (pintype "passive") (tstamp f8a724c7-8120-4312-aa97-2e8ab408756a))
(pad "16" smd rect locked (at -4.445 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "IO13") (pinfunction "IO13") (pintype "bidirectional") (tstamp f423b629-06a7-4113-b48f-5c1c4ceca63c))
(pad "17" smd rect locked (at -3.175 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "SHD{slash}SD2") (pinfunction "SHD/SD2") (pintype "bidirectional") (tstamp 5521fe49-2fcb-402e-ae5d-71cab17b4d4e))
(pad "18" smd rect locked (at -1.905 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "SWP{slash}SD3") (pinfunction "SWP/SD3") (pintype "bidirectional") (tstamp 1dd81d81-dfc3-4d82-9fb5-0b1ab349a0ff))
(pad "19" smd rect locked (at -0.635 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "SCS{slash}CMD") (pinfunction "SCS/CMD") (pintype "bidirectional") (tstamp ff2d2d8c-ee66-4ba9-b59d-ae43443a123d))
(pad "20" smd rect locked (at 0.635 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "SCK{slash}CLK") (pinfunction "SCK/CLK") (pintype "bidirectional") (tstamp d95af6c8-bde2-4936-ad5e-3472798dd8d0))
(pad "21" smd rect locked (at 1.905 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "SDO{slash}SD0") (pinfunction "SDO/SD0") (pintype "bidirectional") (tstamp b44cbef3-a927-448b-b93b-0f94af774d00))
(pad "22" smd rect locked (at 3.175 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "SDI{slash}SD1") (pinfunction "SDI/SD1") (pintype "bidirectional") (tstamp 5bc4a3a3-fe2f-4715-bda5-24dac21a77be))
(pad "23" smd rect locked (at 4.445 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "IO15") (pinfunction "IO15") (pintype "bidirectional") (tstamp 63e9d7fa-c97d-42ee-ab2b-ca2c2d6907bb))
(pad "24" smd rect locked (at 5.715 9.255 180) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "IO2") (pinfunction "IO2") (pintype "bidirectional") (tstamp 644d8d5d-d9a1-41b8-9ebb-675a79fd4a6f))
(pad "25" smd rect locked (at 8.5 8.255 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "IO0") (pinfunction "IO0") (pintype "bidirectional") (tstamp d38d3e04-964a-433c-b45f-63d07312ef7d))
(pad "26" smd rect locked (at 8.5 6.985 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "DIR") (pinfunction "IO4") (pintype "bidirectional") (tstamp 992510b4-c797-4cea-8e61-b89d162e1a5b))
(pad "27" smd rect locked (at 8.5 5.715 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "STEP") (pinfunction "IO16") (pintype "bidirectional") (tstamp 35ede57d-d93e-4bd3-be95-8c0e6d3481c5))
(pad "28" smd rect locked (at 8.5 4.445 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "TMC_EN") (pinfunction "IO17") (pintype "bidirectional") (tstamp f323b220-151b-49a8-ac93-4330f478cd96))
(pad "29" smd rect locked (at 8.5 3.175 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "CS") (pinfunction "IO5") (pintype "bidirectional") (tstamp 312f3f61-6425-45d6-bde7-64f759b64aa9))
(pad "30" smd rect locked (at 8.5 1.905 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "SCK") (pinfunction "IO18") (pintype "bidirectional") (tstamp e539640c-8209-4a0e-b833-bc41fa5df8a0))
(pad "31" smd rect locked (at 8.5 0.635 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "MISO") (pinfunction "IO19") (pintype "bidirectional") (tstamp 01c87285-8f9e-49d0-b47b-d16dcd2d1c87))
(pad "32" smd rect locked (at 8.5 -0.635 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(U1-Pad32)") (pinfunction "NC") (pintype "no_connect") (tstamp a66a57c5-1d62-4e2d-9420-011160952094))
(pad "33" smd rect locked (at 8.5 -1.905 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "Net-(R7-Pad1)") (pinfunction "IO21") (pintype "bidirectional") (tstamp 76280c47-a67b-4239-8799-4044c88ab4a9))
(pad "34" smd rect locked (at 8.5 -3.175 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "RXD0") (pinfunction "RXD0/IO3") (pintype "bidirectional") (tstamp 9086a209-8bea-41f6-a9b3-ca3e9307f12d))
(pad "35" smd rect locked (at 8.5 -4.445 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "TXD0") (pinfunction "TXD0/IO1") (pintype "bidirectional") (tstamp 8e27361b-56d8-4e2e-949e-765a1c174c9e))
(pad "36" smd rect locked (at 8.5 -5.715 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "Net-(R8-Pad1)") (pinfunction "IO22") (pintype "bidirectional") (tstamp 16c49f8b-26d4-4f0d-bdee-2e690c46a1d0))
(pad "37" smd rect locked (at 8.5 -6.985 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "MOSI") (pinfunction "IO23") (pintype "bidirectional") (tstamp 44035c0d-7370-4fb7-9529-708f4702e839))
(pad "38" smd rect locked (at 8.5 -8.255 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (pinfunction "GND") (pintype "passive") (tstamp 6b3160eb-9f2a-4917-914b-e97fddb61561))
(pad "39" smd rect locked (at -1 -0.755 90) (size 5 5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (pinfunction "GND") (pintype "passive") (tstamp 71d77f34-ddf6-43af-8abe-c8f4cb46bcee))
(model "${KICAD6_3DMODEL_DIR}/RF_Module.3dshapes/ESP32-WROOM-32.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391EB7) (tstamp cd4406c8-1d31-4759-9e62-d689d76eb5ee)
(at 17.145 24.257 180)
(descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/cfe5a930-7571-44f3-9f0b-962327a14a46")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at -2.667 -0.127 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 1d052412-811d-4384-b62d-b10970534fb5)
)
(fp_text value "SolderJumper_3_Open" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e294d04e-3720-4cda-b63e-078484e0733c)
)
(fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 1641185a-e805-403b-b872-eb3450148cc8))
(fp_line (start -1.2 1.2) (end -1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp 3e63fcaa-261d-4d3c-a5b9-9e80616e71a6))
(fp_line (start 2.05 -0.3) (end 2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp 7f8f1c43-60e8-4996-bc14-4119dfb0064e))
(fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 918a6a26-88ff-465a-a552-2e52adce8a03))
(fp_line (start -1.2 1.2) (end -0.9 1.5) (layer "F.SilkS") (width 0.12) (tstamp a28887cd-2bdd-4ab6-b51e-99cd821ad1c9))
(fp_line (start -2.05 0.3) (end -2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp c564e755-48d6-44b3-a4f6-ab960a5df536))
(fp_line (start -1.5 1.5) (end -0.9 1.5) (layer "F.SilkS") (width 0.12) (tstamp ed456be0-07b8-43ac-86b3-64162a4bcc9a))
(fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1) (layer "F.SilkS") (width 0.12) (tstamp 12fc5fae-2589-481a-9c5c-1325ed3bb3b8))
(fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 41456f29-a703-4d12-85d0-c21ea7c0a452))
(fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1) (layer "F.SilkS") (width 0.12) (tstamp 84a6c803-a4ac-48df-95fb-6930cca4e25e))
(fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp adcccd0e-f5ea-4c83-bd8f-8b220d307709))
(fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 2b3b0810-cd1d-48a1-a104-fe015cf2af3c))
(fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 50e82998-94a9-4b38-a960-5b276fe8586e))
(fp_line (start 2.3 1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 774bd91e-6eb9-41ae-a7fd-20b88a031e1c))
(fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7de935c6-9119-4940-8080-9aaeda4f0cdd))
(pad "1" smd custom locked (at -1.3 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 37 "DCEN_CFG4") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.55 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.55 -0.75)
) (width 0) (fill yes))
) (tstamp d2711918-afcc-4a2b-9377-d1e27a7930b4))
(pad "2" smd rect locked (at 0 0 180) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 54 "Net-(JP1-Pad2)") (pinfunction "C") (pintype "input") (tstamp 0432af54-cd35-4c3c-88e6-bbc1a7d2c6b4))
(pad "3" smd custom locked (at 1.3 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 2 "GNDREF") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.55 0.75)
(xy -0.55 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 6933eb41-d471-4ac8-9862-a876011c4773))
)
(footprint "" (layer "F.Cu")
(tedit 622B5CE2) (tstamp dba4ad5b-8704-4fc8-9247-b9c4709cf1cf)
(at 30.861 40.005)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp da64d7a9-605e-4774-9d7e-acd2b184f656)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp bc3db71a-0a53-4081-b5aa-fe17bf15977b)
)
(pad "" np_thru_hole circle locked (at 0 0) (size 1.65 1.65) (drill 1.152) (layers *.Mask) (tstamp 877b6e9e-21db-4423-88dd-5713442699de))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" (layer "B.Cu")
(tedit 59FED5CB) (tstamp 07e7e87d-9255-44b7-964c-2876bb9fc44d)
(at 3.175 39.497 180)
(descr "Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/ee3b0dbc-b934-454c-909b-2dc42ec62fd9")
(attr through_hole)
(fp_text reference "J8" (at 4.385 2.27) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp fe3862ad-c819-4b65-9e75-6bbc512422a7)
)
(fp_text value "Conn_01x01_Male" (at 4.385 -2.27) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp aa939002-c65a-4bc5-8b33-1d5bc4c91f9d)
)
(fp_text user "${REFERENCE}" (at 2.77 0 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 180f785b-776f-4bd7-9484-793776580425)
)
(fp_line (start 4.1 0.2) (end 10.1 0.2) (layer "B.SilkS") (width 0.12) (tstamp 36e55dc7-b8dd-4b75-aa11-1a977430e4af))
(fp_line (start -1.27 0) (end -1.27 1.27) (layer "B.SilkS") (width 0.12) (tstamp 465b9a35-7fb3-44cf-baad-d436034be791))
(fp_line (start 1.44 -1.33) (end 4.1 -1.33) (layer "B.SilkS") (width 0.12) (tstamp 4b64ce61-cd9f-4068-855a-a918a6209675))
(fp_line (start 4.1 0.32) (end 10.1 0.32) (layer "B.SilkS") (width 0.12) (tstamp 66615e91-3e7a-41a3-a5de-d8915c5cd486))
(fp_line (start 4.1 0.38) (end 10.1 0.38) (layer "B.SilkS") (width 0.12) (tstamp 9110f47f-a990-4603-9888-a44e93a8108c))
(fp_line (start 4.1 -0.16) (end 10.1 -0.16) (layer "B.SilkS") (width 0.12) (tstamp 95b18c49-20bf-4d9f-b3e3-cebdbf176759))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "B.SilkS") (width 0.12) (tstamp 965e9f3d-a63a-4e76-b8e8-1c3bcdc42f90))
(fp_line (start 4.1 -0.28) (end 10.1 -0.28) (layer "B.SilkS") (width 0.12) (tstamp 9c162611-d326-45c2-97a0-d5c1a6e19742))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "B.SilkS") (width 0.12) (tstamp a3ab1103-5095-446b-a5db-e9210387a84b))
(fp_line (start 4.1 -1.33) (end 4.1 1.33) (layer "B.SilkS") (width 0.12) (tstamp b3d79b21-e9ec-46a6-9b4b-229c9984a42a))
(fp_line (start 4.1 -0.04) (end 10.1 -0.04) (layer "B.SilkS") (width 0.12) (tstamp c7db6f12-37a4-4f57-ae11-a85dc3d9a3a4))
(fp_line (start -1.27 1.27) (end 0 1.27) (layer "B.SilkS") (width 0.12) (tstamp cb23e2e7-de0c-4a6a-9419-1c472c13f509))
(fp_line (start 10.1 -0.38) (end 4.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp d926cf39-414a-4944-b6d1-f15d112b5842))
(fp_line (start 4.1 0.08) (end 10.1 0.08) (layer "B.SilkS") (width 0.12) (tstamp dd70541c-ed72-41a4-b278-03a490cbdaf1))
(fp_line (start 1.44 1.33) (end 1.44 -1.33) (layer "B.SilkS") (width 0.12) (tstamp df5d2842-95e0-4dc7-91e0-af6aa7f859bb))
(fp_line (start 10.1 0.38) (end 10.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp e0a5752b-7977-4fe6-89e3-7b0cd68f3242))
(fp_line (start 4.1 1.33) (end 1.44 1.33) (layer "B.SilkS") (width 0.12) (tstamp f64ffca7-3c88-48d2-8d78-4bd7ec67bd1b))
(fp_line (start -1.8 -1.8) (end 10.55 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp 0da7e2aa-d9f3-4593-ac1b-d89c546ab178))
(fp_line (start -1.8 1.8) (end -1.8 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp 0daddb18-1491-4767-9ffd-66c8a8ce3cbd))
(fp_line (start 10.55 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 5985ca3b-83e7-485c-a804-db4e4c6c7fcd))
(fp_line (start 10.55 -1.8) (end 10.55 1.8) (layer "B.CrtYd") (width 0.05) (tstamp b7c70258-e563-4ab0-a10c-bab04504f68f))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 029d749e-2289-4769-a0ce-e768bbda0cd0))
(fp_line (start 4.04 -1.27) (end 1.5 -1.27) (layer "B.Fab") (width 0.1) (tstamp 0ecfe0e1-844f-49ac-b5dc-cd55b19a7c78))
(fp_line (start 4.04 1.27) (end 4.04 -1.27) (layer "B.Fab") (width 0.1) (tstamp 1eea39a5-2762-4e3a-8c74-b0e5bc37cc89))
(fp_line (start 2.135 1.27) (end 4.04 1.27) (layer "B.Fab") (width 0.1) (tstamp 24b42847-745f-4b13-9d2d-3ca8b56bc9de))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "B.Fab") (width 0.1) (tstamp 8b14e97f-a7f6-455f-85ae-a0954b928855))
(fp_line (start 1.5 -1.27) (end 1.5 0.635) (layer "B.Fab") (width 0.1) (tstamp 98ff4f6d-a60b-43b0-818a-c3cd573da89f))
(fp_line (start 10.04 0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp a899f147-0456-4c4c-a26b-178ed678750a))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "B.Fab") (width 0.1) (tstamp ba659ad4-f6ac-4fc8-b519-f7116425af73))
(fp_line (start 1.5 0.635) (end 2.135 1.27) (layer "B.Fab") (width 0.1) (tstamp d9e64fec-799c-44df-859d-e1ddb2b2b9a0))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "B.Fab") (width 0.1) (tstamp e710d65f-4900-4930-9990-68422a72b78f))
(fp_line (start -0.32 0.32) (end -0.32 -0.32) (layer "B.Fab") (width 0.1) (tstamp f8dfbcec-1704-46b0-8ba3-862aa1011c94))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "STALLPLUS") (pinfunction "Pin_1") (pintype "passive") (tstamp e7e186e0-cb0c-4704-816f-05a9b3696b56))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 0868c0e6-6949-44ef-acfc-db448b6fd0bd)
(at 16.51 28.956)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/60e8414a-5144-4477-96c8-e120e9deb07b")
(attr smd)
(fp_text reference "R1" (at 0 1.016) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)) (justify mirror))
(tstamp ae636285-b57f-4dd4-9df9-bbae0c3b26e6)
)
(fp_text value "R2k" (at 0 -1.17) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b8fc4a69-495f-4b24-a488-f630760fda3e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp d8e8f525-f9a0-415c-a2c1-83be23df7a49)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 49059b1d-fdc0-45d7-94bc-69b9ba1a253a))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "B.SilkS") (width 0.12) (tstamp 7831d12c-9425-49de-a13e-7546114c65d7))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 39153e13-8246-45c4-a2db-13b350584acd))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 405e5e44-a9f9-43e5-a620-79cfda9fa883))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 80256285-9727-49d3-bf8e-83c4091c39de))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp fad9e2a8-8986-4456-94e0-e74bd92f7ca2))
(fp_line (start -0.525 -0.27) (end -0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp 3ee5263c-fe3f-40dc-b1f5-e573a6dc6e4b))
(fp_line (start 0.525 0.27) (end 0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 8de65a40-061b-4358-8661-c9d2e1557b3b))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp c5417958-dc5e-4353-aaaf-013cdad49301))
(fp_line (start -0.525 0.27) (end 0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp edc700c2-21dd-4270-a103-a3d928b1ace1))
(pad "1" smd roundrect locked (at -0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "5V0") (pintype "passive") (tstamp ba3920e2-8055-4a33-b972-366647528c0f))
(pad "2" smd roundrect locked (at 0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D1-Pad2)") (pintype "passive") (tstamp b922e737-505b-44fa-81af-23bf3e30d66e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.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_Horizontal" (layer "B.Cu")
(tedit 59FED5CB) (tstamp 18ad7282-56dc-41c8-8f45-e7b5c4307a13)
(at 4.445 4.567 180)
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/911e095e-8926-48ad-844e-151fd6fadf2f")
(attr through_hole)
(fp_text reference "J2" (at 4.385 2.27) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1a52ed52-a350-46c1-9a3f-2c4738963a98)
)
(fp_text value "Conn_01x02_Male" (at 4.385 -4.81) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 747ba94b-df17-45f8-85fc-ca61f9efa47e)
)
(fp_text user "${REFERENCE}" (at 2.77 -1.27 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d7adcb4f-3068-4202-ac2f-5d5bf4a9d6cb)
)
(fp_line (start 1.042929 -2.16) (end 1.44 -2.16) (layer "B.SilkS") (width 0.12) (tstamp 251ade2c-e1c8-4335-ab15-b1573b3e543c))
(fp_line (start 4.1 0.2) (end 10.1 0.2) (layer "B.SilkS") (width 0.12) (tstamp 2efc2f7e-7ba6-4ee3-a7b0-b8543b274791))
(fp_line (start -1.27 0) (end -1.27 1.27) (layer "B.SilkS") (width 0.12) (tstamp 3f791c88-1ce8-4e25-b812-9e453779091b))
(fp_line (start -1.27 1.27) (end 0 1.27) (layer "B.SilkS") (width 0.12) (tstamp 42a98085-6f4f-450d-8ff0-b5f8a7ec8712))
(fp_line (start 4.1 0.08) (end 10.1 0.08) (layer "B.SilkS") (width 0.12) (tstamp 4bfa9f00-65ce-48bb-9692-f4d6ed23bd34))
(fp_line (start 4.1 0.38) (end 10.1 0.38) (layer "B.SilkS") (width 0.12) (tstamp 5baa6719-6941-4daa-95b4-f0be02d42f3d))
(fp_line (start 4.1 -0.28) (end 10.1 -0.28) (layer "B.SilkS") (width 0.12) (tstamp 8ae35a11-96b8-43df-96b7-aa14ea361d4c))
(fp_line (start 1.44 1.33) (end 1.44 -3.87) (layer "B.SilkS") (width 0.12) (tstamp 96534f41-18b2-4268-aa41-5c7675c975dd))
(fp_line (start 10.1 0.38) (end 10.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 9e8d8f17-87d8-4b2e-93fe-716fa5e1b184))
(fp_line (start 10.1 -2.92) (end 4.1 -2.92) (layer "B.SilkS") (width 0.12) (tstamp a37ea250-0edd-4e02-a2b9-f8251c32c3b0))
(fp_line (start 1.44 -1.27) (end 4.1 -1.27) (layer "B.SilkS") (width 0.12) (tstamp a8013ca7-68d1-45b0-970a-09f3d1616a39))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "B.SilkS") (width 0.12) (tstamp aa56c6a9-96c7-45fe-a97c-08c7b3bd2527))
(fp_line (start 4.1 -0.16) (end 10.1 -0.16) (layer "B.SilkS") (width 0.12) (tstamp b9352096-1dbd-4b34-8959-ea42ca8366a5))
(fp_line (start 10.1 -2.16) (end 10.1 -2.92) (layer "B.SilkS") (width 0.12) (tstamp bfe3896b-6e9d-4ca0-8583-822dbbf521fa))
(fp_line (start 4.1 -0.04) (end 10.1 -0.04) (layer "B.SilkS") (width 0.12) (tstamp c4f8e878-0423-41d3-85fa-46f38983c67a))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "B.SilkS") (width 0.12) (tstamp c5b39832-ddf7-48ac-8791-e76c7e0f7f1b))
(fp_line (start 1.042929 -2.92) (end 1.44 -2.92) (layer "B.SilkS") (width 0.12) (tstamp ca8536ba-b4ba-40a2-9889-dc4fa9f087de))
(fp_line (start 1.44 -3.87) (end 4.1 -3.87) (layer "B.SilkS") (width 0.12) (tstamp da3d89a2-269b-4b62-be98-526e1107ea0b))
(fp_line (start 4.1 1.33) (end 1.44 1.33) (layer "B.SilkS") (width 0.12) (tstamp dae881eb-5d09-40cc-889c-e19fe13bfa5f))
(fp_line (start 4.1 -2.16) (end 10.1 -2.16) (layer "B.SilkS") (width 0.12) (tstamp deec12b7-b162-462c-b0ca-f15995448d8d))
(fp_line (start 10.1 -0.38) (end 4.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp e8795dfb-7cc2-4438-a3db-8ee41718606c))
(fp_line (start 4.1 -3.87) (end 4.1 1.33) (layer "B.SilkS") (width 0.12) (tstamp efec12ea-41ef-480d-a42d-afbba67e8486))
(fp_line (start 4.1 0.32) (end 10.1 0.32) (layer "B.SilkS") (width 0.12) (tstamp f3ae8281-6a10-479d-af01-48a0a5cdab93))
(fp_line (start -1.8 -4.35) (end 10.55 -4.35) (layer "B.CrtYd") (width 0.05) (tstamp 618f7737-a751-47ba-b7a9-784768c4c22a))
(fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer "B.CrtYd") (width 0.05) (tstamp 73b5980f-8a25-4a38-a8fd-f93f5ecd76d5))
(fp_line (start 10.55 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 9e1db938-fe2f-4914-b1db-862a585dc807))
(fp_line (start 10.55 -4.35) (end 10.55 1.8) (layer "B.CrtYd") (width 0.05) (tstamp cc1d72d3-c085-42d5-b51a-f25583124fcb))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 10c876a8-ef15-4f83-ae6a-3eb1fea2743a))
(fp_line (start 4.04 1.27) (end 4.04 -3.81) (layer "B.Fab") (width 0.1) (tstamp 1d177ac1-712d-406c-8549-382b4a61208b))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "B.Fab") (width 0.1) (tstamp 2f691267-feeb-4964-a53b-97ebf68163d0))
(fp_line (start 4.04 -3.81) (end 1.5 -3.81) (layer "B.Fab") (width 0.1) (tstamp 34e41f35-7545-4f1a-8fb0-63e57b3abf99))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "B.Fab") (width 0.1) (tstamp 3a2c958d-7de0-47a9-a851-0ba12b7f918c))
(fp_line (start 4.04 -2.22) (end 10.04 -2.22) (layer "B.Fab") (width 0.1) (tstamp 60bfe360-791c-4b4d-8701-dc29f0022c68))
(fp_line (start 1.5 -3.81) (end 1.5 0.635) (layer "B.Fab") (width 0.1) (tstamp 69ffe98b-6d70-4991-bdde-90ce18659bec))
(fp_line (start -0.32 -2.86) (end 1.5 -2.86) (layer "B.Fab") (width 0.1) (tstamp 6f941dd4-4b6b-421d-aa6c-bf652003e4a0))
(fp_line (start 2.135 1.27) (end 4.04 1.27) (layer "B.Fab") (width 0.1) (tstamp 7de9e503-ef79-4e1b-8577-de97a826558f))
(fp_line (start 1.5 0.635) (end 2.135 1.27) (layer "B.Fab") (width 0.1) (tstamp 9386a877-7e78-4a40-964b-c10bc71e6a97))
(fp_line (start -0.32 -2.22) (end -0.32 -2.86) (layer "B.Fab") (width 0.1) (tstamp 9b2243e1-b4a5-4d8d-b925-203eb710e075))
(fp_line (start 10.04 0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 9ca2b307-c4e9-4dd5-81b1-90bd42147710))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "B.Fab") (width 0.1) (tstamp b490363d-9e90-4c99-b62b-9477c416db8e))
(fp_line (start 4.04 -2.86) (end 10.04 -2.86) (layer "B.Fab") (width 0.1) (tstamp bf0e9f59-5511-4551-9b84-c60079f1989e))
(fp_line (start 10.04 -2.22) (end 10.04 -2.86) (layer "B.Fab") (width 0.1) (tstamp ec6f0381-cb64-4f27-8adf-3225d809867e))
(fp_line (start -0.32 0.32) (end -0.32 -0.32) (layer "B.Fab") (width 0.1) (tstamp f4b19e96-c653-4685-9c86-034b9927bb91))
(fp_line (start -0.32 -2.22) (end 1.5 -2.22) (layer "B.Fab") (width 0.1) (tstamp fb09480b-5625-4b1d-9ae9-df3c312e2ef4))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "RXD0") (pinfunction "Pin_1") (pintype "passive") (tstamp fd869977-3741-498c-9fc2-97726c70209a))
(pad "2" thru_hole oval locked (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "TXD0") (pinfunction "Pin_2") (pintype "passive") (tstamp 19da198b-4a68-4388-9449-8b18f766d107))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 2f7c6ef9-524f-40a2-a291-3efcde1c335f)
(at 5.207 32.385)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "CompactMotor.kicad_sch")
(property "Sheetname" "")
(path "/9c3ced33-0622-4337-8ec3-44ebfe15d03e")
(attr smd)
(fp_text reference "R6" (at 1.524 0 90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)) (justify mirror))
(tstamp 83798479-f0fa-4868-989c-5929181b3a51)
)
(fp_text value "R10k" (at 0 -1.17) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c8c4cf02-de0c-4803-9f56-de96270d0b19)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp 3cad9413-7301-4d64-887b-89a9f3a340bf)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "B.SilkS") (width 0.12) (tstamp d7738e23-39e7-45fa-a57a-33e261ba1cac))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "B.SilkS") (width 0.12) (tstamp fe13e840-a310-4178-ad2a-d2b38c97ac88))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 6692ac86-fa25-4ca7-8921-f53ad3ab28ae))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 69bfa176-119f-49d4-a439-bcd5003e0938))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp dc892a85-e3c8-49c8-a6e4-a655a4cceab3))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp e88ad43a-248d-4fb9-8e45-ff911d6ff849))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 2e76f25d-a410-4803-bce3-90ab15ef1ec0))
(fp_line (start -0.525 0.27) (end 0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp 56e39e9b-b533-43c7-b466-87d2e625ed58))
(fp_line (start -0.525 -0.27) (end -0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp 5dcfa8a9-0f06-4240-8d34-3df41c6b4edd))
(fp_line (start 0.525 0.27) (end 0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 99fdfff0-1a62-4939-b383-739114f63876))
(pad "1" smd roundrect locked (at -0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "3V3") (pintype "passive") (tstamp 3b0ba36c-2b0f-42db-bef8-5588f2215ba1))
(pad "2" smd roundrect locked (at 0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "EN") (pintype "passive") (tstamp 0fbed215-7bb7-4626-aa43-55db46f02b3b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 346fac55-294e-429c-9389-2ea5e1c51005)
(at 23.495 28.702 135)