-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstepper_hbridge.kicad_sch
1152 lines (1127 loc) · 42.3 KB
/
stepper_hbridge.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid ad96707b-f24f-4bcc-a837-2649b196aa16)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "QuarkCncStepperDrivers:AO4264E" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AO4264E" (at 5.08 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 5.08 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/1912111437_Alpha-&-Omega-Semicon-AO4264E_C334232.pdf" (at 7.62 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC" "C334232" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AO4264E_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "AO4264E_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54) hide
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54) hide
(name "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54) hide
(name "D" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54) hide
(name "D" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54) hide
(name "D" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 133.35 88.9) (diameter 0.9144) (color 0 0 0 0)
(uuid 0774b60f-e343-428b-9125-3ca983239ad5)
)
(junction (at 130.81 57.15) (diameter 0.9144) (color 0 0 0 0)
(uuid 0844b132-5386-469c-86ff-d527c8a00608)
)
(junction (at 93.98 95.25) (diameter 0) (color 0 0 0 0)
(uuid 42012069-f136-4cdf-8386-a5e648d61587)
)
(junction (at 74.93 72.39) (diameter 0) (color 0 0 0 0)
(uuid 5d7cb436-106e-4464-b448-3b8bd128554c)
)
(junction (at 130.81 53.34) (diameter 0.9144) (color 0 0 0 0)
(uuid 6b847b8a-c935-4366-8f7b-7cdbe96384da)
)
(junction (at 152.4 88.9) (diameter 0) (color 0 0 0 0)
(uuid 825065db-dc11-43e9-aa2e-59e6b2cd21f3)
)
(junction (at 133.35 95.25) (diameter 0.9144) (color 0 0 0 0)
(uuid 9924c304-97d1-4655-9ab8-854a335a84c2)
)
(junction (at 93.98 105.41) (diameter 0) (color 0 0 0 0)
(uuid aafd680e-f3de-44c3-b8d2-897188909f89)
)
(junction (at 171.45 53.34) (diameter 0) (color 0 0 0 0)
(uuid b3dbf4ad-71cb-48f5-9655-41b47deeea78)
)
(junction (at 133.35 105.41) (diameter 0) (color 0 0 0 0)
(uuid b7844cf9-69d3-4f7a-977a-bfc30d5d4c82)
)
(junction (at 160.02 72.39) (diameter 0.9144) (color 0 0 0 0)
(uuid eaab2e59-ff73-4d74-b3d3-7e7c2515083f)
)
(junction (at 115.57 72.39) (diameter 0.9144) (color 0 0 0 0)
(uuid eb14ae89-b776-4a7c-b1cb-51227ede5631)
)
(junction (at 152.4 72.39) (diameter 0.9144) (color 0 0 0 0)
(uuid ee6e4a23-bb7c-4f28-ab56-3ba1b79e1c04)
)
(junction (at 133.35 107.95) (diameter 0) (color 0 0 0 0)
(uuid ef11623e-ea9c-4a76-a028-9fae209a45f2)
)
(wire (pts (xy 96.52 80.01) (xy 99.06 80.01))
(stroke (width 0) (type solid))
(uuid 07583d84-ad6d-4d79-a960-dd2b5f57f86e)
)
(wire (pts (xy 115.57 57.15) (xy 115.57 59.69))
(stroke (width 0) (type solid))
(uuid 0d25d75c-d973-42df-95fa-053289d08921)
)
(wire (pts (xy 96.52 64.77) (xy 99.06 64.77))
(stroke (width 0) (type solid))
(uuid 0f28de93-dcbe-4bd7-8317-0302aad8c458)
)
(wire (pts (xy 143.51 80.01) (xy 144.78 80.01))
(stroke (width 0) (type solid))
(uuid 11234439-ee30-466c-a017-fd367f3b387f)
)
(wire (pts (xy 130.81 57.15) (xy 152.4 57.15))
(stroke (width 0) (type solid))
(uuid 1612fc33-97ef-4ce2-805c-d14133a4b38d)
)
(wire (pts (xy 115.57 57.15) (xy 130.81 57.15))
(stroke (width 0) (type solid))
(uuid 214b8899-33af-4bee-a5c6-3e9bde225a88)
)
(wire (pts (xy 133.35 80.01) (xy 135.89 80.01))
(stroke (width 0) (type solid))
(uuid 2c28377b-f570-498c-adf9-5974a0f1fcd0)
)
(wire (pts (xy 152.4 57.15) (xy 152.4 59.69))
(stroke (width 0) (type solid))
(uuid 2f63312d-8c47-439b-b4cf-25bfc43d754d)
)
(wire (pts (xy 133.35 88.9) (xy 133.35 95.25))
(stroke (width 0) (type solid))
(uuid 361c1c54-8c9c-4f18-9e4e-67d566833277)
)
(wire (pts (xy 190.5 60.96) (xy 190.5 63.5))
(stroke (width 0) (type default))
(uuid 3ab5b1ec-fd69-4e5c-966b-11e237ffe8e7)
)
(wire (pts (xy 130.81 53.34) (xy 130.81 57.15))
(stroke (width 0) (type solid))
(uuid 3e486290-f566-45a0-afae-4ad95d3da5dc)
)
(wire (pts (xy 133.35 88.9) (xy 152.4 88.9))
(stroke (width 0) (type default))
(uuid 40e5537c-3bd5-4e8b-9d72-402b5bac52dc)
)
(wire (pts (xy 133.35 95.25) (xy 133.35 96.52))
(stroke (width 0) (type solid))
(uuid 522f0e75-8da5-47ac-b761-83aa8d496bcc)
)
(wire (pts (xy 115.57 88.9) (xy 133.35 88.9))
(stroke (width 0) (type solid))
(uuid 55a6d650-c8ae-4f18-b677-310ee48f11ef)
)
(wire (pts (xy 71.12 72.39) (xy 74.93 72.39))
(stroke (width 0) (type solid))
(uuid 5e08289c-6ad0-4b5a-82c1-b28d4fd7fa48)
)
(wire (pts (xy 74.93 72.39) (xy 115.57 72.39))
(stroke (width 0) (type solid))
(uuid 5e08289c-6ad0-4b5a-82c1-b28d4fd7fa49)
)
(wire (pts (xy 130.81 39.37) (xy 130.81 53.34))
(stroke (width 0) (type solid))
(uuid 62d5f2a9-360d-45bc-909c-6ed4c0f9f52b)
)
(wire (pts (xy 133.35 105.41) (xy 133.35 107.95))
(stroke (width 0) (type default))
(uuid 649eefbc-4335-47b3-8748-7add72831bba)
)
(wire (pts (xy 133.35 107.95) (xy 133.35 110.49))
(stroke (width 0) (type default))
(uuid 649eefbc-4335-47b3-8748-7add72831bbb)
)
(wire (pts (xy 106.68 64.77) (xy 107.95 64.77))
(stroke (width 0) (type solid))
(uuid 67450a5f-1f20-4acb-8f6e-75c19f004c17)
)
(wire (pts (xy 115.57 72.39) (xy 115.57 74.93))
(stroke (width 0) (type solid))
(uuid 68078fff-62c9-442b-805e-89d416081496)
)
(wire (pts (xy 106.68 80.01) (xy 107.95 80.01))
(stroke (width 0) (type solid))
(uuid 6d74cc9d-752a-4b2f-bc6d-c3f1b88e3c2d)
)
(wire (pts (xy 55.88 95.25) (xy 93.98 95.25))
(stroke (width 0) (type solid))
(uuid 78dab268-d561-4f36-b86e-80e57727f498)
)
(wire (pts (xy 93.98 95.25) (xy 118.11 95.25))
(stroke (width 0) (type solid))
(uuid 78dab268-d561-4f36-b86e-80e57727f499)
)
(wire (pts (xy 160.02 72.39) (xy 160.02 76.2))
(stroke (width 0) (type solid))
(uuid 7c04227a-b1be-4e9f-a086-32c493eee30d)
)
(wire (pts (xy 152.4 85.09) (xy 152.4 88.9))
(stroke (width 0) (type solid))
(uuid 7c38794b-2be7-433d-b1cf-5069c01570e6)
)
(wire (pts (xy 152.4 88.9) (xy 152.4 96.52))
(stroke (width 0) (type default))
(uuid 7d92ae4a-180a-4b22-908f-1925bab67a1f)
)
(wire (pts (xy 160.02 72.39) (xy 167.64 72.39))
(stroke (width 0) (type solid))
(uuid 814da79d-d3fd-48b9-82df-eba37b67473e)
)
(wire (pts (xy 171.45 60.96) (xy 171.45 63.5))
(stroke (width 0) (type default))
(uuid 906e6dc4-bf85-44a1-99cc-687378aadec8)
)
(wire (pts (xy 133.35 105.41) (xy 133.35 104.14))
(stroke (width 0) (type solid))
(uuid 9dfdf671-b94d-452e-9dc6-afe17a61e9e6)
)
(wire (pts (xy 160.02 83.82) (xy 160.02 88.9))
(stroke (width 0) (type default))
(uuid a35d6f79-46f2-450f-a4d4-f078e482f6e0)
)
(wire (pts (xy 115.57 69.85) (xy 115.57 72.39))
(stroke (width 0) (type solid))
(uuid a6d10b35-3529-44ae-a44f-f32babe1d4c4)
)
(wire (pts (xy 152.4 69.85) (xy 152.4 72.39))
(stroke (width 0) (type solid))
(uuid a9741858-d082-4cbe-a79f-08aa6a97326c)
)
(wire (pts (xy 171.45 53.34) (xy 190.5 53.34))
(stroke (width 0) (type default))
(uuid aa418598-f53a-42c1-8736-5cf76f1a964d)
)
(wire (pts (xy 130.81 53.34) (xy 171.45 53.34))
(stroke (width 0) (type solid))
(uuid aa68688e-7b5b-4729-a878-cee03d7f1012)
)
(wire (pts (xy 133.35 107.95) (xy 152.4 107.95))
(stroke (width 0) (type default))
(uuid aff406c7-02f7-4ebb-9944-3b8cb1d167f8)
)
(wire (pts (xy 152.4 104.14) (xy 152.4 107.95))
(stroke (width 0) (type default))
(uuid aff406c7-02f7-4ebb-9944-3b8cb1d167f9)
)
(wire (pts (xy 74.93 83.82) (xy 74.93 86.36))
(stroke (width 0) (type default))
(uuid b1a60021-6a17-4dde-b339-947ec417582c)
)
(wire (pts (xy 125.73 95.25) (xy 133.35 95.25))
(stroke (width 0) (type solid))
(uuid c261f504-dfcb-41e5-9cba-b7283e7c58c9)
)
(wire (pts (xy 55.88 105.41) (xy 93.98 105.41))
(stroke (width 0) (type solid))
(uuid c5aeb1a3-a5b0-446c-85a8-1f9f8cf14a77)
)
(wire (pts (xy 93.98 105.41) (xy 118.11 105.41))
(stroke (width 0) (type solid))
(uuid c5aeb1a3-a5b0-446c-85a8-1f9f8cf14a78)
)
(wire (pts (xy 74.93 72.39) (xy 74.93 76.2))
(stroke (width 0) (type solid))
(uuid c6459c67-702c-489c-a5d4-b1e8fbe7bf94)
)
(wire (pts (xy 143.51 64.77) (xy 144.78 64.77))
(stroke (width 0) (type solid))
(uuid c98b42e0-47e5-4eba-8c28-fd59d2772f8b)
)
(wire (pts (xy 152.4 72.39) (xy 160.02 72.39))
(stroke (width 0) (type solid))
(uuid d060965f-daa0-427d-8864-a9210b0593eb)
)
(wire (pts (xy 115.57 85.09) (xy 115.57 88.9))
(stroke (width 0) (type solid))
(uuid dbdb45d4-2da3-4c7c-9b64-e55950a72550)
)
(wire (pts (xy 125.73 105.41) (xy 133.35 105.41))
(stroke (width 0) (type solid))
(uuid ecb12afc-5f7a-41cb-b08f-a7cce494324c)
)
(wire (pts (xy 152.4 72.39) (xy 152.4 74.93))
(stroke (width 0) (type solid))
(uuid ed286e8f-f503-4436-af9a-53147178278e)
)
(wire (pts (xy 133.35 64.77) (xy 135.89 64.77))
(stroke (width 0) (type solid))
(uuid f5ab7242-b4f0-483d-8b98-f235f911dcb7)
)
(wire (pts (xy 93.98 95.25) (xy 93.98 96.52))
(stroke (width 0) (type default))
(uuid facee909-3c8f-4e2f-a1ad-8580a4166f08)
)
(wire (pts (xy 93.98 104.14) (xy 93.98 105.41))
(stroke (width 0) (type default))
(uuid fb855db2-2643-419a-8eac-d82044e9c6af)
)
(text "Size up to 1206" (at 95.25 46.99 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7ca68b1e-81b3-4fbb-80b0-c34e42e5e2a5)
)
(text "Size 10 ohm resistor (as a function of power supply charge). Also check for gate drive snubbing"
(at 33.02 25.4 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b81e2aa2-cb98-48fd-9dd9-75350ea3dd4a)
)
(text "Average Pdiss of\n sense resistor\n 0.1 W" (at 95.25 55.88 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c3435a45-f0d7-47de-bc9c-587cb51a63fb)
)
(label "hbridge_low_side" (at 128.27 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1f992588-3f9f-4928-bff5-4efa950e9c32)
)
(hierarchical_label "HIGH_GATE_2" (shape output) (at 133.35 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 07e73306-bb0b-4b5b-9240-4af3a7ef7d93)
)
(hierarchical_label "GND" (shape input) (at 160.02 88.9 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1e93f190-07fc-4503-9f82-1d9c1e4234fe)
)
(hierarchical_label "COIL_1" (shape output) (at 71.12 72.39 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 244f50cf-ee92-4fb8-b5ae-a602c8e21ef6)
)
(hierarchical_label "GND" (shape input) (at 190.5 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3285c934-1969-4201-9433-857a667025be)
)
(hierarchical_label "SENSE_RES_HIGH" (shape output) (at 55.88 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4063ef9e-afe4-4765-b233-9aea4920e4f3)
)
(hierarchical_label "HIGH_GATE_1" (shape output) (at 96.52 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 49bc7eec-92ad-42e7-bbc4-fcb38855771a)
)
(hierarchical_label "VMOTOR" (shape input) (at 130.81 39.37 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4e804f65-3538-4383-8d66-e9c934dec4d1)
)
(hierarchical_label "COIL_2" (shape output) (at 167.64 72.39 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9312967c-d0a0-45e7-9d37-f8d6ade28870)
)
(hierarchical_label "SENSE_RES_LOW" (shape output) (at 55.88 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9a5b1b39-7fb1-48b3-a75f-57a3b78e8787)
)
(hierarchical_label "LOW_GATE_2" (shape output) (at 133.35 80.01 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c18bcb5f-556b-4d3c-95cd-0bdd41a551d5)
)
(hierarchical_label "LOW_GATE_1" (shape output) (at 96.52 80.01 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dcdc7572-43d9-49d4-a245-7a8affc8efed)
)
(hierarchical_label "GND" (shape input) (at 133.35 110.49 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ecbddbe7-b439-4c07-9bd4-035bd0d9f601)
)
(hierarchical_label "GND" (shape input) (at 171.45 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f40b49cd-96a1-43f2-afd0-3d0843a7725a)
)
(hierarchical_label "GND" (shape input) (at 74.93 86.36 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f7c41132-7d69-4426-ae7c-e70ddb61140f)
)
(symbol (lib_id "Device:R") (at 139.7 80.01 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0a9fdc37-eaae-4fa9-bb0d-5c9d757d4204)
(property "Reference" "R7" (at 139.7 74.93 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1R 1%" (at 139.7 77.47 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 139.7 81.788 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 139.7 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17724" (at 139.7 80.01 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b33e209e-ddb5-44f5-bdd0-384e2ad66470))
(pin "2" (uuid 488c3a2c-82c4-42d7-9deb-6e927a44a488))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "R7") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "R25") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 93.98 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 26bf0c3c-be1d-449d-a98e-727a95c3090e)
(property "Reference" "C2" (at 97.79 99.6949 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2.2n 50V" (at 97.79 102.2349 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 94.9452 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 93.98 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1604" (at 93.98 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 76d90710-4068-4c9e-b8bb-f854f7229c53))
(pin "2" (uuid 4e272fb5-f8ab-4def-83f2-9314fcafe4c7))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "C2") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "C20") (unit 1)
)
)
)
)
(symbol (lib_id "QuarkCncStepperDrivers:AO4264E") (at 113.03 80.01 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 27990c54-6f76-415e-b64a-f94f91c3b681)
(property "Reference" "Q2" (at 116.84 76.1999 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AO4264E" (at 116.84 83.8199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 118.11 82.55 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/1912111437_Alpha-&-Omega-Semicon-AO4264E_C334232.pdf" (at 120.65 80.01 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC" "C334232" (at 113.03 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3a1be3bb-8fce-4071-9ebf-0cf6c321b3f4))
(pin "2" (uuid 8a84be84-1367-4473-a1ca-eae460d34114))
(pin "3" (uuid e9b41eee-7c18-48a7-af9c-6372b69e3aaf))
(pin "4" (uuid 423af14d-889d-4931-ba08-11ba424fc963))
(pin "5" (uuid f3e4ff49-d1e0-4adb-8b05-72b4fe2dc79f))
(pin "6" (uuid 94a56b14-b42e-41f9-b013-1189960d92ba))
(pin "7" (uuid 6a368b5d-ce05-4a93-b916-404feb2382be))
(pin "8" (uuid 1b5aea64-989e-44de-914d-3e8964b28f61))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "Q2") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "Q6") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 139.7 64.77 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 556369b1-e1f9-4958-b345-0b2c58b45499)
(property "Reference" "R6" (at 139.7 59.69 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1R 1%" (at 139.7 62.23 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 139.7 66.548 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 139.7 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17724" (at 139.7 64.77 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8803af7-5058-4573-84a0-2b341784668a))
(pin "2" (uuid af7e18fe-5680-4aaa-989b-d3328d11bbc0))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "R6") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "R24") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 171.45 57.15 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6383bcc6-ea72-45e8-909f-abc734578a7a)
(property "Reference" "C5" (at 175.26 56.5149 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7uF 100V" (at 175.26 59.0549 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 172.4152 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 171.45 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C385986" (at 171.45 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 529a0ad9-bb18-4d39-a45c-7479656ca1dc))
(pin "2" (uuid 85dcfe27-f943-4efc-b638-8d80fdf577b9))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "C5") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "C23") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 160.02 80.01 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 74d8eab9-d191-4172-9adb-81fce4fab2fd)
(property "Reference" "C4" (at 163.83 79.3749 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1n 500V" (at 163.83 81.9149 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 160.9852 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 160.02 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C35216" (at 160.02 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 529a0ad9-bb18-4d39-a45c-7479656ca1db))
(pin "2" (uuid 85dcfe27-f943-4efc-b638-8d80fdf577b8))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "C4") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "C22") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 133.35 100.33 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7f597f7b-84ee-4688-aba5-09307aeda661)
(property "Reference" "R5" (at 130.81 100.33 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "30mR 2W" (at 135.89 100.33 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_2512_6332Metric" (at 135.128 100.33 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 133.35 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C493478" (at 133.35 100.33 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a0853ef6-07af-4caa-9b2a-27e806ae483e))
(pin "2" (uuid 82bd5e86-d1e1-43fc-8ddb-a0037f8f85ff))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "R5") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "R23") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 190.5 57.15 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 80796ad5-570b-4797-9728-93664df3e45c)
(property "Reference" "C6" (at 194.31 56.5149 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n 100V" (at 194.31 59.0549 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 191.4652 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 190.5 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C28233" (at 190.5 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 767bf481-bffe-4c6c-ae64-536c9c032468))
(pin "2" (uuid 2d7a28ba-937c-42d1-aada-abdb03761012))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "C6") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "C24") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 152.4 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 832d31a3-d84c-4b16-a519-594845e4429f)
(property "Reference" "C3" (at 153.67 97.1549 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n 50V" (at 153.67 103.5049 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 153.3652 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 152.4 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C307331" (at 152.4 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8f1a27fb-e874-447b-80ca-3b5c2ddacecb))
(pin "2" (uuid e8a51b3b-bb89-4d19-9f76-735ffda876d2))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "C3") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "C21") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 102.87 64.77 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 95a465ba-8697-47aa-849e-531e60f91d2f)
(property "Reference" "R1" (at 102.87 59.69 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1R 1%" (at 102.87 62.23 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 102.87 66.548 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 102.87 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17724" (at 102.87 64.77 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 533e1548-36fc-4672-baea-d7044dfee7a9))
(pin "2" (uuid 6228b718-48ac-4516-9dc2-93c8f3633b74))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "R1") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "R19") (unit 1)
)
)
)
)
(symbol (lib_id "QuarkCncStepperDrivers:AO4264E") (at 113.03 64.77 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a186c88a-e8c4-4a23-a5b5-cd54500d38d3)
(property "Reference" "Q1" (at 116.84 60.9599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AO4264E" (at 116.84 68.5799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 118.11 67.31 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/1912111437_Alpha-&-Omega-Semicon-AO4264E_C334232.pdf" (at 120.65 64.77 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC" "C334232" (at 113.03 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1308576f-5b51-4d6a-8239-6e6889eb60fa))
(pin "2" (uuid 79898086-dd9d-4750-a532-9c0206a25231))
(pin "3" (uuid 9d4abcc8-6dad-42d3-8ba9-124922f98370))
(pin "4" (uuid 2e623868-d6e6-4e6f-8da9-4e9065942d08))
(pin "5" (uuid 6bdc984a-1cf7-410c-9f60-64e8222bc921))
(pin "6" (uuid 4305b9d0-57ef-4d1f-9695-6ac0dcbdf85b))
(pin "7" (uuid d65c1912-7c3e-46bb-a024-558182d76f09))
(pin "8" (uuid 90f14595-4f29-4290-aeef-b87a919436d2))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "Q1") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "Q5") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 102.87 80.01 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c9cb2486-4c08-4304-94d0-045386068464)
(property "Reference" "R2" (at 102.87 74.93 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1R 1%" (at 102.87 77.47 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 102.87 81.788 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 102.87 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17724" (at 102.87 80.01 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 71be05da-bffc-4aa5-a1af-56e2f70a8ab6))
(pin "2" (uuid 0080f2db-02b8-498e-8223-12f9ab99860f))
(instances
(project "QuarkCncStepperDrivers"
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/f038cc4f-be2b-4821-9ffd-6c20ea1bfcf6"
(reference "R2") (unit 1)
)
(path "/ed6169bc-46d5-4362-9b01-18e438fb8cab/2e51a550-630c-4000-828f-f9b243602e9a/e5f3389b-d7f6-48b2-a72b-ee6616e1689c"
(reference "R20") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 121.92 95.25 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid cf69e9c0-9510-48bf-9756-848aac71cfaa)
(property "Reference" "R3" (at 121.92 90.17 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "47R 1%" (at 121.92 92.71 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 121.92 97.028 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 121.92 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C25118" (at 121.92 95.25 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a0853ef6-07af-4caa-9b2a-27e806ae483c))
(pin "2" (uuid 82bd5e86-d1e1-43fc-8ddb-a0037f8f85fd))