-
Notifications
You must be signed in to change notification settings - Fork 3
/
board.kicad_pcb
18026 lines (17954 loc) · 738 KB
/
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")
(title_block
(title "Developower")
(date "2019-12-23")
(rev "2.0")
)
(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)
)
(setup
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 104.15 135.28)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+5V")
(net 3 "+3V3")
(net 4 "Net-(D2-Pad2)")
(net 5 "/TX")
(net 6 "/RX")
(net 7 "/REF")
(net 8 "/A0")
(net 9 "/A1")
(net 10 "/A2")
(net 11 "/A3")
(net 12 "/A4")
(net 13 "/A5")
(net 14 "/A6")
(net 15 "/A7")
(net 16 "/D8")
(net 17 "/D12")
(net 18 "/D13")
(net 19 "Net-(R7-Pad2)")
(net 20 "Net-(R8-Pad2)")
(net 21 "Net-(D1-Pad2)")
(net 22 "Net-(D4-Pad2)")
(net 23 "/D9")
(net 24 "/D10")
(net 25 "/LASER")
(net 26 "Net-(Q1-Pad1)")
(net 27 "Net-(Q2-Pad1)")
(net 28 "Net-(C8-Pad1)")
(net 29 "Net-(D3-Pad1)")
(net 30 "Net-(R2-Pad2)")
(net 31 "Net-(J14-Pad4)")
(net 32 "Net-(J14-Pad3)")
(net 33 "Net-(J14-Pad2)")
(net 34 "Net-(J14-Pad1)")
(net 35 "12V_36V")
(net 36 "/V_SPINDLE")
(net 37 "Net-(J2-Pad13)")
(net 38 "Net-(J4-Pad13)")
(net 39 "Net-(J6-Pad13)")
(net 40 "/D2")
(net 41 "/D3")
(net 42 "/D4")
(net 43 "/D5")
(net 44 "/D6")
(net 45 "/D7")
(net 46 "/SPINDLE")
(net 47 "Net-(J2-Pad3)")
(net 48 "Net-(J2-Pad4)")
(net 49 "Net-(J2-Pad5)")
(net 50 "Net-(J2-Pad6)")
(net 51 "Net-(J11-Pad1)")
(net 52 "Net-(J11-Pad2)")
(net 53 "Net-(J11-Pad3)")
(net 54 "Net-(J11-Pad4)")
(net 55 "Net-(C5-Pad2)")
(net 56 "+12V")
(net 57 "/spindle_ctl")
(net 58 "/D11_TOOL")
(net 59 "unconnected-(J8-Pad3)")
(net 60 "unconnected-(J8-Pad28)")
(net 61 "unconnected-(K1-Pad4)")
(footprint "Developower:Pololu_Breakout-16_15.2x20.3mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e00f94a)
(at 109.85 73.28)
(descr "Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8\\")
(tags "Pololu Breakout")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e012903")
(attr through_hole)
(fp_text reference "J2" (at 10.15 -0.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)
)
(fp_text value "Pololu_Breakout_A4988" (at 6.35 20.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)
)
(fp_line (start -1.4 -1.4) (end -1.4 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(fp_line (start -1.4 1.27) (end -1.4 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
(fp_line (start -1.4 19.18) (end 14.1 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(fp_line (start 0 -1.4) (end -1.4 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(fp_line (start 1.27 -1.4) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(fp_line (start 1.27 1.27) (end -1.4 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(fp_line (start 1.27 1.27) (end 1.27 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(fp_line (start 11.43 -1.4) (end 11.43 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(fp_line (start 14.1 -1.4) (end 1.27 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(fp_line (start 14.1 19.18) (end 14.1 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(fp_line (start -1.53 -1.52) (end -1.53 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start -1.53 -1.52) (end 14.21 -1.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(fp_line (start 14.21 19.3) (end -1.53 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start 14.21 19.3) (end 14.21 -1.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(fp_line (start -1.27 19.05) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(fp_line (start 0 -1.27) (end 13.97 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(fp_line (start 13.97 -1.27) (end 13.97 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(fp_line (start 13.97 19.05) (end -1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 47 "Net-(J2-Pad3)") (pinfunction "1B") (pintype "output") (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 48 "Net-(J2-Pad4)") (pinfunction "1A") (pintype "output") (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 49 "Net-(J2-Pad5)") (pinfunction "2A") (pintype "output") (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 50 "Net-(J2-Pad6)") (pinfunction "2B") (pintype "output") (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 56 "+12V") (pinfunction "VMOT") (pintype "power_in") (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(pad "9" thru_hole oval (at 12.7 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 16 "/D8") (pinfunction "~{ENABLE}") (pintype "input") (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(pad "10" thru_hole oval (at 12.7 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "MS1") (pintype "input") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(pad "11" thru_hole oval (at 12.7 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "MS2") (pintype "input") (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(pad "12" thru_hole oval (at 12.7 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "MS3") (pintype "input") (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(pad "13" thru_hole oval (at 12.7 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 37 "Net-(J2-Pad13)") (pinfunction "~{RESET}") (pintype "input") (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(pad "14" thru_hole oval (at 12.7 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 37 "Net-(J2-Pad13)") (pinfunction "~{SLEEP}") (pintype "input") (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(pad "15" thru_hole oval (at 12.7 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 42 "/D4") (pinfunction "STEP") (pintype "input") (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(pad "16" thru_hole oval (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 45 "/D7") (pinfunction "DIR") (pintype "input") (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.step"
(offset (xyz 12.75 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/lib/3dmodels/A4988 RED.step"
(offset (xyz 0 0 7.1))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Developower:Pololu_Breakout-16_15.2x20.3mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e00f972)
(at 127.15 73.28)
(descr "Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8\\")
(tags "Pololu Breakout")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e013521")
(attr through_hole)
(fp_text reference "J4" (at 10.0388 -0.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(fp_text value "Pololu_Breakout_A4988" (at 6.35 20.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(fp_line (start -1.4 -1.4) (end -1.4 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
(fp_line (start -1.4 1.27) (end -1.4 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
(fp_line (start -1.4 19.18) (end 14.1 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
(fp_line (start 0 -1.4) (end -1.4 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3490fa5-5a27-423b-af60-53609669542c))
(fp_line (start 1.27 -1.4) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
(fp_line (start 1.27 1.27) (end -1.4 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
(fp_line (start 1.27 1.27) (end 1.27 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
(fp_line (start 11.43 -1.4) (end 11.43 19.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(fp_line (start 14.1 -1.4) (end 1.27 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(fp_line (start 14.1 19.18) (end 14.1 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(fp_line (start -1.53 -1.52) (end -1.53 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_line (start -1.53 -1.52) (end 14.21 -1.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(fp_line (start 14.21 19.3) (end -1.53 19.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(fp_line (start 14.21 19.3) (end 14.21 -1.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
(fp_line (start -1.27 19.05) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(fp_line (start 0 -1.27) (end 13.97 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start 13.97 -1.27) (end 13.97 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start 13.97 19.05) (end -1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 51 "Net-(J11-Pad1)") (pinfunction "1B") (pintype "output") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 52 "Net-(J11-Pad2)") (pinfunction "1A") (pintype "output") (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 53 "Net-(J11-Pad3)") (pinfunction "2A") (pintype "output") (tstamp e8314017-7be6-4011-9179-37449a29b311))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 54 "Net-(J11-Pad4)") (pinfunction "2B") (pintype "output") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 56 "+12V") (pinfunction "VMOT") (pintype "power_in") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(pad "9" thru_hole oval (at 12.7 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 16 "/D8") (pinfunction "~{ENABLE}") (pintype "input") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
(pad "10" thru_hole oval (at 12.7 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "MS1") (pintype "input") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(pad "11" thru_hole oval (at 12.7 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "MS2") (pintype "input") (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(pad "12" thru_hole oval (at 12.7 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "MS3") (pintype "input") (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(pad "13" thru_hole oval (at 12.7 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 38 "Net-(J4-Pad13)") (pinfunction "~{RESET}") (pintype "input") (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(pad "14" thru_hole oval (at 12.7 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 38 "Net-(J4-Pad13)") (pinfunction "~{SLEEP}") (pintype "input") (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(pad "15" thru_hole oval (at 12.7 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 41 "/D3") (pinfunction "STEP") (pintype "input") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(pad "16" thru_hole oval (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 44 "/D6") (pinfunction "DIR") (pintype "input") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.step"
(offset (xyz 12.75 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/lib/3dmodels/A4988 RED.step"
(offset (xyz 0 0 7.1))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e00f9d2)
(at 192.15 66.9)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e01f1b5")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1732b93f-cd0e-4ca4-a905-bb406354ca33)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8274862-c966-456a-98d5-9c42f72963c1)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 58126faf-01a4-4f91-8e8c-ca9e47b48048))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 44b926bf-8bdd-4191-846d-2dfabab2cecb))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp efd7a1e0-5bed-4583-a94e-5ccec9e4eb74))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e00f9e2)
(at 192.15 131.48)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e02062a")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72366acb-6c86-4134-89df-01ed6e4dc8e0)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7274c82d-0cb9-47de-b093-7d848f491410)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 112371bd-7aa2-4b47-b184-50d12afc2534)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp b66b83a0-313f-4b03-b851-c6e9577a6eb7))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp dad2f9a9-292b-4f7e-9524-a263f3c1ba74))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 5c32b099-dba7-4228-8a5e-c2156f635ce2))
)
(footprint "Developower:JST_S4B-XH-A(LF)(SN)" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e010981)
(at 130.55 67.38)
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e017c55")
(attr through_hole)
(fp_text reference "J11" (at 0.05 -3.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.12)))
(tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)
)
(fp_text value "Y" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.12)))
(tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(fp_line (start -6.2 -9.2) (end 6.2 -9.2)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(fp_line (start -6.2 2.3) (end -6.2 -9.2)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(fp_line (start 6.2 -9.2) (end 6.2 2.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(fp_line (start 6.2 2.3) (end -6.2 2.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(fp_circle (center -3.81 1.905) (end -3.7 1.905)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(fp_line (start -6.5 -9.5) (end 6.5 -9.5)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(fp_line (start -6.5 2.6) (end -6.5 -9.5)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(fp_line (start 6.5 -9.5) (end 6.5 2.6)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(fp_line (start 6.5 2.6) (end -6.5 2.6)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(pad "1" thru_hole rect (at -3.75 0) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 51 "Net-(J11-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(pad "2" thru_hole circle (at -1.25 0) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 52 "Net-(J11-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(pad "3" thru_hole circle (at 1.25 0) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 53 "Net-(J11-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(pad "4" thru_hole circle (at 3.75 0) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 54 "Net-(J11-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(model "${KIPRJMOD}/lib/3dmodels/jst-xh-2-54mm-generic-connector-set-1.snapshot.31/JST - XH - Thru (R) - 4Pin - 2.54mm.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Developower:JST_S2B-XH-A(LF)(SN)" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e0109dd)
(at 169.05 67.48)
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e0124bc")
(attr through_hole)
(fp_text reference "J15" (at 0 -3.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.12)))
(tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
)
(fp_text value "12V-36V" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.12)))
(tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
)
(fp_line (start -3.7 -9.2) (end 3.7 -9.2)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
(fp_line (start -3.7 2.3) (end -3.7 -9.2)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
(fp_line (start 3.7 -9.2) (end 3.7 2.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
(fp_line (start 3.7 2.3) (end -3.7 2.3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
(fp_circle (center -1.27 1.905) (end -1.17 1.905)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(fp_line (start -4 -9.5) (end 4 -9.5)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start -4 2.6) (end -4 -9.5)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(fp_line (start 4 -9.5) (end 4 2.6)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start 4 2.6) (end -4 2.6)
(stroke (width 0.127) (type solid)) (layer "F.CrtYd") (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(pad "1" thru_hole rect (at -1.25 0) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "12V_36V") (pinfunction "Pin_1") (pintype "passive") (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
(pad "2" thru_hole circle (at 1.25 0) (size 1.508 1.508) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
(model "${KIPRJMOD}/lib/3dmodels/jst-xh-2-54mm-generic-connector-set-1.snapshot.31/JST - XH - Thru (R) - 2Pin - 2.54mm.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x14_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e010a0f)
(at 115.15 128.98 90)
(descr "Through hole straight pin header, 2x14, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x14 2.54mm double row")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e01b1fc")
(attr through_hole)
(fp_text reference "J9" (at 2.9734 -2.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)
)
(fp_text value "Misc" (at 1.27 35.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76)
)
(fp_text user "${REFERENCE}" (at 1.27 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start -1.33 1.27) (end -1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start -1.33 34.35) (end 3.87 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start 3.87 -1.33) (end 3.87 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start -1.8 -1.8) (end -1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start -1.8 34.8) (end 4.35 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(fp_line (start 4.35 34.8) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(fp_line (start -1.27 34.29) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(fp_line (start 3.81 -1.27) (end 3.81 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(fp_line (start 3.81 34.29) (end -1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/D12") (pinfunction "Pin_2") (pintype "passive") (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(pad "4" thru_hole oval (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/D12") (pinfunction "Pin_4") (pintype "passive") (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(pad "6" thru_hole oval (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/D10") (pinfunction "Pin_6") (pintype "passive") (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(pad "8" thru_hole oval (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/D10") (pinfunction "Pin_8") (pintype "passive") (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(pad "9" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(pad "10" thru_hole oval (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/D9") (pinfunction "Pin_10") (pintype "passive") (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "11" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(pad "12" thru_hole oval (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/D9") (pinfunction "Pin_12") (pintype "passive") (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(pad "13" thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "+5V") (pinfunction "Pin_13") (pintype "passive") (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(pad "14" thru_hole oval (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(pad "15" thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+3V3") (pinfunction "Pin_15") (pintype "passive") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(pad "16" thru_hole oval (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(pad "17" thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/D13") (pinfunction "Pin_17") (pintype "passive") (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(pad "18" thru_hole oval (at 2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/REF") (pinfunction "Pin_18") (pintype "passive") (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(pad "19" thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/A0") (pinfunction "Pin_19") (pintype "passive") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(pad "20" thru_hole oval (at 2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/A1") (pinfunction "Pin_20") (pintype "passive") (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(pad "21" thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/A2") (pinfunction "Pin_21") (pintype "passive") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(pad "22" thru_hole oval (at 2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/A3") (pinfunction "Pin_22") (pintype "passive") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(pad "23" thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/A4") (pinfunction "Pin_23") (pintype "passive") (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(pad "24" thru_hole oval (at 2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/A5") (pinfunction "Pin_24") (pintype "passive") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(pad "25" thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/A6") (pinfunction "Pin_25") (pintype "passive") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(pad "26" thru_hole oval (at 2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/A7") (pinfunction "Pin_26") (pintype "passive") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(pad "27" thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/TX") (pinfunction "Pin_27") (pintype "passive") (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(pad "28" thru_hole oval (at 2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/RX") (pinfunction "Pin_28") (pintype "passive") (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Developower:BarrelJack_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e010a32)
(at 120.95 97.28)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e019adc")
(attr through_hole)
(fp_text reference "J7" (at -11.556 5.8258) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
)
(fp_text value "12-36V" (at -6.2 -5.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3fab380-991d-404b-95d5-1c209b047b6e)
)
(fp_text user "${REFERENCE}" (at -3 -2.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66ca01b3-51ff-4294-9b77-4492e98f6aec)
)
(fp_line (start -13.8 -4.6) (end 0.9 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08ec951f-e7eb-41cf-9589-697107a98e88))
(fp_line (start -13.8 4.6) (end -13.8 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
(fp_line (start -5 4.6) (end -13.8 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56d2bc5d-fd72-4542-ab0f-053a5fd60efa))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2b363dd-8e47-4a76-a142-e00e28334875))
(fp_line (start 0.9 -4.6) (end 0.9 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2eea20e6-112c-411a-b615-885ae773135a))
(fp_line (start 0.9 1.9) (end 0.9 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41c18011-40db-4384-9ba4-c0158d0d9d6a))
(fp_line (start 0.9 4.6) (end -1 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fb27e11-fde6-4a25-adbb-e9684771b369))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62f15a9a-9893-486e-9ad0-ea43f88fc9e7))
(fp_line (start -14 4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c512fed3-9770-476b-b048-e781b4f3cd72))
(fp_line (start -5 4.75) (end -14 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4346fe55-f906-453a-b81a-1c013104a598))
(fp_line (start -5 6.75) (end -5 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e6153e6-2c19-46de-9a8e-b310a2a07861))
(fp_line (start -1 4.75) (end -1 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb1a49ef-0a06-4f40-9008-61d1d1c36198))
(fp_line (start -1 6.75) (end -5 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f0f7bb5-ade7-4a81-82b4-43be6a8ad05c))
(fp_line (start 1 -4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6a5c856-f2b5-40eb-a958-b666a0d408a0))
(fp_line (start 1 -4.5) (end 1 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c15b2f75-2e10-4b71-bebb-e2b872171b92))
(fp_line (start 1 -4.5) (end 1 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b25e886-ded1-450a-ada1-ece4208052e4))
(fp_line (start 1 -2) (end 2 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffa442c7-cbef-461f-8613-c211201cec06))
(fp_line (start 1 2) (end 1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 319c683d-aed6-4e7d-aee2-ff9871746d52))
(fp_line (start 1 4.75) (end -1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 456c5e47-d71e-4708-b061-1e61634d8648))
(fp_line (start 2 2) (end 1 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 162e5bdd-61a8-46a3-8485-826b5d58e1a1))
(fp_line (start -13.7 -4.5) (end -13.7 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 022502e0-e724-4b75-bc35-3c5984dbeb76))
(fp_line (start -13.7 4.5) (end 0.8 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d655bb0a-cbf9-4908-ad60-7024ff468fbd))
(fp_line (start -10.2 -4.5) (end -10.2 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49fec31e-3712-4229-8142-b191d90a97d0))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7273dd21-e834-41d3-b279-d7de727709ca))
(fp_line (start 0 -4.5) (end -13.7 -4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9d4de74-d246-495d-8b63-12ab2133d6d6))
(fp_line (start 0.8 4.5) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f969b13-1795-4747-8326-93bdc304ed56))
(pad "1" thru_hole rect (at 0 0) (size 3.5 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask")
(net 35 "12V_36V") (pintype "passive") (tstamp 0e32af77-726b-4e11-9f99-2e2484ba9e9b))
(pad "2" thru_hole roundrect (at -6 0) (size 3 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b))
(pad "3" thru_hole roundrect (at -3 4.7) (size 3.5 3.5) (drill oval 3 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp fb0bf2a0-d317-42f7-b022-b5e05481f6be))
(model "${KIPRJMOD}/lib/3dmodels/DC Power Jack 5.5mm x 2.1mm.step"
(offset (xyz -10.7 0.15 6))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Developower:BarrelJack_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e010a55)
(at 180.35 76.48 180)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e01a1e5")
(attr through_hole)
(fp_text reference "J16" (at -7.344 5.9742) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c2999b2-1cf1-4204-9d23-243401b77aa3)
)
(fp_text value "CNC_OUT2" (at -6.2 -5.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 755f94aa-38f0-4a64-a7c7-6c71cb18cddf)
)
(fp_text user "${REFERENCE}" (at -3 -2.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
)
(fp_line (start -13.8 -4.6) (end 0.9 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96ef76a5-90c3-4767-98ba-2b61887e28d3))
(fp_line (start -13.8 4.6) (end -13.8 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 966ee9ec-860e-45bb-af89-30bda72b2032))
(fp_line (start -5 4.6) (end -13.8 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 247ebffd-2cb6-4379-ba6e-21861fea3913))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ce1dd44-f307-4f98-9f0d-478fd87daa64))
(fp_line (start 0.9 -4.6) (end 0.9 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51cc007a-3378-4ce3-909c-71e94822f8d1))
(fp_line (start 0.9 1.9) (end 0.9 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83184391-76ed-44f0-8cd0-01f89f157bdb))
(fp_line (start 0.9 4.6) (end -1 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db6412d3-e6c3-4bdd-abf4-a8f55d56df31))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8b47531-6c06-4e54-9fc9-cd9d0f3dd69f))
(fp_line (start -14 4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94d24676-7ae3-483c-8bd6-88d31adf00b4))
(fp_line (start -5 4.75) (end -14 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e45aa7d8-0254-4176-afd9-766820762e19))
(fp_line (start -5 6.75) (end -5 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9))
(fp_line (start -1 4.75) (end -1 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58390862-1833-41dd-9c4e-98073ea0da33))
(fp_line (start -1 6.75) (end -5 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9208ea78-8dde-4b3d-91e9-5755ab5efd9a))
(fp_line (start 1 -4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9))
(fp_line (start 1 -4.5) (end 1 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c5dddf1-38df-43d2-b49c-e7b691dab0ab))
(fp_line (start 1 -4.5) (end 1 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 254f7cc6-cee1-44ca-9afe-939b318201aa))
(fp_line (start 1 -2) (end 2 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f48b0f2-82cf-40ce-afac-440f97643c36))
(fp_line (start 1 2) (end 1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e86e4fae-9ca7-4857-a93c-bc6a3048f887))
(fp_line (start 1 4.75) (end -1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e755161-24a5-4650-a6e3-9836bf074412))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1855ca44-ab48-4b76-a210-97fc81d916c4))
(fp_line (start 2 2) (end 1 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3457afc5-3e4f-4220-81d1-b079f653a722))
(fp_line (start -13.7 -4.5) (end -13.7 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cacb878-9da4-41fc-aa80-018bc841e19a))
(fp_line (start -13.7 4.5) (end 0.8 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ce9470f-5633-41bf-89ac-74a810939893))
(fp_line (start -10.2 -4.5) (end -10.2 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5576cd03-3bad-40c5-9316-1d286895d52a))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4970ec6e-3725-4619-b57d-dc2c2cb86ed0))
(fp_line (start 0 -4.5) (end -13.7 -4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1de61170-5337-44c5-ba28-bd477db4bff1))
(fp_line (start 0.8 4.5) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa23bfe3-454b-4a2b-bfe1-101c747eb84e))
(pad "1" thru_hole rect (at 0 0 180) (size 3.5 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask")
(net 36 "/V_SPINDLE") (pintype "passive") (tstamp 000b46d6-b833-4804-8f56-56d539f76d09))
(pad "2" thru_hole roundrect (at -6 0 180) (size 3 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9))
(pad "3" thru_hole roundrect (at -3 4.7 180) (size 3.5 3.5) (drill oval 3 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 49b5f540-e128-4e08-bb09-f321f8e64056))
(model "${KIPRJMOD}/lib/3dmodels/DC Power Jack 5.5mm x 2.1mm.step"
(offset (xyz -10.7 0.15 6))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Developower:Relay_SPDT_SANYOU_SRD_Series_Form_C" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e01217e)
(at 168.656 92.58 90)
(descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf")
(tags "relay Sanyu SRD form C")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e036179")
(attr through_hole)
(fp_text reference "K1" (at 19.9 -4.806 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0)
)
(fp_text value "SRD-12VDC-SL-C" (at 8 -9.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa)
)
(fp_text user "${REFERENCE}" (at 7.1 0.025 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9)
)
(fp_text user "1" (at 0 -2.3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb)
)
(fp_line (start -1.4 -7.8) (end -1.4 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(fp_line (start -1.4 -7.8) (end 18.4 -7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(fp_line (start -1.4 1.2) (end -1.4 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
(fp_line (start 2.65 0.05) (end 1.85 0.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(fp_line (start 2.65 0.05) (end 2.65 3.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(fp_line (start 3.55 6.05) (end 6.05 6.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(fp_line (start 4.05 -1.75) (end 8.05 -1.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(fp_line (start 4.05 1.85) (end 4.05 -1.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d67a417-188f-4014-9282-000265d80009))
(fp_line (start 6.05 -5.95) (end 3.55 -5.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(fp_line (start 6.05 -5.95) (end 6.05 -1.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(fp_line (start 6.05 1.85) (end 6.05 6.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(fp_line (start 8.05 -1.75) (end 8.05 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
(fp_line (start 8.05 1.85) (end 4.05 -1.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(fp_line (start 8.05 1.85) (end 4.05 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(fp_line (start 9.45 0.05) (end 9.45 3.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(fp_line (start 9.45 0.05) (end 10.95 0.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(fp_line (start 9.45 3.65) (end 2.65 3.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(fp_line (start 10.95 0.05) (end 15.55 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(fp_line (start 14.15 -4.2) (end 14.15 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(fp_line (start 14.15 4.2) (end 14.15 1.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(fp_line (start 18.4 -7.8) (end 18.4 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(fp_line (start 18.4 7.8) (end -1.4 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(fp_line (start -1.55 7.95) (end -1.55 -7.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(fp_line (start -1.55 7.95) (end 18.55 7.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(fp_line (start 18.55 -7.95) (end -1.55 -7.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(fp_line (start 18.55 -7.95) (end 18.55 7.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(fp_line (start -1.3 -7.7) (end 18.3 -7.7)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(fp_line (start -1.3 7.7) (end -1.3 -7.7)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(fp_line (start 18.3 -7.7) (end 18.3 7.7)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(fp_line (start 18.3 7.7) (end -1.3 7.7)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(pad "1" thru_hole circle (at 0 0 180) (size 3 3) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 35 "12V_36V") (pintype "passive") (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(pad "2" thru_hole circle (at 1.95 6.05 180) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 56 "+12V") (pintype "passive") (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(pad "3" thru_hole circle (at 14.15 6.05 180) (size 3 3) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 36 "/V_SPINDLE") (pintype "passive") (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(pad "4" thru_hole circle (at 14.2 -6 180) (size 3 3) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 61 "unconnected-(K1-Pad4)") (pintype "passive+no_connect") (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(pad "5" thru_hole circle (at 1.95 -5.95 180) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 57 "/spindle_ctl") (pintype "passive") (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(model "${KIPRJMOD}/lib/3dmodels/Relay - SRD-03VDC-SL-C.stp"
(offset (xyz 8.15 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e013574)
(at 154.55 129.65 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e040770")
(attr through_hole)
(fp_text reference "J10" (at 0.77 8.6 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91fc5800-6029-46b1-848d-ca0091f97267)
)
(fp_text value "Mode" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 275b6416-db29-42cc-9307-bf426917c3b4)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4641c87c-bffa-41fe-ae77-be3a97a6f797)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29126f72-63f7-4275-8b12-6b96a71c6f17))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af186015-d283-4209-aade-a247e5de01df))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88606262-3ac5-44a1-aacc-18b26cf4d396))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d063f79-9282-4820-bcf4-1ff3c006cf08))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd1cff81-9d8a-4511-96d6-4ddb79484001))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0554bea0-89b2-4e25-9ea3-4c73921c94cb))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9da1ace0-4181-4f12-80f8-16786a9e5c07))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da546d77-4b03-4562-8fc6-837fd68e7691))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2fac877-439c-4da0-af2e-5fdc70f85d42))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22962957-1efd-404d-83db-5b233b6c15b0))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8eb98c56-17e4-4de6-a3e3-06dcfa392040))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c22d605-7855-4cc6-8ad2-906cadbd02dc))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd085057-7c0e-463a-982b-968a2dc1f0f8))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c66a19ed-90c0-4502-ae75-6a4c4ab9f297))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 46 "/SPINDLE") (pinfunction "Pin_1") (pintype "passive") (tstamp 278a91dc-d57d-4a5c-a045-34b6bd84131f))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 58 "/D11_TOOL") (pinfunction "Pin_2") (pintype "passive") (tstamp 98966de3-2364-43d8-a2e0-b03bb9487b03))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/LASER") (pinfunction "Pin_3") (pintype "passive") (tstamp 4cc0e615-05a0-4f42-a208-4011ba8ef841))
(model "#${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/lib/3dmodels/Pin-Header-1x03-Jumper.stp"
(offset (xyz 0 -2.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "Developower:chinese-text" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000607fbe41)
(at 108.15 113.25 90)
(property "Sheetfile" "board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607f6f67")
(attr through_hole)
(fp_text reference "T1" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp a7fc0812-140f-4d96-9cd8-ead8c1c610b1)
)
(fp_text value "Logo_Open_Hardware_Small" (at 0.75 0 90) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 94a10cae-6ef2-4b64-9d98-fb22aa3306cc)
)
(fp_poly
(pts
(xy 0.39301 -1.048758)
(xy 0.537272 -0.989552)
(xy 0.656381 -0.903446)
(xy 0.6985 -0.827784)
(xy 0.658851 -0.745082)
(xy 0.545876 -0.758281)
(xy 0.380584 -0.857557)
(xy 0.255355 -0.959572)
(xy 0.2271 -1.018251)
(xy 0.276347 -1.052929)
(xy 0.39301 -1.048758)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp c2dd13db-24b6-40f1-b75b-b9ab893d92ea))
(fp_poly