-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtorque_controller.kicad_pcb
20230 lines (20189 loc) · 755 KB
/
torque_controller.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 "User" 200 200)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(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 "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 1.24) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.1) (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 102.98 91.4)
(grid_origin 102.98 91.4)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "C:/Users/Julien/Desktop/gerber_torque_controller")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3.3V")
(net 3 "VCC")
(net 4 "/TX")
(net 5 "/RX")
(net 6 "unconnected-(ESP32-IO4-Pad26)")
(net 7 "/EN_DRV")
(net 8 "/OUT1_DRV")
(net 9 "/OUT2_DRV")
(net 10 "/OUT3_DRV")
(net 11 "/NRST")
(net 12 "/BOOT")
(net 13 "/CURR_SENS1")
(net 14 "/CURR_SENS2")
(net 15 "unconnected-(ESP32-IO16-Pad27)")
(net 16 "/PWM_OUT1")
(net 17 "/PWM_OUT2")
(net 18 "/PWM_OUT3")
(net 19 "unconnected-(ESP32-SDO{slash}SD0-Pad21)")
(net 20 "unconnected-(ESP32-SDI{slash}SD1-Pad22)")
(net 21 "unconnected-(ESP32-IO5-Pad29)")
(net 22 "/CS")
(net 23 "/CLK")
(net 24 "unconnected-(ESP32-IO23-Pad37)")
(net 25 "Net-(IC1-CPH)")
(net 26 "unconnected-(ESP32-NC-Pad32)")
(net 27 "Net-(D1-K)")
(net 28 "/MISO")
(net 29 "/SDA")
(net 30 "Net-(SW1-B)")
(net 31 "Net-(IC1-CPL)")
(net 32 "Net-(IC1-VCP)")
(net 33 "unconnected-(IC1-V3P3-Pad15)")
(net 34 "unconnected-(ESP32-IO13-Pad16)")
(net 35 "/SCL")
(net 36 "unconnected-(IC1-NCOMPO-Pad19)")
(net 37 "unconnected-(IC1-NC-Pad21)")
(net 38 "Net-(IC1-EN1)")
(net 39 "Net-(M1-Pin_1)")
(net 40 "Net-(M3-Pin_1)")
(net 41 "unconnected-(U1-EN-Pad4)")
(net 42 "unconnected-(AS5048A1-TEST-Pad5)")
(net 43 "unconnected-(AS5048A1-TEST-Pad6)")
(net 44 "unconnected-(AS5048A1-TEST-Pad7)")
(net 45 "unconnected-(AS5048A1-TEST-Pad8)")
(net 46 "unconnected-(AS5048A1-TEST-Pad9)")
(net 47 "unconnected-(AS5048A1-TEST-Pad10)")
(net 48 "unconnected-(AS5048A1-PWM-Pad14)")
(net 49 "unconnected-(ESP32-IO32-Pad8)")
(net 50 "unconnected-(ESP32-SCK{slash}CLK-Pad20)")
(net 51 "unconnected-(ESP32-SCS{slash}CMD-Pad19)")
(net 52 "unconnected-(ESP32-SWP{slash}SD3-Pad18)")
(net 53 "unconnected-(ESP32-SHD{slash}SD2-Pad17)")
(net 54 "unconnected-(ESP32-SENSOR_VN-Pad5)")
(net 55 "unconnected-(ESP32-SENSOR_VP-Pad4)")
(net 56 "unconnected-(ESP32-IO12-Pad14)")
(net 57 "unconnected-(ESP32-IO14-Pad13)")
(net 58 "unconnected-(ESP32-IO15-Pad23)")
(net 59 "Net-(D1-A)")
(net 60 "Net-(D2-A)")
(net 61 "unconnected-(ESP32-IO2-Pad24)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 28094aff-79a4-4e67-a4d9-cfaea6709e97)
(at 104.0825 78.13 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 "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/0bdf6253-2800-456f-9362-779ec89ef1e3")
(attr smd)
(fp_text reference "R1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 493c7f51-8d45-419a-9952-2a0668aab9da)
)
(fp_text value "330" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f67fe76-299f-4420-8f1b-960784f21088)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9705d7dd-e12b-468a-9dda-1c0ddd6c7f2a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5b2534b-a03c-4fdc-9a43-41b7287f15f0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7c4de9a-0506-4f7a-b49a-e39d30ac670e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9e3a033-d553-4e75-a454-edddc6c3cd1e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a16e89cc-2495-4acf-ad37-142f65822fed))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d0731a0-2095-43ed-a796-ca4305c5ca99))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e8cfb28-f866-4260-8198-79b58896dbcf))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e0c8b28-213b-49d5-a299-5751243b7c0b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4dbf290-5818-4d08-86d2-8062f0bf1e6d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d10c5ae-0360-4bcc-bc0b-4aeb7bf3f65d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 690d19f2-055a-4281-91d6-784362b192b6))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 59 "Net-(D1-A)") (pintype "passive") (tstamp fa348b03-fb34-4676-9eb2-6bc306368fa9))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pintype "passive") (tstamp f797dae6-727e-466c-bfa8-0ba1be2d130a))
(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_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS" (layer "F.Cu")
(tstamp 37499a5b-370b-4eb0-8b02-aeaa27e652ba)
(at 115.52 92.77 90)
(descr "Tactile switch, SPST, 6.0x3.5 mm, H2.5 mm, straight, NO, gull wing leads: https://www.ckswitches.com/media/2779/pts636.pdf")
(tags "switch tactile SPST 1P1T straight NO SMTR C&K")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/ce259497-96a8-4415-9eff-2bd51042849e")
(attr smd)
(fp_text reference "SWRST1" (at 0.65 2.975132 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15062ea0-4959-44ee-8295-96fd8f1ae426)
)
(fp_text value "SW_Push" (at 0 3 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7dda1bc-b3a1-45ec-8685-8c7aa70bf8fd)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 432c25f7-31d9-485f-bc36-d0dfd9d58b04)
)
(fp_line (start -3.2 -2) (end -3.2 -0.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2456473a-84a3-42e0-935e-5a69f173e8e6))
(fp_line (start -3.2 0.8) (end -3.2 2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 817d09e2-fa5a-42cd-bccc-0818b21d43c9))
(fp_line (start -3.2 2) (end 3.2 2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c0a4585-a9b5-48d4-bfd7-a77c5c88c064))
(fp_line (start 3.2 -2) (end -3.2 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f411a20c-25e0-409f-8db9-53b073168a45))
(fp_line (start 3.2 -0.8) (end 3.2 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79bde2f4-c534-4899-b904-5c06746c73f9))
(fp_line (start 3.2 2) (end 3.2 0.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88e63ed1-32fb-40c9-998a-1524f596116c))
(fp_rect (start -1.35 -0.65) (end 1.35 0.65)
(stroke (width 0.12) (type solid)) (fill none) (layer "Dwgs.User") (tstamp 5588951c-3566-4adf-a18f-49354177031b))
(fp_line (start -4.75 -0.75) (end -3.3 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b90ad8fc-d97d-4edb-acda-34a7f1570da8))
(fp_line (start -4.75 0.75) (end -4.75 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8285cad-776f-4b5c-8316-7acbf202ad2d))
(fp_line (start -3.3 -2.1) (end 3.3 -2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4f8eccf-1d47-4fe9-bc0b-acd63eae493f))
(fp_line (start -3.3 -0.75) (end -3.3 -2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c81d818-ba62-4622-af2d-c06f004f2b35))
(fp_line (start -3.3 0.75) (end -4.75 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff3c254e-d52c-48e0-b513-a26e9d5a0ae1))
(fp_line (start -3.3 2.1) (end -3.3 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c8899c3-13a5-41d1-a107-ed5ebe486a73))
(fp_line (start 3.3 -2.1) (end 3.3 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46f5716e-da61-4f1f-bea9-76b1f28943ca))
(fp_line (start 3.3 -0.75) (end 4.75 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e82634f1-47ac-4623-a802-af7b637d6d2e))
(fp_line (start 3.3 0.75) (end 3.3 2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ede5282d-80ca-491c-a17b-eaac96002bad))
(fp_line (start 3.3 2.1) (end -3.3 2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e838687-7ee5-4a97-8989-f1ae8354b53e))
(fp_line (start 4.75 -0.75) (end 4.75 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a037a5d-e833-4cf5-97a4-569e7d990d98))
(fp_line (start 4.75 0.75) (end 3.3 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f476eb4c-fd0c-43a5-867e-5f9815f58a60))
(fp_rect (start -3.05 -1.85) (end 3.05 1.85)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 39f84f86-3c44-40d4-9563-4a8a3c7dc534))
(pad "1" smd rect (at -3.875 0 90) (size 1.25 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/NRST") (pinfunction "1") (pintype "passive") (tstamp 4a8a71b5-fa63-4e08-a35b-5c4561f7eb5e))
(pad "2" smd rect (at 3.875 0 90) (size 1.25 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 15399a62-0e44-4fd7-b7d4-74b4a0a63bac))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS.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 497fc146-43ab-45bb-b661-6f105e59ca27)
(at 113.81 98.27 -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 "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/daa2e9d4-ee05-4037-a23f-c681ef9f6279")
(attr smd)
(fp_text reference "RRST1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b36358f-31f6-4277-abc4-6bfd4864ad96)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cc6405d-5542-4b76-aa0e-0361b6ad501d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 84e28dc9-fb8b-45ab-af02-53d7cfd72b4c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcd2ac2b-8c8d-4839-ace9-0683c245af83))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb4ac7b8-4cc8-48a3-b88e-0b846a81a95a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5aa1d81f-1653-4438-84b8-1671c18dea4a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d2fcd3a-0635-47d4-b4b2-a71321903ce7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc215adb-f937-42ff-a309-15bf14b20bee))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c47ca89-16c1-48d4-b2ac-25bd2f6581ca))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77346423-64cc-49ff-a548-497a7862f1f3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22965dd3-f8d5-49ab-b28e-22feb586f811))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc25b6ef-e221-437b-b54b-ac981e24e24f))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c270c826-c7bf-435b-8c04-e98a9d52f0a0))
(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 2 "+3.3V") (pintype "passive") (tstamp a33d9e9c-3ad9-4530-98af-d489b06c862d))
(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 11 "/NRST") (pintype "passive") (tstamp f4eb63cc-ad88-4903-9a9c-6daf318f0b7e))
(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 853ece6e-9685-40d3-8aae-5a3daa17aa31)
(at 108.75 78.11 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 "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/c0d8523f-274b-48d6-933d-2dca364cea7b")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26846327-ffc3-4e12-961c-21e84828d142)
)
(fp_text value "470n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63e5dbb8-815c-4666-b4f7-999f5993a181)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 86620fd5-67b8-4fc9-8eed-e2f6817b9ccc)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f01b546-6330-4fae-b501-41029796b291))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6ed4cb8-2c37-4ecb-b533-747802b96950))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f69354c7-4842-4638-9d2f-3121b1e4a8a6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c71da24-2b58-438d-889b-63ea3757346e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d390192-24bb-4ef0-9dfb-c82a147eefe8))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20738894-e913-43af-a5eb-4b75d0b76dd6))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb0d4d5c-ce51-4e0c-bcba-3175d5d5e371))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac0810b4-a8c1-498d-83fb-5f1d194de50a))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e2bcaa6-9355-4250-aa0e-7f72df7fb0bd))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7db151f0-dfa1-408c-bffb-1f728326fc51))
(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 1 "GND") (pintype "passive") (tstamp 77e5fe80-0fc8-4bc1-ae27-bfcaf1dc170a))
(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 "+3.3V") (pintype "passive") (tstamp cbd1f3b4-36e5-418a-9ddb-618ba371e863))
(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 "RF_Module:ESP32-WROOM-32UE" locked (layer "F.Cu")
(tstamp 8e02a6f3-ca46-4584-93ca-febf58bbbb91)
(at 102.98 95.4 180)
(descr "2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf")
(tags "2.4 GHz Wi-Fi and Bluetooth module")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RF Module, ESP32-D0WDQ6 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 2.7-3.6V, onboard antenna, SMD")
(property "ki_keywords" "RF Radio BT ESP ESP32 Espressif onboard PCB antenna")
(path "/c1dcd93f-561e-4af4-907f-8e96dc9336d3")
(attr smd)
(fp_text reference "ESP32" (at 0 -10.5 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 035ae227-63e5-45b2-965e-034f5eff9269)
)
(fp_text value "ESP32-WROOM-32" (at 0 11.5 180 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f5c72d2-ce09-4c9b-b40e-1bc27316e9e8)
)
(fp_text user "${REFERENCE}" (at 0 0 180 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a058da7-5128-4b7b-b5f0-77b3b1d06141)
)
(fp_line (start -9.44 -9.3) (end -9.11 -9.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ae63ec3-037f-44e5-946c-e9d8e7c5b483))
(fp_line (start -9.11 -9.71) (end -9.11 -9.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a6e4be2-31b8-4025-ab34-024965878672))
(fp_line (start -9.11 -9.71) (end 9.11 -9.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8f45bc9-5ae6-43b2-a3f8-1568bd30619c))
(fp_line (start -9.11 8.81) (end -9.11 9.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc1e1f10-bdfb-4343-a396-8d3bb62351bc))
(fp_line (start -9.11 9.71) (end -6.425 9.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53a6a2eb-8452-49c8-a77e-d578aa8ab8f4))
(fp_line (start 6.425 9.71) (end 9.11 9.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e306cc7f-8e0a-4fd8-b797-9e032e673c69))
(fp_line (start 9.11 -9.71) (end 9.11 -9.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5497076d-14a5-4291-9335-e350dffa61b3))
(fp_line (start 9.11 8.81) (end 9.11 9.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85211f09-cf20-4ff6-8409-c5589414390e))
(fp_line (start -9.75 -9.85) (end -9.75 10.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00a3cbf1-e9e5-4a94-9920-5802805545f9))
(fp_line (start -9.75 -9.85) (end 9.75 -9.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6028e27-cadb-4f2d-adfd-edff40812c16))
(fp_line (start -9.75 10.35) (end 9.75 10.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 998bf0d2-8ff1-4997-adb0-df05e9bcf76e))
(fp_line (start 9.75 -9.85) (end 9.75 10.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed5e5d9b-2d39-4365-88f6-4febec0a7390))
(fp_line (start -9 -9.6) (end -9 -8.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aec1929a-adb2-41e1-ba13-ce94d8244d4d))
(fp_line (start -9 -9.6) (end 9 -9.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b05f3da5-cab5-4cfc-908c-4e9f9d3e6a43))
(fp_line (start -9 -7.96) (end -9 9.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c7f480c-57ec-483d-8909-adc32dc0c4b5))
(fp_line (start -9 9.6) (end 9 9.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4dcf3a2e-d93e-4798-b3f4-157d354bf74e))
(fp_line (start -8 -8.41) (end -9 -8.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 851d4b0f-ecfc-4c4e-a84c-8ab3e7f85b71))
(fp_line (start -8 -8.41) (end -9 -7.96)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24436a6b-d079-4a34-b3f8-fce5c9384ea5))
(fp_line (start 9 -9.6) (end 9 9.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30c312a6-cef9-4815-b0ce-970208b67c4e))
(pad "1" smd rect locked (at -8.75 -8.41 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 489f24bb-6526-42ff-b77b-b6548f5facd2))
(pad "2" smd rect locked (at -8.75 -7.14 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+3.3V") (pinfunction "VDD") (pintype "power_in") (tstamp 9052cd25-f08a-4a0e-86b1-bc5c33d76b2d))
(pad "3" smd rect locked (at -8.75 -5.87 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/NRST") (pinfunction "EN") (pintype "input") (tstamp e3e9fa38-db59-4e1c-851c-312acb8478c9))
(pad "4" smd rect locked (at -8.75 -4.6 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "unconnected-(ESP32-SENSOR_VP-Pad4)") (pinfunction "SENSOR_VP") (pintype "input+no_connect") (tstamp 16195f72-b9ab-44ec-93ae-641c0c410165))
(pad "5" smd rect locked (at -8.75 -3.33 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "unconnected-(ESP32-SENSOR_VN-Pad5)") (pinfunction "SENSOR_VN") (pintype "input+no_connect") (tstamp d15b4761-d73b-44c6-8100-c5f8206fd8df))
(pad "6" smd rect locked (at -8.75 -2.06 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/CURR_SENS1") (pinfunction "IO34") (pintype "input") (tstamp e47d08b8-c286-43d6-be44-7c0202185772))
(pad "7" smd rect locked (at -8.75 -0.79 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/CURR_SENS2") (pinfunction "IO35") (pintype "input") (tstamp e72fe314-fc2c-42b5-858c-e394ce6c43d7))
(pad "8" smd rect locked (at -8.75 0.48 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "unconnected-(ESP32-IO32-Pad8)") (pinfunction "IO32") (pintype "bidirectional+no_connect") (tstamp 54b99f05-57a1-4e21-8270-0df7bfa22f74))
(pad "9" smd rect locked (at -8.75 1.75 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/EN_DRV") (pinfunction "IO33") (pintype "bidirectional") (tstamp a8e76df4-d18c-4d59-8be2-bf5892db058b))
(pad "10" smd rect locked (at -8.75 3.02 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/PWM_OUT3") (pinfunction "IO25") (pintype "bidirectional") (tstamp 47d4950d-6d18-4923-8c75-0936a1cc9de2))
(pad "11" smd rect locked (at -8.75 4.29 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/PWM_OUT2") (pinfunction "IO26") (pintype "bidirectional") (tstamp 023a4b2b-a53f-4cc9-bb39-ddd4404ebac8))
(pad "12" smd rect locked (at -8.75 5.56 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/PWM_OUT1") (pinfunction "IO27") (pintype "bidirectional") (tstamp 42832034-a68b-4354-969d-079efcf59beb))
(pad "13" smd rect locked (at -8.75 6.83 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "unconnected-(ESP32-IO14-Pad13)") (pinfunction "IO14") (pintype "bidirectional+no_connect") (tstamp 145a6937-db46-4d09-9f2c-f917976b9ed5))
(pad "14" smd rect locked (at -8.75 8.1 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "unconnected-(ESP32-IO12-Pad14)") (pinfunction "IO12") (pintype "bidirectional+no_connect") (tstamp a8ec8f39-7d7a-42bb-8283-14d972ca26c5))
(pad "15" smd rect locked (at -5.715 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 80d1170d-7e32-480b-a9a6-43e4afb8af16))
(pad "16" smd rect locked (at -4.445 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(ESP32-IO13-Pad16)") (pinfunction "IO13") (pintype "bidirectional+no_connect") (tstamp 600979d1-0c7c-4ab5-90f0-d3bfbee7701b))
(pad "17" smd rect locked (at -3.175 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(ESP32-SHD{slash}SD2-Pad17)") (pinfunction "SHD/SD2") (pintype "bidirectional+no_connect") (tstamp da00630e-d78d-4a9b-a98e-3c99c6edbeee))
(pad "18" smd rect locked (at -1.905 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "unconnected-(ESP32-SWP{slash}SD3-Pad18)") (pinfunction "SWP/SD3") (pintype "bidirectional+no_connect") (tstamp e1c34948-9119-4276-bc92-35649c171fd5))
(pad "19" smd rect locked (at -0.635 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "unconnected-(ESP32-SCS{slash}CMD-Pad19)") (pinfunction "SCS/CMD") (pintype "bidirectional+no_connect") (tstamp e126a691-d515-4737-baee-3998a620748d))
(pad "20" smd rect locked (at 0.635 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "unconnected-(ESP32-SCK{slash}CLK-Pad20)") (pinfunction "SCK/CLK") (pintype "bidirectional+no_connect") (tstamp 1a99f2d6-7b36-4908-9497-eb89d7d9c62f))
(pad "21" smd rect locked (at 1.905 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(ESP32-SDO{slash}SD0-Pad21)") (pinfunction "SDO/SD0") (pintype "bidirectional+no_connect") (tstamp 69212922-985e-4160-9d40-e24f606d4381))
(pad "22" smd rect locked (at 3.175 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(ESP32-SDI{slash}SD1-Pad22)") (pinfunction "SDI/SD1") (pintype "bidirectional+no_connect") (tstamp 0386c928-e408-4a17-a586-d5960deddb22))
(pad "23" smd rect locked (at 4.445 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(ESP32-IO15-Pad23)") (pinfunction "IO15") (pintype "bidirectional+no_connect") (tstamp 5dd44bce-3b96-477a-be3b-12695627ee42))
(pad "24" smd rect locked (at 5.715 9.35 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 61 "unconnected-(ESP32-IO2-Pad24)") (pinfunction "IO2") (pintype "bidirectional+no_connect") (tstamp 95e5f675-0a40-424b-9ac2-230a2bcdc361))
(pad "25" smd rect locked (at 8.75 8.1 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/BOOT") (pinfunction "IO0") (pintype "bidirectional") (tstamp c001d3f2-5752-4b00-b4e6-c4bbd3109166))
(pad "26" smd rect locked (at 8.75 6.83 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "unconnected-(ESP32-IO4-Pad26)") (pinfunction "IO4") (pintype "bidirectional+no_connect") (tstamp d4fd7c5d-7466-4490-8958-3b52714d7f62))
(pad "27" smd rect locked (at 8.75 5.56 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(ESP32-IO16-Pad27)") (pinfunction "IO16") (pintype "bidirectional+no_connect") (tstamp 4bf149be-6386-45dc-a98c-bb9c3209ccec))
(pad "28" smd rect locked (at 8.75 4.29 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/CS") (pinfunction "IO17") (pintype "bidirectional") (tstamp 3eb992d9-7f0f-46c0-b63e-bf66d125aee4))
(pad "29" smd rect locked (at 8.75 3.02 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(ESP32-IO5-Pad29)") (pinfunction "IO5") (pintype "bidirectional+no_connect") (tstamp 09dc9b8e-c4b3-419a-ab2e-7e84a5f89519))
(pad "30" smd rect locked (at 8.75 1.75 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/CLK") (pinfunction "IO18") (pintype "bidirectional") (tstamp 9ba32b8d-a6a9-498e-a615-339e1e15ff57))
(pad "31" smd rect locked (at 8.75 0.48 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/MISO") (pinfunction "IO19") (pintype "bidirectional") (tstamp 6e71e38f-178f-49a0-96d0-765592f13271))
(pad "32" smd rect locked (at 8.75 -0.79 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(ESP32-NC-Pad32)") (pinfunction "NC") (pintype "no_connect") (tstamp ab01dd3b-0063-45a4-87ee-0ba0d42aa591))
(pad "33" smd rect locked (at 8.75 -2.06 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/SDA") (pinfunction "IO21") (pintype "bidirectional") (tstamp 2f701a2e-a8c7-46e5-8dfd-b3e64677f4c1))
(pad "34" smd rect locked (at 8.75 -3.33 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/RX") (pinfunction "RXD0/IO3") (pintype "bidirectional") (tstamp e4440d60-62d4-448c-bbed-2983448cd595))
(pad "35" smd rect locked (at 8.75 -4.6 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/TX") (pinfunction "TXD0/IO1") (pintype "bidirectional") (tstamp 09913d7a-cd77-4d21-a0fb-6f822f8d2481))
(pad "36" smd rect locked (at 8.75 -5.87 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/SCL") (pinfunction "IO22") (pintype "bidirectional") (tstamp fca00bb0-3398-45e5-91ef-6500ce27090a))
(pad "37" smd rect locked (at 8.75 -7.14 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(ESP32-IO23-Pad37)") (pinfunction "IO23") (pintype "bidirectional+no_connect") (tstamp 90415442-1a2d-4d1b-a549-7834e9023b01))
(pad "38" smd rect locked (at 8.75 -8.41 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 333a17f7-44f8-45c5-a62e-0b04aa0ab0d1))
(pad "39" smd rect locked (at -2.9 -2.47 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 07562699-680d-4ef1-8a22-cc988e3b765e))
(pad "39" thru_hole circle locked (at -2.9 -1.77 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7b2d4399-3d58-44aa-8d3e-086adeff54c3))
(pad "39" smd rect locked (at -2.9 -1.07 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 1eb49789-1c37-40ee-8872-2413be6ca224))
(pad "39" thru_hole circle locked (at -2.9 -0.37 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 0077617d-34fb-4b05-9777-24fa4dca83aa))
(pad "39" smd rect locked (at -2.9 0.33 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5a285f3c-ea04-4bc4-af84-15bd7d68c98a))
(pad "39" thru_hole circle locked (at -2.2 -2.47 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp ecc8355a-36ef-4ec0-92d7-b6dc20f2e9d7))
(pad "39" thru_hole circle locked (at -2.2 -1.07 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 8f3656e4-1996-4a25-9ee9-264cef8126b9))
(pad "39" thru_hole circle locked (at -2.2 0.33 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6b1c1037-25a1-4c7b-bd82-0d3557b220aa))
(pad "39" smd rect locked (at -1.5 -2.47 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp f88d782f-20fe-46f0-ae2f-184dbc58ab1e))
(pad "39" thru_hole circle locked (at -1.5 -1.77 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 0f6b7d21-94a4-4f20-91ea-f4f33196cc1d))
(pad "39" smd rect locked (at -1.5 -1.07 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp dd2281fb-a484-4133-9fb3-041acb51eb63))
(pad "39" smd rect locked (at -1.5 -1.07 180) (size 3.8 3.8) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6cc674f3-d51c-4f76-aa8f-999774c4e929))
(pad "39" thru_hole circle locked (at -1.5 -0.37 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp f4985a36-9c74-4362-a962-819b55dba838))
(pad "39" smd rect locked (at -1.5 0.33 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 116a2d32-e1dd-476c-9f2e-fe980ad74c5d))
(pad "39" thru_hole circle locked (at -0.8 -2.47 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 298e72d2-3e1a-4b2d-a629-696464a20ad7))
(pad "39" thru_hole circle locked (at -0.8 -1.07 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2b39a93c-2978-445f-975f-40bdf707f5fe))
(pad "39" thru_hole circle locked (at -0.8 0.33 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3e1db4fd-1ef5-440f-bbc1-b6a65868a168))
(pad "39" smd rect locked (at -0.1 -2.47 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 09cc5381-15b5-4bb7-8d88-b9e6ad95ae4d))
(pad "39" thru_hole circle locked (at -0.1 -1.77 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp efd627cd-6657-4166-8b6f-4d1846bcf275))
(pad "39" smd rect locked (at -0.1 -1.07 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp a598808a-92ca-4af1-bea8-19167e2e28b4))
(pad "39" thru_hole circle locked (at -0.1 -0.37 180) (size 0.6 0.6) (drill 0.2) (property pad_prop_heatsink) (layers "*.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 60ce5821-81d8-42dc-b830-af7e3c63c366))
(pad "39" smd rect locked (at -0.1 0.33 180) (size 0.9 0.9) (layers "F.Cu" "F.Paste")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3eaedb9a-fbcb-4231-a9df-96ed76bd3143))
(model "${KICAD6_3DMODEL_DIR}/RF_Module.3dshapes/ESP32-WROOM-32UE.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD7_3DMODEL_DIR}/RF_Module.3dshapes/ESP32-WROOM-32U.step"
(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 a42f791a-f779-4f5f-ac43-d057f734638d)
(at 106.9205 78.1 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 "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/17d2296f-1a3e-400f-8276-f4f4850d124e")
(attr smd)
(fp_text reference "R3" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4a41fe2-fba5-4f70-8d91-a3763c717e6f)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edf5a767-4fc2-454d-9538-b1ae32fb697a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 130c1970-901a-4156-a9c2-7fd6eb3df34b)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35799a4d-1ff8-4ae2-8815-27e324df3579))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4bd01b54-b62c-43ea-ac4a-9b4ea48625ab))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3b5f448-d54b-4cdf-9ed6-41356db71366))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66bc6bc8-79c4-4f9d-bb1b-6d3268c7db86))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abf828c5-ac08-45f4-ab02-ac5c3d1f7c7b))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0f14051-4906-4976-943c-3497fc295178))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92527c74-9750-48cc-bc09-7e2b83344940))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc601732-74cf-4d91-ae80-9eedba86851f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de1a98d3-851e-41d9-adc6-c9c40fda7c53))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a27b29ba-9c5c-4a4d-83a7-881efedd21b0))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(D1-K)") (pintype "passive") (tstamp 7a876185-4be8-4794-9b85-86f28179c4b1))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pintype "passive") (tstamp e0c6c9b9-c814-46c0-8d94-90dadd4670f9))
(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 "Connector_PinHeader_2.00mm:PinHeader_1x04_P2.00mm_Vertical_SMD_aligned" (layer "F.Cu")
(tstamp af0425de-5a30-4bd6-ab0f-ea877edde1b1)
(at 102.98 107.55 -90)
(descr "surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left)")
(tags "Surface mounted pin header SMD 1x04 2.00mm single row style1 pin1 left")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/44cea18f-7cd0-4140-ba0c-6695a369399e")
(attr smd)
(fp_text reference "J1" (at 0 -5.06 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3f704cc-a6e2-4337-838f-177e48f9a570)
)
(fp_text value "Conn_01x04_Pin" (at 0 5.06 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af395af1-6ed3-4462-a20d-13402aa7458c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff9b4c47-cc2b-44ce-b7c4-a06c7d53b041)
)
(fp_line (start -2.286 -4.5) (end -2.286 4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01cd7f02-2928-4038-abb1-21a2193359a6))
(fp_line (start -2.286 4.5) (end 1.27 4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e46b9aff-cd5d-4f4d-ad89-1eabb32a6e7f))
(fp_line (start 1.27 -4.5) (end -2.286 -4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a47cc3b7-a6ad-416f-b05c-9c809f3135fe))
(fp_line (start 1.27 4.5) (end 1.27 -4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f5022bd-3054-4187-ad06-9944958ab238))
(fp_line (start -1 -3.25) (end -0.25 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62697108-5c6f-4a14-9bc6-b06f54057071))
(fp_line (start -1 4) (end -1 -3.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84393c37-7d41-4f4d-baaf-8f90ed0851ff))
(fp_line (start -0.25 -4) (end 1 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a2f8f57-f628-4682-ace1-e8a313ac9f49))
(fp_line (start 1 -4) (end 1 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0021ffbd-dbad-4d96-94fb-324e785e2258))
(fp_line (start 1 4) (end -1 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fac353b6-7358-4b66-a3b1-ed755dc55f43))
(pad "1" smd rect (at -1 -3 270) (size 2.03 0.89) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp f332dc69-e4fe-4b49-9c09-06de72fd8ca3))
(pad "2" smd rect (at -1 -1 270) (size 2.03 0.89) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/SDA") (pinfunction "Pin_2") (pintype "passive") (tstamp c8e7b059-0a2b-4a18-bda1-7800844e82d7))
(pad "3" smd rect (at -1 1 270) (size 2.03 0.89) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/SCL") (pinfunction "Pin_3") (pintype "passive") (tstamp 6681134e-e6e1-4bfa-8912-38ad56d93056))
(pad "4" smd rect (at -1 3 270) (size 2.03 0.89) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 23508a2e-3712-445b-bd9e-81a538b1adc7))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Left.wrl" hide
(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 b65f0ab7-10e7-4d57-a9ba-034b0ef62028)
(at 113.81 101.765 -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 "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4f849f89-3c52-40be-9740-7f82a3060659")
(attr smd)
(fp_text reference "CESP32" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b8797b4-4ec4-49c2-87cc-04d35fc76b82)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ebf47a7-55bb-4be7-b1de-4dd6c1649cc4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp eba905d4-90ef-4063-9788-83c32e062b2b)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e709fa73-9186-49c7-b3fe-9f3674951e39))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e76ac485-9ebf-481c-8fc7-3db3a7a46ad2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63776e70-3b1a-4a19-9003-413963abc6e9))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76743892-ab4c-48a1-b8e3-330ea9e79a19))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 580b39a9-852c-4b37-b9a1-989efb294460))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fd32321-61f7-4dcf-8bc0-15c90a1f45fe))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e31e6854-29d3-4bef-82c4-f8b0e12d0da8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1759359a-1c5f-4082-8b7a-cd52c569cbd0))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7eda64c-4313-461a-8234-365c4226bf96))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5c3b5f6-a6bc-4ba7-b6ef-70d37ab8b5d2))
(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 1 "GND") (pintype "passive") (tstamp 7a09a883-8290-4aae-877d-a434099d2873))
(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 "+3.3V") (pintype "passive") (tstamp af6e6480-0316-4a9b-a5c1-e52dd407d9df))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp bf8eeb07-8a08-4fb9-b911-5b449a0ef63b)
(at 96.23 77.525)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/806a5716-a0f2-4aa9-9b54-443f5a0938b0")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c332e4f-26b6-4a60-ab68-55d5f8231fb7)
)
(fp_text value "Conn_01x02_Pin" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 262c99eb-0e5b-48fa-9f47-b2c4436782f3)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0ddfedb-80d2-4ec7-a99b-3a3e13b64d32)
)
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e890688a-6e25-4e14-b1f3-916b2a7a817f))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a68609e-6e77-4886-9442-54bfe45ba478))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c3f3d00-86b4-43d2-bcad-7d680b7c4a39))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16661cf8-bb9d-4fb1-b57a-dc081562ff7e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4bdcaea-6bca-49c9-905f-0afff6bc2b6c))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 036a7337-1854-43a7-8a75-8dfb17a719d5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a452be85-2ea5-4555-aa43-693dd6207da7))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfe24712-c6bd-4db7-8365-eaa7a5f34b84))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02b4ed8e-54e5-4946-b0bf-b103a8c4def5))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/TX") (pinfunction "Pin_1") (pintype "passive") (tstamp 753144f1-1b66-4f17-8943-cd3e6f8c972f))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/RX") (pinfunction "Pin_2") (pintype "passive") (tstamp 6f725410-7bb7-40b5-8c3d-ea0971d04849))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp d2af7166-0bf1-4ff2-830e-b856c4ef31a7)
(at 100.570003 78.739994)
(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 "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9d26cacc-7620-4a11-9a92-bce8e2be9a2f")
(attr smd)
(fp_text reference "R2" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdbaec5a-287a-449e-abd5-844521b475ea)
)
(fp_text value "330" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88447c54-e86b-466d-925c-807785d1ff4f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 67b5a41f-c83c-4f44-87d1-29af78d96568)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp daa2373f-b1e8-4214-b5c3-6c41693e8dcb))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b0d553e-1502-4203-8e31-150a65b6a677))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c0c454d-3b5c-4af2-9388-4ee3762a28b8))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b991d4b2-bb0a-4ec4-897b-3fecdee670d3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a949e301-8026-432b-9ee0-5f5fbdd36ce5))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdd22d81-9b13-48bc-b2cd-8e3b9431a72f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26aaee40-8432-400a-98dd-8b30181f7e46))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c17beb42-9a68-4bb8-a84b-5e5c6ba1713a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f5f357f-4c20-42a7-82f8-d88a7bd02aa7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5634293f-5c11-4345-a57e-72881c1bdc2c))
(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 60 "Net-(D2-A)") (pintype "passive") (tstamp d51be248-db2d-4c39-ba71-dc607491376a))
(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 2 "+3.3V") (pintype "passive") (tstamp b0cfaf91-5878-4b1c-a027-4d71342dd813))
(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 "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp d800db1f-030a-42e2-bf9d-7228eb265dc4)
(at 100.53 80.65 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/2e2de744-db55-47a5-b7e9-aeb6aa8e408a")
(attr smd)
(fp_text reference "D2" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35183d6f-e941-4ea7-91fc-b9b2f7c1f422)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 209016f9-bab6-4326-bb76-696f25e8ccf0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 57ff0df2-0dc4-429b-be45-329cc1d444a9)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 380627b3-a579-42f0-a693-9feb3863753b))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53e8f046-e57a-4dd0-a10a-8d67c18c676e))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a829cea7-a10c-4881-acd1-240d8c7a30c4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 989bf826-a4ac-490d-84bc-180ad2d61bdc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9199e379-74ab-4bb5-a684-4456265f1050))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd97de26-6124-41c9-a2dd-3d70ce6d0535))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7299257b-b710-4b69-b84a-e4cd791f71ba))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c7ea929-7d45-42e9-95bb-3f08af62e085))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 400589b4-453e-45e2-9dfd-34c2a20943b3))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f54bf19e-4fb6-4dab-8026-b62f65c0daf0))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5bfeddf-4967-4e87-8396-3f62af848ea7))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58d6b2de-0ace-4d23-b234-10138fb80b9a))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp ddaa1f72-6d33-45d9-80f1-293994b8571a))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 60 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp efc1c21b-336f-4e49-a442-e9fb16a367b9))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp ea4a56f7-1cf2-43ec-adc6-2f8459dcbe59)
(at 104.87 80.65 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/457c43f4-1164-4bb0-8729-c829caabc572")
(attr smd)
(fp_text reference "D1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 012fc554-8f76-45cf-8225-1b5ac889f301)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b388514b-a545-4e80-8476-730011a58a39)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3654a189-8cff-467a-9409-a4483aa8e223)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07afc494-1f88-470e-b08d-39c91e319a37))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d65a2e5-bf7e-4df5-b419-e1642dd6974f))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f2bb14a-d435-47f5-b217-cb840c2691eb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2822edac-1c12-4620-aa10-d9e9b9c2f220))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43e9d037-604a-4f81-aaa1-1c706c14cdab))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7f1f9d5-6f1c-4054-b938-b38b5249be55))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01aef3d9-ed51-4630-b527-533d426f0f66))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90a857a0-ff0d-4aa6-9368-4608cc6ddb60))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48b50f4f-e422-4eea-9f7f-78e5c2df5f72))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 939411f7-9e46-4062-988a-6776bf7011fe))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43ea2965-e3a6-4bbd-966d-0c450e29cf78))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c01b139-cc85-4b3e-b866-1db2db87fb75))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp d45f3a77-7630-4f61-a0ad-56b3282f85ec))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 59 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 1175b2ee-ae51-4ccf-bd3d-2bd54e88e8ef))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "B.Cu")
(tstamp 0ed8d04a-3e30-41b6-a334-e541dc90a21e)
(at 93.25 95.4 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "torque_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/6f1e0c8b-8054-41f3-ba69-535f28381cae")
(attr smd)
(fp_text reference "RS1" (at 0 1.82) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ad254015-2979-4a40-a18e-972a704e095f)
)
(fp_text value "50m" (at 0 -1.82) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 28bee33f-8ace-48b2-92c1-95ffb8a626f3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp ac181491-648b-49ba-8040-ca7cbf3bd4ac)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)