-
Notifications
You must be signed in to change notification settings - Fork 0
/
TMC2209.kicad_sch
2468 lines (2376 loc) · 92.5 KB
/
TMC2209.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 20211123) (generator eeschema)
(uuid 5701b80f-f006-4814-81c9-0c7f006088a9)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Male_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "C_Polarized_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" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (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) (color 0 0 0 0))
(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 "extraSymbols:TMC2209-LA" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 25.4 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TMC2209-LA" (id 1) (at 25.4 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias" (id 2) (at 25.4 6.096 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2209_Datasheet_V103.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_fp_filters" "QFN28_5X5_3X8_EPAD_TRI QFN28_5X5_3X8_EPAD_TRI-M QFN28_5X5_3X8_EPAD_TRI-L" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TMC2209-LA_1_1"
(polyline
(pts
(xy 7.62 -38.1)
(xy 43.18 -38.1)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -38.1)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy 43.18 -38.1)
(xy 43.18 5.08)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy 43.18 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin output line (at 50.8 -17.78 180) (length 7.62)
(name "OB2" (effects (font (size 1.4986 1.4986))))
(number "1" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -30.48 0) (length 7.62)
(name "MS2_AD1" (effects (font (size 1.4986 1.4986))))
(number "10" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 -5.08 180) (length 7.62)
(name "DIAG" (effects (font (size 1.4986 1.4986))))
(number "11" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 -7.62 180) (length 7.62)
(name "INDEX" (effects (font (size 1.4986 1.4986))))
(number "12" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 0 0) (length 7.62)
(name "CLK" (effects (font (size 1.4986 1.4986))))
(number "13" (effects (font (size 1.4986 1.4986))))
)
(pin bidirectional line (at 0 -33.02 0) (length 7.62)
(name "PDN_UART" (effects (font (size 1.4986 1.4986))))
(number "14" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -15.24 0) (length 7.62)
(name "STEP" (effects (font (size 1.4986 1.4986))))
(number "16" (effects (font (size 1.4986 1.4986))))
)
(pin passive line (at 0 -5.08 0) (length 7.62)
(name "DIR" (effects (font (size 1.4986 1.4986))))
(number "19" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -7.62 0) (length 7.62)
(name "ENN" (effects (font (size 1.4986 1.4986))))
(number "2" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -12.7 0) (length 7.62)
(name "STDBY" (effects (font (size 1.4986 1.4986))))
(number "20" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 -10.16 180) (length 7.62)
(name "OA2" (effects (font (size 1.4986 1.4986))))
(number "21" (effects (font (size 1.4986 1.4986))))
)
(pin passive line (at 0 -20.32 0) (length 7.62)
(name "BRA" (effects (font (size 1.4986 1.4986))))
(number "23" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 -12.7 180) (length 7.62)
(name "OA1" (effects (font (size 1.4986 1.4986))))
(number "24" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 -20.32 180) (length 7.62)
(name "OB1" (effects (font (size 1.4986 1.4986))))
(number "26" (effects (font (size 1.4986 1.4986))))
)
(pin passive line (at 0 -22.86 0) (length 7.62)
(name "BRB" (effects (font (size 1.4986 1.4986))))
(number "27" (effects (font (size 1.4986 1.4986))))
)
(pin passive line (at 0 -25.4 0) (length 7.62)
(name "EPAD" (effects (font (size 1.4986 1.4986))))
(number "29" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 -2.54 180) (length 7.62)
(name "CPO" (effects (font (size 1.4986 1.4986))))
(number "4" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -2.54 0) (length 7.62)
(name "CPI" (effects (font (size 1.4986 1.4986))))
(number "5" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -10.16 0) (length 7.62)
(name "SPREAD" (effects (font (size 1.4986 1.4986))))
(number "7" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 50.8 0 180) (length 7.62)
(name "5VOUT" (effects (font (size 1.4986 1.4986))))
(number "8" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -27.94 0) (length 7.62)
(name "MS1_AD0" (effects (font (size 1.4986 1.4986))))
(number "9" (effects (font (size 1.4986 1.4986))))
)
)
(symbol "TMC2209-LA_2_1"
(polyline
(pts
(xy 7.62 -17.78)
(xy 33.02 -17.78)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -17.78)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 33.02 -17.78)
(xy 33.02 5.08)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 33.02 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin power_in line (at 0 -2.54 0) (length 7.62)
(name "VCC_IO" (effects (font (size 1.4986 1.4986))))
(number "15" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -7.62 0) (length 7.62)
(name "VREF" (effects (font (size 1.4986 1.4986))))
(number "17" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 40.64 -2.54 180) (length 7.62)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "18" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 0 -10.16 0) (length 7.62)
(name "VS" (effects (font (size 1.4986 1.4986))))
(number "22" (effects (font (size 1.4986 1.4986))))
)
(pin no_connect line (at 0 0 0) (length 7.62)
(name "NC" (effects (font (size 1.4986 1.4986))))
(number "25" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 0 -12.7 0) (length 7.62)
(name "VS" (effects (font (size 1.4986 1.4986))))
(number "28" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 40.64 0 180) (length 7.62)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "3" (effects (font (size 1.4986 1.4986))))
)
(pin passive line (at 0 -5.08 0) (length 7.62)
(name "VCP" (effects (font (size 1.4986 1.4986))))
(number "6" (effects (font (size 1.4986 1.4986))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 120.65 60.96) (diameter 0) (color 0 0 0 0)
(uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
)
(junction (at 17.78 64.77) (diameter 0) (color 0 0 0 0)
(uuid 083becc8-e25d-4206-9636-55457650bbe3)
)
(junction (at 237.49 143.51) (diameter 0) (color 0 0 0 0)
(uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
)
(junction (at 17.78 52.07) (diameter 0) (color 0 0 0 0)
(uuid 1b023dd4-5185-4576-b544-68a05b9c360b)
)
(junction (at 237.49 156.21) (diameter 0) (color 0 0 0 0)
(uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42)
)
(junction (at 17.78 72.39) (diameter 0) (color 0 0 0 0)
(uuid 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b)
)
(junction (at 260.35 83.82) (diameter 0) (color 0 0 0 0)
(uuid 5f31b97b-d794-46d6-bbd9-7a5638bcf704)
)
(junction (at 248.92 86.36) (diameter 0) (color 0 0 0 0)
(uuid 701e1517-e8cf-46f4-b538-98e721c97380)
)
(junction (at 93.98 35.56) (diameter 0) (color 0 0 0 0)
(uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
)
(junction (at 260.35 143.51) (diameter 0) (color 0 0 0 0)
(uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
)
(junction (at 238.76 88.9) (diameter 0) (color 0 0 0 0)
(uuid 8bdea5f6-7a53-427a-92b8-fd15994c2e8c)
)
(junction (at 17.78 44.45) (diameter 0) (color 0 0 0 0)
(uuid 946404ba-9297-43ec-9d67-30184041145f)
)
(junction (at 130.81 96.52) (diameter 0) (color 0 0 0 0)
(uuid b05a5a02-3895-4790-b66f-9d61a69ba225)
)
(junction (at 172.72 86.36) (diameter 0) (color 0 0 0 0)
(uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
)
(junction (at 270.51 81.28) (diameter 0) (color 0 0 0 0)
(uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e)
)
(junction (at 260.35 156.21) (diameter 0) (color 0 0 0 0)
(uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
)
(junction (at 196.85 147.32) (diameter 0) (color 0 0 0 0)
(uuid df83f395-2d18-47e2-a370-952ca41c2b3a)
)
(no_connect (at 176.53 35.56) (uuid 96315415-cfed-47d2-b3dd-d782358bd0df))
(polyline (pts (xy 86.36 162.56) (xy 86.36 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 051b8cb0-ae77-4e09-98a7-bf2103319e66)
)
(wire (pts (xy 179.07 38.1) (xy 176.53 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
)
(polyline (pts (xy 223.52 113.03) (xy 223.52 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d993e48-cea3-4104-9c5a-d8f97b64a3ac)
)
(wire (pts (xy 234.95 143.51) (xy 237.49 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
)
(wire (pts (xy 17.78 72.39) (xy 33.02 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 123968c6-74e7-4754-8c36-08ea08e42555)
)
(polyline (pts (xy 13.97 33.02) (xy 13.97 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
)
(wire (pts (xy 257.81 143.51) (xy 260.35 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
)
(wire (pts (xy 196.85 147.32) (xy 194.31 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1755646e-fc08-4e43-a301-d9b3ea704cf6)
)
(wire (pts (xy 130.81 93.98) (xy 130.81 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53)
)
(wire (pts (xy 179.07 27.94) (xy 176.53 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd)
)
(wire (pts (xy 167.64 149.86) (xy 170.18 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 199124ca-dd64-45cf-a063-97cc545cbea7)
)
(wire (pts (xy 262.89 156.21) (xy 260.35 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
)
(polyline (pts (xy 228.6 74.93) (xy 228.6 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
)
(wire (pts (xy 248.92 86.36) (xy 248.92 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cb22080-0f59-4c18-a6e6-8685ef44ec53)
)
(wire (pts (xy 123.19 48.26) (xy 125.73 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dfbf353-5b24-4c0f-8322-8fcd514ae75e)
)
(polyline (pts (xy 173.99 163.83) (xy 173.99 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20901d7e-a300-4069-8967-a6a7e97a68bc)
)
(wire (pts (xy 257.81 153.67) (xy 257.81 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
)
(wire (pts (xy 238.76 88.9) (xy 271.78 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 235067e2-1686-40fe-a9a0-61704311b2b1)
)
(polyline (pts (xy 13.97 78.74) (xy 45.72 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24adc223-60f0-4497-98a3-d664c5a13280)
)
(wire (pts (xy 248.92 86.36) (xy 271.78 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31f91ec8-56e4-4e08-9ccd-012652772211)
)
(wire (pts (xy 123.19 50.8) (xy 125.73 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 337e8520-cbd2-42c0-8d17-743bab17cbbd)
)
(polyline (pts (xy 86.36 115.57) (xy 13.97 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35c09d1f-2914-4d1e-a002-df30af772f3b)
)
(wire (pts (xy 123.19 30.48) (xy 125.73 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf)
)
(wire (pts (xy 17.78 133.35) (xy 17.78 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a)
)
(wire (pts (xy 260.35 83.82) (xy 271.78 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5)
)
(wire (pts (xy 270.51 92.71) (xy 270.51 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e57b728-64e6-4470-8f27-a43c0dd85050)
)
(wire (pts (xy 92.71 35.56) (xy 93.98 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
)
(polyline (pts (xy 125.73 163.83) (xy 173.99 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 422b10b9-e829-44a2-8808-05edd8cb3050)
)
(polyline (pts (xy 220.98 163.83) (xy 220.98 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 465137b4-f6f7-4d51-9b40-b161947d5cc1)
)
(wire (pts (xy 170.18 149.86) (xy 170.18 151.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47f75af1-d99b-4ded-a089-703ae8030191)
)
(wire (pts (xy 20.32 106.68) (xy 20.32 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
)
(polyline (pts (xy 13.97 113.03) (xy 36.83 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
)
(wire (pts (xy 71.12 130.81) (xy 71.12 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 501880c3-8633-456f-9add-0e8fa1932ba6)
)
(wire (pts (xy 123.19 43.18) (xy 125.73 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 528fd7da-c9a6-40ae-9f1a-60f6a7f4d534)
)
(wire (pts (xy 128.27 69.85) (xy 128.27 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388)
)
(wire (pts (xy 104.14 53.34) (xy 125.73 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 576f00e6-a1be-45d3-9b93-e26d9e0fe306)
)
(wire (pts (xy 176.53 33.02) (xy 198.12 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57f248a7-365e-4c42-b80d-5a7d1f9dfaf3)
)
(wire (pts (xy 17.78 142.24) (xy 17.78 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5889287d-b845-4684-b23e-663811b25d27)
)
(wire (pts (xy 120.65 96.52) (xy 130.81 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
)
(wire (pts (xy 260.35 92.71) (xy 260.35 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e7c3a32-8dda-4e6a-9838-c94d1f165575)
)
(wire (pts (xy 248.92 100.33) (xy 248.92 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329)
)
(wire (pts (xy 237.49 86.36) (xy 248.92 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 616287d9-a51f-498c-8b91-be46a0aa3a7f)
)
(wire (pts (xy 54.61 130.81) (xy 54.61 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6241e6d3-a754-45b6-9f7c-e43019b93226)
)
(wire (pts (xy 172.72 83.82) (xy 172.72 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b)
)
(wire (pts (xy 240.03 156.21) (xy 237.49 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62e8c4d4-266c-4e53-8981-1028251d724c)
)
(polyline (pts (xy 45.72 33.02) (xy 13.97 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 631c7be5-8dc2-4df4-ab73-737bb928e763)
)
(wire (pts (xy 260.35 100.33) (xy 260.35 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 637f12be-fa48-4ce4-96b2-04c21a8795c8)
)
(wire (pts (xy 179.07 48.26) (xy 176.53 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66218487-e316-4467-9eba-79d4626ab24e)
)
(wire (pts (xy 172.72 86.36) (xy 172.72 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
)
(wire (pts (xy 237.49 156.21) (xy 234.95 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8)
)
(polyline (pts (xy 45.72 78.74) (xy 45.72 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32)
)
(wire (pts (xy 196.85 148.59) (xy 196.85 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12)
)
(wire (pts (xy 33.02 64.77) (xy 17.78 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 725cdf26-4b92-46db-bca9-10d930002dda)
)
(polyline (pts (xy 283.21 111.76) (xy 283.21 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73fbe87f-3928-49c2-bf87-839d907c6aef)
)
(wire (pts (xy 120.65 69.85) (xy 128.27 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
)
(wire (pts (xy 237.49 143.51) (xy 240.03 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
)
(polyline (pts (xy 13.97 81.28) (xy 13.97 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 751d823e-1d7b-4501-9658-d06d459b0e16)
)
(wire (pts (xy 270.51 81.28) (xy 271.78 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75b944f9-bf25-4dc7-8104-e9f80b4f359b)
)
(wire (pts (xy 130.81 86.36) (xy 125.73 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a879184-fad8-4feb-afb5-86fe8d34f1f7)
)
(wire (pts (xy 260.35 143.51) (xy 262.89 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
)
(wire (pts (xy 54.61 140.97) (xy 54.61 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d0dab95-9e7a-486e-a1d7-fc48860fd57d)
)
(wire (pts (xy 179.07 40.64) (xy 176.53 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5)
)
(polyline (pts (xy 228.6 111.76) (xy 283.21 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86ad0555-08b3-4dde-9a3e-c1e5e29b6615)
)
(wire (pts (xy 129.54 91.44) (xy 130.81 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
)
(wire (pts (xy 167.64 149.86) (xy 167.64 151.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87bfe675-e632-4932-b41e-e354d4ba6d75)
)
(wire (pts (xy 120.65 62.23) (xy 120.65 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
)
(wire (pts (xy 93.98 26.67) (xy 93.98 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
)
(wire (pts (xy 102.87 27.94) (xy 125.73 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
)
(wire (pts (xy 34.29 26.67) (xy 31.75 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
)
(wire (pts (xy 125.73 58.42) (xy 123.19 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 901440f4-e2a6-4447-83cc-f58a2b26f5c4)
)
(wire (pts (xy 17.78 52.07) (xy 33.02 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
)
(wire (pts (xy 71.12 140.97) (xy 71.12 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91fe070a-a49b-4bc5-805a-42f23e10d114)
)
(polyline (pts (xy 36.83 81.28) (xy 13.97 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
)
(polyline (pts (xy 13.97 13.97) (xy 13.97 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5)
)
(wire (pts (xy 36.83 133.35) (xy 36.83 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9390234f-bf3f-46cd-b6a0-8a438ec76e9f)
)
(wire (pts (xy 260.35 140.97) (xy 260.35 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96db52e2-6336-4f5e-846e-528c594d0509)
)
(polyline (pts (xy 13.97 162.56) (xy 86.36 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 974c48bf-534e-4335-98e1-b0426c783e99)
)
(wire (pts (xy 260.35 156.21) (xy 257.81 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
)
(wire (pts (xy 237.49 81.28) (xy 270.51 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98861672-254d-432b-8e5a-10d885a5ffdc)
)
(wire (pts (xy 20.32 97.79) (xy 20.32 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
)
(wire (pts (xy 234.95 143.51) (xy 234.95 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
)
(wire (pts (xy 101.6 38.1) (xy 125.73 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 992a2b00-5e28-4edd-88b5-994891512d8d)
)
(wire (pts (xy 128.27 88.9) (xy 130.81 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db)
)
(wire (pts (xy 238.76 101.6) (xy 238.76 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a25b7e01-1754-4cc9-8a14-3d9c461e5af5)
)
(wire (pts (xy 238.76 92.71) (xy 238.76 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))