-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoco-oi401.kicad_pcb
18527 lines (18436 loc) · 892 KB
/
moco-oi401.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 "moco-OI401")
(rev "1.0")
(comment 1 "BLDC motor controller/driver")
(comment 2 "Open source hardware, CERN-OHL-P v2")
(comment 3 "https://github.com/ziteh/moco")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 150 100)
(grid_origin 150 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Vdrive")
(net 2 "GND")
(net 3 "/Driver/AVDD")
(net 4 "GNDPWR")
(net 5 "/Driver/V_{REF}")
(net 6 "+5V")
(net 7 "+3.3V")
(net 8 "/Driver/SOA")
(net 9 "/Driver/SOB")
(net 10 "/Driver/SOC")
(net 11 "/~{RESET}")
(net 12 "/MCU/OSC_IN")
(net 13 "/MCU/OSC_OUT")
(net 14 "/Driver/OUTA")
(net 15 "/Driver/OUTB")
(net 16 "/Driver/OUTC")
(net 17 "/UART2_TX")
(net 18 "/UART2_RX")
(net 19 "/UART1_TX")
(net 20 "/SWCLK")
(net 21 "/UART1_RX")
(net 22 "/SWDIO")
(net 23 "Net-(LD1-BK)")
(net 24 "Net-(LD1-GK)")
(net 25 "Net-(LD1-RK)")
(net 26 "Net-(U4-K)")
(net 27 "/USER_LED1")
(net 28 "/Driver/~{FAULT}")
(net 29 "/ Rotary Sensor/MISO")
(net 30 "/Driver/~{SLEEP}")
(net 31 "/USER_LED2")
(net 32 "unconnected-(U1-NC-Pad4)")
(net 33 "/Driver/DRVOFF")
(net 34 "/Driver/INHA")
(net 35 "/Driver/INLA")
(net 36 "/Driver/INHB")
(net 37 "/Driver/INLB")
(net 38 "/Driver/INHC")
(net 39 "/Driver/INLC")
(net 40 "/ Rotary Sensor/MOSI")
(net 41 "/ Rotary Sensor/SCLK")
(net 42 "/Driver/~{CS}")
(net 43 "/ Rotary Sensor/~{CS}")
(net 44 "/CAN_RX")
(net 45 "/CAN_TX")
(net 46 "/BOOT0")
(net 47 "/ Rotary Sensor/B")
(net 48 "/ Rotary Sensor/A")
(net 49 "/ Rotary Sensor/W{slash}PWM")
(net 50 "/ Rotary Sensor/V")
(net 51 "/ Rotary Sensor/U")
(net 52 "/ Rotary Sensor/I{slash}PWM")
(net 53 "Net-(U3-CPH)")
(net 54 "Net-(U3-CP)")
(net 55 "Net-(R11-Pad2)")
(net 56 "unconnected-(U2-PC13-Pad2)")
(net 57 "unconnected-(U2-PC14-Pad3)")
(net 58 "unconnected-(U2-PC15-Pad4)")
(net 59 "unconnected-(U2-PA4-Pad12)")
(net 60 "unconnected-(U2-PB10-Pad22)")
(net 61 "unconnected-(U2-PC6-Pad29)")
(net 62 "unconnected-(U2-PA15-Pad38)")
(net 63 "unconnected-(U2-PC10-Pad39)")
(net 64 "unconnected-(U2-PC11-Pad40)")
(net 65 "unconnected-(U3-NC-Pad1)")
(net 66 "unconnected-(U3-NC-Pad24)")
(net 67 "Net-(U3-CPL)")
(net 68 "Net-(U3-SW_BK)")
(net 69 "Net-(U3-SOA)")
(net 70 "Net-(U3-SOB)")
(net 71 "Net-(U3-SOC)")
(net 72 "unconnected-(U2-PB0-Pad17)")
(net 73 "unconnected-(U2-PB1-Pad18)")
(net 74 "unconnected-(U2-PC4-Pad16)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 018e2a25-f639-441b-ae78-e23d3c266151)
(at 143.5 108.5 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C15849")
(property "MFR. Part#" "CL10A105KB8NNNC")
(property "Sheetfile" "moco-oi401.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8b978eb2-674f-489f-bb43-7c898f03c0b9")
(attr smd)
(fp_text reference "C1" (at -0.9 -1.5 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9dec8d7-69ad-4be7-a4e1-b2408b191990)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e886182c-611a-48da-ba2f-3e6b21c8296d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5b55bebb-6d32-4698-aa8e-de60e0e1f60e)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 241934f9-f6d9-4f0c-83d1-bacea876a8a9))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebbbfd71-e8b6-4e5b-8a79-799b3f80672e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb165b67-1baf-4272-b0ee-eb9f7b1d9b28))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c1724b5-cd30-49f7-b669-5de07c0c4eb0))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2c0f316-925d-458d-bfe6-b5067dcb35be))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45f2aa18-3a25-4cb2-b634-d6986d05e984))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68add2a6-809a-433f-989f-859ae58244c8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a511c410-3002-462b-96d0-71712feeb930))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 008a4672-0d0c-4ec1-ab3e-095813838664))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c3ecc42-cc9b-4ba8-8943-3f4f343e6886))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+5V") (pintype "passive") (tstamp 958f90b9-2824-48f2-8357-09282a20acc5))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 82e05f46-45a2-4695-8264-4f7145ae2735))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tstamp 0f33453f-d103-4ed0-9815-d9561ac4ad1e)
(at 155.25 86 90)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(property "LCSC" "C3680585")
(property "MFR. Part#" "LM4040A50IDCKRG4")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "5.000V Precision Micropower Shunt Voltage Reference, SC-70")
(property "ki_keywords" "diode device voltage reference shunt")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/c5025274-e0c6-4f7f-bb67-42fc27881c40")
(attr smd)
(fp_text reference "U4" (at -2.6 0.05 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d33ee298-fd73-44a9-86b6-4902f486ac7a)
)
(fp_text value "LM4040A50" (at 0 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ae8dc24-6c36-42e7-85d5-25a2f7d09b0b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 6f5eb19a-c3e1-4063-93e3-3a0f7c4616c3)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76f7b78a-cf9f-457c-81fa-368d1fd1b500))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8233d3cc-a045-4cb0-952c-becfda0a5f8b))
(fp_line (start -1.6 -1.4) (end -1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f3353a6d-1a14-48d9-9700-009e3d7a0f26))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfbd29b7-0b23-4934-bd34-f90f0cb7bca8))
(fp_line (start -1.6 1.4) (end 1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5df5ddbf-5738-4dc2-b40f-279b7f66a262))
(fp_line (start 1.6 1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 868cbbc1-1658-4324-980f-f353c176ce6a))
(fp_line (start -0.675 -0.6) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2038c676-eff0-4b0f-a46a-7cff905bc115))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00502149-bf42-4b0a-bd58-82c8b888f619))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 627725d3-b896-4af7-bc7e-7dbbd8783b8a))
(fp_line (start 0.675 -1.1) (end 0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a919d571-f432-4985-8720-9f99983d2ab9))
(fp_line (start 0.675 1.1) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a296e4e9-abd5-426e-af07-2c0369ce0e88))
(pad "1" smd rect (at -0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 8b754b2b-a8e8-4bf0-b642-6c80f4aaa89a))
(pad "2" smd rect (at -0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eda2e4c7-c2a7-44a7-afb6-6626af285294))
(pad "3" smd rect (at -0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(U4-K)") (pinfunction "K") (pintype "passive") (tstamp 2dc5118a-f5db-4cc9-a725-f5b762b3ad9f))
(pad "4" smd rect (at 0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0809ea6c-49e1-40ee-9779-4bcf1be56601))
(pad "5" smd rect (at 0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f2f3cd35-4f3c-4e0f-907e-52608a1c4696))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 12c785b5-a0a7-40cd-94fe-33aa6a3515d5)
(at 147.5 103.75 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1653")
(property "MFR. Part#" "CL10C220JB8NNNC")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/089ae314-e9d5-4376-bd69-b3644ed1b35b")
(clearance 0.13)
(attr smd)
(fp_text reference "C20" (at 2.7 0.25) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp cb51d549-be7e-4086-b6c2-700540dfd0bb)
)
(fp_text value "22pF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7687385-1c67-4312-819d-c75bd3e3c685)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7e765332-21e0-47d7-ac72-ffb4c7253d03)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 615cbe88-6642-4e3a-a29d-ddb578e28071))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e23f98b-f283-4c5f-8580-86374cd4b81f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1cf1bff-33f0-48d8-b3fa-3ad64b50ed56))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e342b3c8-705b-4d44-b2b1-b3b120525e38))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd7d77bd-22d3-47d1-aea1-f24747c7c9f0))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06243b6c-676f-4bd1-8013-35cda87782ff))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3047c8a4-910c-476a-9b56-05d61dc87a8a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp afd5e6f1-bbdc-499a-bdff-6f371cae3220))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfab2ca8-4f1e-4b88-802a-b09d3dbec07f))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9c47fbb-e119-4ba7-9659-c8cfee69c29d))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/Driver/SOA") (pintype "passive") (tstamp 65ea9c77-3ed3-4cef-803c-cad967d53cd7))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 936051cc-a063-4ce9-9ded-b1bc0ca5329b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 15740f8a-1288-4d85-9945-025518aac8ce)
(at 150.5 102.25)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C23138")
(property "MFR. Part#" "0603WAF3300T5E")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/548c1371-4424-4b1e-b196-532d23e0ee14")
(clearance 0.13)
(attr smd)
(fp_text reference "R8" (at 1.4 -3.9) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 26bfc78f-5b16-4d80-a271-4afaf9965fec)
)
(fp_text value "330R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0439fe5b-28f0-47d6-97c7-9156d3400982)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e23aa1bf-a9ff-4438-8f9b-3b6f21078c6f)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ad71934-0290-49ae-8ba6-06f7339bc785))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e30dfdf7-8dce-415a-8a5f-06983f23cac4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14364e90-2e0f-4568-a80b-3c93211b6be2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b5deba6-3326-4aed-ab7c-154088b28665))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96f0ea01-549c-4045-b447-f8d708caf294))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dc8cc1b-beb7-4aea-9121-c0260536de4c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1f2a13f-ecb9-4732-a291-1cf86bb4af77))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f5b0754-72fc-4812-866d-c803a525f9bd))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 712ac261-f0cd-42fa-b55c-acf02516ba98))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9905518-83b9-46e9-a5aa-8e656d259af0))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/Driver/SOB") (pintype "passive") (tstamp 173831ac-716c-49df-ab2b-71d509225bc3))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 70 "Net-(U3-SOB)") (pintype "passive") (tstamp 57a95a70-4484-4bfa-89d6-f867504e1456))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 1d70b0b1-d53c-41ab-9f4f-fe3240bf741d)
(at 157.5 105.5 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C15849")
(property "MFR. Part#" "CL10A105KB8NNNC")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/aa5c2770-fb94-4c91-b9db-0b6d47f83292")
(clearance 0.13)
(attr smd)
(fp_text reference "C14" (at 2 0.25 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d94fbd79-e588-4ac3-8f94-bb1744cd99aa)
)
(fp_text value "1uF/16V" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c7e8865-0fe5-4af8-8922-66abd3cf5e13)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e0b658bc-5266-4578-a19d-e0d5c636cb4c)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a13c40fb-6985-4f03-bc8f-374764f79e31))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0dac05f-4c4a-45c3-9f5d-b4bb746ff9ba))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9014b2f5-e403-4cd3-bc40-217e64288ca2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a069daf4-c0de-4aff-935d-54373fedca3a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15502c83-0576-4475-bbb4-e8f8bb02e14d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57872897-a0e0-4858-a657-b312d37ce974))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 875f50d0-cf30-4bee-9f40-55580f38dc3e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43f624fa-0866-4ac9-a649-2d9124f24269))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp faf50de3-e9f8-4c1b-9a36-644a57c0cc54))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbaeb185-4cdb-484b-bb4c-f3d57db51697))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "Net-(U3-CP)") (pintype "passive") (tstamp 7b29e627-889d-4892-b4a3-a44a8d6ab27f))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Vdrive") (pintype "passive") (tstamp 724f7bcd-75ee-445c-884f-ccef621c4148))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1ef1cdbc-cabb-4f69-9227-1788c26387c7)
(at 148.6 96.15 -45)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1525")
(property "MFR. Part#" "CL05B104KO5NNNC")
(property "Sheetfile" "mcu.kicad_sch")
(property "Sheetname" "MCU")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8c626c9e-bc00-4eb5-9b1c-4380247b0f28/ba6d749a-7e73-4ee2-b8b9-dc3ea3d5eee3")
(attr smd)
(fp_text reference "C4" (at -0.035355 -3.146625 135) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b2dd3ee4-0b08-4eff-a069-4842f43ba381)
)
(fp_text value "100nF" (at 0 1.16 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df605400-e93b-41f6-807c-4c05d999d5ed)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp ee3c81b2-77d1-49d5-adb3-eed829756207)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abd51864-7e78-4b9b-84fb-e02e316c27c3))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b8dd4c6-49cb-46a2-b365-309b469d00ef))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c370aae9-9a60-4bbe-9d65-8b0446adc242))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4cf6c581-e98c-4d92-ab70-93c2c37a6372))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b129e01b-5f65-47d6-9b0c-1f3e72d4b4f1))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55f54246-7239-48d3-b6c5-cb48dc0ced03))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31b8513d-d3fb-4a91-81e5-f23d0e492f67))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b5281cb-0d4d-4807-9f33-c681c0dd6767))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52115458-5f60-4a07-a8a7-4645537aef91))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d461d612-d8b3-4619-959e-5fc5ceae1c8a))
(pad "1" smd roundrect (at -0.48 0 315) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3V") (pintype "passive") (tstamp cc67d0b9-25c9-452b-b474-c384613befb6))
(pad "2" smd roundrect (at 0.48 0 315) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f9cd3a27-ffe7-40d8-a0ec-d7a389b0f0e2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 1f643bc5-c30f-4fe0-b163-70e8ac457836)
(at 160 106.5 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C440198")
(property "MFR. Part#" "GRM21BR61H106KE43L")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/170cbfb3-fc99-4fcf-880a-54e9bd1f0c1b")
(attr smd)
(fp_text reference "C17" (at 0 -1.5 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 661fd303-8992-43b4-8e16-eceb38464c54)
)
(fp_text value "10uF/50V" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60baff63-119c-4cce-9ed5-e68df8bdcc78)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 38a9f379-3caa-43dc-9803-12e4036da65e)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed283d35-5da4-45e8-a2a3-7da7e42d96d1))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c716cd3-04a6-4936-9a84-d97c738569be))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2150012-90e4-4fdc-a569-98de0392b1e8))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54fff307-1edd-47e7-8795-1ce012cc63be))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3270e3c2-9018-4257-8e56-a9cb7a6a15c4))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d64919b6-25a2-4dd2-8d5d-a8b6dbc4c700))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 343710a4-0724-42d6-a8d2-3e3fd91a4b2e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca5145d9-2eb7-44ec-8b7e-ccc4481178b1))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 714b05af-0450-40ef-9f7d-cd596cc6083f))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 257faafb-9f1d-461d-b1b1-9155cd44b7d3))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GNDPWR") (pintype "passive") (tstamp 301b1af4-2414-4a77-9ecc-1dab3f368e90))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Vdrive") (pintype "passive") (tstamp 4d638b13-ded7-4075-ab94-9a200e38a537))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "moco:wire_3.2mm" locked (layer "F.Cu")
(tstamp 20989ad9-8798-480a-a4cc-897597605914)
(at 165.9748 94.1857)
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/9a065705-ccd5-47dc-872c-b46486c952f9")
(attr through_hole)
(fp_text reference "J7" (at 0 -3.3 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 4fe44689-b866-43a9-b585-ff8f9ff373b6)
)
(fp_text value "C" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30a9ff70-2523-4758-92d0-0722696fddd4)
)
(fp_text user "C" (at -2.9748 2.0143 120 unlocked) (layer "F.Mask")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46ec5cf6-0f24-42f1-a27e-e9fbcef14df3)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49905aa3-0d01-4b5c-9f9b-347455d33c6d)
)
(pad "1" thru_hole circle locked (at -1.940147 -0.803635 202.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp 340d88c9-0dda-4f44-9db3-7fceed413cf3))
(pad "1" thru_hole circle locked (at -1.940147 0.803635 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp 72f5af7c-1b8d-4459-8a01-4b42f815ba18))
(pad "1" thru_hole circle locked (at -0.803635 -1.940147 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp c19d7f2c-4c42-4f60-80ee-029c7704f1bd))
(pad "1" thru_hole circle locked (at -0.803635 1.940147 202.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp e17e3b23-b8f1-458a-a67e-cb464cde1e65))
(pad "1" thru_hole circle locked (at 0 0) (size 5.25 5.25) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp df00546c-414a-4b79-b168-34be715704d3))
(pad "1" thru_hole circle locked (at 0.803635 -1.940147 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp dcdc0a5e-9d0c-49a3-81b2-1ca444aa19a1))
(pad "1" thru_hole circle locked (at 0.803635 1.940147 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp 6a6c1794-f181-4b3f-a84b-53d1bc3ab29d))
(pad "1" thru_hole circle locked (at 1.940147 -0.803635 112.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp bb8b53df-9685-4746-898b-40627d2ff437))
(pad "1" thru_hole circle locked (at 1.940147 0.803635 202.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 16 "/Driver/OUTC") (pinfunction "Pin_1") (pintype "passive") (tstamp 3c604387-2890-4401-98c4-44c51f969ae2))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 267b3010-4590-4ef6-9dea-c62b3ed89206)
(at 144.6 88.45 45)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1525")
(property "MFR. Part#" "CL05B104KO5NNNC")
(property "Sheetfile" "mcu.kicad_sch")
(property "Sheetname" "MCU")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8c626c9e-bc00-4eb5-9b1c-4380247b0f28/3de068f1-6daa-4a8d-9d1a-54d9e0afdd3c")
(attr smd)
(fp_text reference "C5" (at 0 -1.16 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9898290-c1e6-4ce6-8fcd-dc0bffa94af3)
)
(fp_text value "100nF" (at 0 1.16 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1c01b01-b23b-4a2e-a867-8ad6eded1ae2)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 6813fc90-3113-4f54-b344-8b1e467c1fa8)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5014bf16-acbb-4646-9ee7-d5df315c0f0f))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a7bf858-e27f-44b4-978a-163fe4059cae))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab6c63fb-9fee-41e6-981c-120841cdc7de))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea26bcff-fcea-421b-b341-fb563eff500a))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d46cc71-08ae-46cb-b656-f49a4e26e74f))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a169a4b-aca4-419f-a222-bc09f455f049))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc012ea0-4c94-47f0-a645-8c39709c400b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2d806f4-449b-4b3c-bf73-d8fe2ac3a0a0))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ed10644-6487-48bc-bac8-6acd637c5813))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7698fb73-3b10-4545-95f5-91e6853ef8c5))
(pad "1" smd roundrect (at -0.48 0 45) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3V") (pintype "passive") (tstamp 059711d3-1a12-4b1d-a770-6b0b97e5ea40))
(pad "2" smd roundrect (at 0.48 0 45) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp c7168bb8-6fc0-4c1f-88ac-ca31f9a49608))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 2acae042-1910-4aff-8e5e-29050c59862c)
(at 143.5 105.5 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C15849")
(property "MFR. Part#" "CL10A105KB8NNNC")
(property "Sheetfile" "moco-oi401.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/e043e5e7-7d9f-4be5-95eb-116d876d4fc9")
(attr smd)
(fp_text reference "C2" (at -0.5 1.5 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c83637b-4d91-4b1f-8bd7-5c8e165162d1)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f56a017b-7aa8-46ee-a8c4-a1c16fb3e0ef)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 11720b3c-cc1b-4312-95ed-70582ab0ba4b)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c76376c1-e411-40da-b059-dfb09ef2b5bb))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb0c7318-bb2a-483d-a0cd-5dbdf427b1e6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a506c4f1-b024-4dd6-b7a5-68e2a2786cf6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f6e6225-95ab-4308-8172-cbeaeda5414e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47e21d0e-32c7-4bec-b350-1fab2904d1e1))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06c216c0-ebc1-4d1d-9d11-42b2904dcbef))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9e4236c-89dc-46bb-b868-176f860ab338))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32859b12-5235-4fb3-a676-09b28fc98f7d))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f43fc44c-4706-494b-a119-7055c4038ee5))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64301db8-084d-403c-b243-fcfd2e310ad9))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3V") (pintype "passive") (tstamp 4e2a0c2d-b79b-427c-af45-991d2c158ca7))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp eae26d04-4669-4b5e-96a9-9b1666125273))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "moco:wire_3.2mm" locked (layer "F.Cu")
(tstamp 2bdbe19e-4bf2-4418-b76a-ed8a98e49cae)
(at 165.9748 105.8143)
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/650a400c-46e7-42f0-9f69-0d49803c1e2f")
(attr through_hole)
(fp_text reference "J5" (at 0 -3.3 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 8ef00a32-1b4c-4b1b-b3b1-4f59489c3742)
)
(fp_text value "A" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2600c9c9-79dc-4e51-837c-35fbaba7d69d)
)
(fp_text user "A" (at -3.0748 -1.8143 60 unlocked) (layer "F.Mask")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e915c22f-c586-481e-bf78-5d2b82e8b774)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a83f2095-f943-46f3-90ab-4fc412654aa1)
)
(pad "1" thru_hole circle locked (at -1.940147 -0.803635 202.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 9e3d6674-5a23-4d3c-b698-b662e2942534))
(pad "1" thru_hole circle locked (at -1.940147 0.803635 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 4392708e-d816-44ae-adb6-acc03061c90d))
(pad "1" thru_hole circle locked (at -0.803635 -1.940147 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 336bc5a2-f5c3-4152-99b5-5d57c8555987))
(pad "1" thru_hole circle locked (at -0.803635 1.940147 202.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 21d255f6-9744-468e-9706-2029e22470d2))
(pad "1" thru_hole circle locked (at 0 0) (size 5.25 5.25) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 206b26a6-b9ea-4fcb-9cf5-3109292e16aa))
(pad "1" thru_hole circle locked (at 0.803635 -1.940147 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 547a4dd8-6375-4ee5-b921-8b81aaf83e92))
(pad "1" thru_hole circle locked (at 0.803635 1.940147 157.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 0a945a14-a627-404e-b697-41084b33c8ca))
(pad "1" thru_hole circle locked (at 1.940147 -0.803635 112.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 2a087c07-4707-4800-8d03-f65114b1672f))
(pad "1" thru_hole circle locked (at 1.940147 0.803635 202.5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 14 "/Driver/OUTA") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c0c67a9-444b-4cb0-9cef-91752c9ffb24))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 2c7d915d-6e2e-45a7-8628-e6b6118c5657)
(at 149.9 86 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25804")
(property "MFR. Part#" "0603WAF1002T5E")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/89971094-3209-4940-bf91-eee7d162e5f6")
(attr smd)
(fp_text reference "R12" (at 2.9 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e799485-8381-44c2-8368-db32bb71ab14)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3acfc285-1b4a-4d8b-9c67-216f2e0f1127)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cb246a99-8411-4bbf-bff1-0c2eeaf5b563)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39880ce8-9015-4010-b7e8-affdf694a591))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16bf95df-d1b4-4bf1-8263-050c8f66c57b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a5f7d19-d914-4a4e-85bf-77f24cf5d3c7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fa307fe-3640-4dbf-b8d1-fac0274dd847))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddc040b7-2f12-43d2-9f0e-22460956aa63))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 747a442b-56f7-461b-8b93-030d9c921f3d))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19dc22b9-63be-48c9-9051-857faf20d90d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bb0bff7-6331-45e3-a26b-7b861b7dd678))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 468c09a4-3073-4db1-8b87-48982a3bad54))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67c87044-3bd2-4779-aa27-3801a2279356))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "Net-(R11-Pad2)") (pintype "passive") (tstamp bb70d48f-a000-4cfd-abc9-832d16a2a1d0))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/Driver/~{SLEEP}") (pintype "passive") (tstamp 25eb5c80-bed5-4784-837a-e8879b5d93c1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 30aa728c-ed26-4e55-a8f5-362c9be5e058)
(at 138.1215 110.6128 35)
(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 "LCSC" "C25104")
(property "MFR. Part#" "0402WGF3300TCE")
(property "Sheetfile" "moco-oi401.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/83658a05-f53e-41dc-b6a1-5bf1583d5907")
(attr smd)
(fp_text reference "R3" (at 1.828871 0.227305 35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0abbe11e-18a1-4542-84ee-bedec58c08ca)
)
(fp_text value "1k" (at 0 1.17 35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c9798fa-4f34-4e47-b660-29f191a97837)
)
(fp_text user "${REFERENCE}" (at 0 0 35) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 359a2e0c-5242-41bb-bfce-e6344c3a26b6)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad365347-ca07-404f-8c3f-85768cdc6dd7))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9213fbbd-616f-413d-bc18-aadedd13456a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e143016-8420-49af-bfde-fb572c8b0b56))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 561c515c-53bf-4d6f-88b8-245be1d16d48))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2cb762a-cee7-488f-b911-52456a8418dd))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45427903-8d93-44ab-9bdb-4c9f7d2b062c))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7fb2b4f-5685-4c94-8f82-706dbbe5ba01))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8dd0c096-6891-4369-943d-cba5f2a1dfcd))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb175fae-3256-414f-8906-64785dd55fbc))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df013727-942d-41f0-a45f-b49f34e69414))
(pad "1" smd roundrect (at -0.51 0 35) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(LD1-BK)") (pintype "passive") (tstamp 39ee9ac5-2fcc-4983-b6d8-e9645a3a6d7e))
(pad "2" smd roundrect (at 0.51 0 35) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/USER_LED2") (pintype "passive") (tstamp c4f7510a-91f9-421b-9980-18e847d73dcf))
(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_0603_1608Metric" (layer "F.Cu")
(tstamp 3178f57e-a6b7-4544-b999-5c698a0f70ac)
(at 153.2 94.5 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C23186")
(property "MFR. Part#" "0603WAF5101T5E")
(property "Sheetfile" "driver.kicad_sch")
(property "Sheetname" "Driver")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e49edf63-a462-4dde-9ddc-a334d0522771/ee24d5a6-1137-4067-8592-07de94ebaf28")
(attr smd)
(fp_text reference "R5" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a15d259b-11a7-43d3-9a4b-b8c5f07cdf2f)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32505a2a-67a0-4003-816f-54dc3b019f9d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5e28de81-4b8a-4aa4-b768-5023ae010f77)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08cbfa9e-58e4-4000-9c8a-e57b0aaba1c0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9a04a55-995e-4535-b563-6d333629ae21))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38098ed6-fe66-4e13-b3cd-b657bf6109dc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79063e0d-be62-4ef6-a205-f61b179cc6c7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd8ea7ae-c454-4700-9abf-89f0f2745885))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57f003ec-6272-4e4a-bab6-f0596d786d88))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4273d178-ff56-4d71-8b3a-e0480e984e0d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ee9a71c-4394-43f0-9d55-56fcb5109b98))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0427212b-b2f6-4c35-8e64-a423a8d8637d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e29fb60-6d38-424e-ac3b-cbc62b274134))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3V") (pintype "passive") (tstamp 037347f1-9c4b-4691-b764-bca09be47e2d))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/ Rotary Sensor/MISO") (pintype "passive") (tstamp f1e42dae-96a8-465a-ba7d-b9021d777304))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (layer "F.Cu")
(tstamp 317b39e7-8d94-41ac-9ef5-3d71cf6e2c31)
(at 150 82.25)
(descr "https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf")
(tags "SPST button tactile switch")
(property "LCSC" "C5117871")
(property "MFR. Part#" "GT-TC060B-H027-L1")
(property "Sheetfile" "mcu.kicad_sch")
(property "Sheetname" "MCU")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/8c626c9e-bc00-4eb5-9b1c-4380247b0f28/c1e5737e-d757-4ad5-8768-1e1757245cd0")
(attr smd)
(fp_text reference "SW1" (at 0 0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85a29ead-d7e2-4dca-81f2-a4bb26ade9e0)
)
(fp_text value "RESET" (at 0 3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e1f0593-6bfe-45ce-9d8c-93e307a14c6d)
)
(fp_text user "RST" (at -4.75 1.75 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a962f952-74a8-4039-a9b6-19a05f726a9f)
)
(fp_text user "${REFERENCE}" (at 0 -2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8cf393b-1fef-489c-8dc7-0fc5bc0ea328)
)
(fp_line (start -3.06 -1.85) (end 3.06 -1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6736f4b7-7ee8-4156-b018-ab87893265f8))
(fp_line (start -3.06 1.85) (end -3.06 -1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5e96c2b-d8a5-404a-b33c-9b8466bad357))
(fp_line (start 3.06 -1.85) (end 3.06 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp feb5f981-4e99-4af0-8ec1-5d4ba111f278))
(fp_line (start 3.06 1.85) (end -3.06 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97d04174-6dc7-4e26-ba75-0ee99ccba7bc))
(fp_line (start -4.9 -2.05) (end 4.9 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90c9ceba-a1e2-4e18-95b2-1358a4b37f6a))
(fp_line (start -4.9 2.05) (end -4.9 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2bcc55e-ef98-4590-97dc-5d0e58116e3c))
(fp_line (start 4.9 -2.05) (end 4.9 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf415daf-93ca-49cf-861d-4daef1850504))
(fp_line (start 4.9 2.05) (end -4.9 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49d6c910-b257-4368-94c3-01969d61271b))
(fp_line (start -3 -1.8) (end -3 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e5177cf-9d2f-4f93-9b13-93e4528bb42b))
(fp_line (start -3 -1.8) (end 3 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6eaa0464-adda-47aa-b25b-59ef4cb65b59))
(fp_line (start -3 1.8) (end 3 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85f2dd03-cba2-43ef-b251-01c20e5c088d))
(fp_line (start -1.75 -1) (end 1.75 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4de155e-2d3c-4e4b-ada8-cd2f3c1550ec))
(fp_line (start -1.75 1) (end -1.75 -1)