-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheurorack_balanced_out.kicad_sch
4562 lines (4449 loc) · 159 KB
/
eurorack_balanced_out.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 b2e1f922-b1ff-429b-aa17-ed0995c548dd)
(paper "A4")
(title_block
(title "Eurorack powered stereo balanced output")
(date "2020-05-21")
(rev "0.1.2")
)
(lib_symbols
(symbol "Amplifier_Operational:TL072" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TL072" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "dual opamp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TL072_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL072_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL072_3_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x05_Odd_Even_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 5.08 0) (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 7.62 -5.08 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 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 0) (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 7.62 2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 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" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 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" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eurorack_balanced_out-rescue:AudioJack2_SwitchT-Connector" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Connector_AudioJack2_SwitchT" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 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_fp_filters" "Jack*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AudioJack2_SwitchT-Connector_0_1"
(rectangle (start -2.54 0) (end -3.81 -2.54)
(stroke (width 0.254) (type solid))
(fill (type outline))
)
(polyline
(pts
(xy 1.778 -0.254)
(xy 2.032 -0.762)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0.635 -0.635)
(xy 1.27 0)
(xy 2.54 0)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 1.778 -2.54)
(xy 1.778 -0.254)
(xy 1.524 -0.762)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy -0.635 2.54)
(xy -0.635 0)
(xy -1.27 -0.635)
(xy -1.905 0)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(rectangle (start 2.54 3.81) (end -2.54 -5.08)
(stroke (width 0.254) (type solid))
(fill (type background))
)
)
(symbol "AudioJack2_SwitchT-Connector_1_1"
(pin passive line (at 5.08 2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "S" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "T" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "TN" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eurorack_balanced_out-rescue:CP_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Device_CP_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 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_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP_Small-Device_0_1"
(rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
(stroke (width 0) (type solid))
(fill (type outline))
)
(rectangle (start -1.524 0.6858) (end 1.524 0.3048)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.524)
(xy -0.762 1.524)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.27)
(xy -1.016 1.778)
)
(stroke (width 0) (type solid))
(fill (type none))
)
)
(symbol "CP_Small-Device_1_1"
(pin passive line (at 0 2.54 270) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eurorack_balanced_out-rescue:Ferrite_Bead_Small-Device" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Device_Ferrite_Bead_Small" (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Ferrite_Bead_Small-Device_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type solid))
(fill (type none))
)
)
(symbol "Ferrite_Bead_Small-Device_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eurorack_balanced_out-rescue:THAT1646S08-patchnut" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 3.81 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "patchnut_THAT1646S08" (at 8.89 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at -1.27 -13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -3.81 8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "THAT1646S08-patchnut_1_1"
(polyline
(pts
(xy -7.62 7.62)
(xy -7.62 -7.62)
(xy 7.62 0)
(xy -7.62 7.62)
)
(stroke (width 0.254) (type solid))
(fill (type background))
)
(pin output line (at 7.62 -2.54 180) (length 5.08)
(name "-OUT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -6.35 90) (length 2.54)
(name "-SNS" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 -11.43 90) (length 5.08)
(name "V-" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 11.43 270) (length 5.08)
(name "V+" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 6.35 270) (length 2.54)
(name "+SNS" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 2.54 180) (length 5.08)
(name "+OUT" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 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" "global power" (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" (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))
(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:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 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" "flag power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
)
(junction (at 205.74 34.29) (diameter 0) (color 0 0 0 0)
(uuid 02b41c6c-3f35-4824-8e5f-3989363c65ff)
)
(junction (at 117.475 81.915) (diameter 0) (color 0 0 0 0)
(uuid 03470f69-4fef-406b-86c5-ac95223bb863)
)
(junction (at 137.795 171.45) (diameter 0) (color 0 0 0 0)
(uuid 06ee528d-8536-4bf3-88ab-d9f28d43a8b1)
)
(junction (at 57.785 168.91) (diameter 0) (color 0 0 0 0)
(uuid 160a0d1f-0179-4a11-b071-059b2c4b0824)
)
(junction (at 147.955 81.915) (diameter 0) (color 0 0 0 0)
(uuid 16e1deb1-b1bb-4685-b292-e02ff3705e9f)
)
(junction (at 227.33 26.67) (diameter 0) (color 0 0 0 0)
(uuid 1a7f00c8-b0f1-40b0-8cb7-c86e52cb2014)
)
(junction (at 198.12 41.91) (diameter 0) (color 0 0 0 0)
(uuid 1ad554a3-580f-4b74-8073-f8a33f423cab)
)
(junction (at 86.995 38.735) (diameter 0) (color 0 0 0 0)
(uuid 1e90cddd-7295-4b85-b411-7a132d9cfd73)
)
(junction (at 86.995 123.19) (diameter 0) (color 0 0 0 0)
(uuid 23c54d8f-f1e7-485a-a6b4-7a1200e3ea0a)
)
(junction (at 227.965 71.12) (diameter 0) (color 0 0 0 0)
(uuid 25c573b3-b146-439b-b266-ef178e9b0244)
)
(junction (at 219.71 26.67) (diameter 0) (color 0 0 0 0)
(uuid 2abac2a0-efe5-4ca4-a50f-183d938eb8a3)
)
(junction (at 216.535 71.12) (diameter 0) (color 0 0 0 0)
(uuid 30366952-93b1-49bd-8914-f10a33297477)
)
(junction (at 239.395 108.585) (diameter 0) (color 0 0 0 0)
(uuid 35befe63-3c3f-4b49-9446-b5dbd5e2f354)
)
(junction (at 117.475 86.995) (diameter 0) (color 0 0 0 0)
(uuid 368e4e9c-7e5b-4c0e-ad37-d2ea46f005b0)
)
(junction (at 86.995 166.37) (diameter 0) (color 0 0 0 0)
(uuid 3b37be6d-ba78-4df5-b326-7269587f3b56)
)
(junction (at 147.955 166.37) (diameter 0) (color 0 0 0 0)
(uuid 401f0119-076f-44d1-94ad-c3e13c113810)
)
(junction (at 117.475 123.19) (diameter 0) (color 0 0 0 0)
(uuid 47a3f214-a30d-4375-9612-5e65bc7750e8)
)
(junction (at 117.475 38.735) (diameter 0) (color 0 0 0 0)
(uuid 4cb2b5d6-dd35-4793-9fba-420015d05fc9)
)
(junction (at 57.785 41.275) (diameter 0) (color 0 0 0 0)
(uuid 52068b4e-2597-4bf0-8b7f-f9e7387f4bfd)
)
(junction (at 117.475 171.45) (diameter 0) (color 0 0 0 0)
(uuid 593c4c5b-0887-461b-b268-5a82e1fd8916)
)
(junction (at 86.995 81.915) (diameter 0) (color 0 0 0 0)
(uuid 61e3562c-06a5-4204-9741-484d04a34664)
)
(junction (at 147.955 38.735) (diameter 0) (color 0 0 0 0)
(uuid 6ebe3345-b36b-4899-a26f-60a7ffa3c946)
)
(junction (at 198.12 34.29) (diameter 0) (color 0 0 0 0)
(uuid 753201ca-85a3-4c5f-a7b3-3809323a48fc)
)
(junction (at 57.785 84.455) (diameter 0) (color 0 0 0 0)
(uuid 7825c13c-8a5f-453a-bfc5-6313d807845f)
)
(junction (at 137.795 86.995) (diameter 0) (color 0 0 0 0)
(uuid 92fd412e-b362-48e4-aba4-111359ded76e)
)
(junction (at 147.955 123.19) (diameter 0) (color 0 0 0 0)
(uuid 9d660819-a7a7-4bb9-ac18-b2ddd99d1a84)
)
(junction (at 57.785 125.73) (diameter 0) (color 0 0 0 0)
(uuid 9d98f345-c819-496f-9fde-0c4d81e0ffe7)
)
(junction (at 219.71 41.91) (diameter 0) (color 0 0 0 0)
(uuid a00cbe5b-30d0-4018-8eb8-6fbbee58a02d)
)
(junction (at 219.71 34.29) (diameter 0) (color 0 0 0 0)
(uuid a1e6fb03-49b4-4e88-be64-fa854b57fc2e)
)
(junction (at 239.395 71.12) (diameter 0) (color 0 0 0 0)
(uuid b7afba09-fae4-4dca-9233-55c89c22fe07)
)
(junction (at 46.355 41.275) (diameter 0) (color 0 0 0 0)
(uuid b84159e1-09fb-4176-9647-3854ddd4568f)
)
(junction (at 227.965 108.585) (diameter 0) (color 0 0 0 0)
(uuid bc5c8e85-7165-4edc-a05d-3df23ed94211)
)
(junction (at 137.795 128.27) (diameter 0) (color 0 0 0 0)
(uuid bf9529dd-c559-4978-9c21-9fde6f87c061)
)
(junction (at 227.33 41.91) (diameter 0) (color 0 0 0 0)
(uuid c1854e64-219c-4b41-b3ff-bc40343c6a84)
)
(junction (at 198.12 26.67) (diameter 0) (color 0 0 0 0)
(uuid c903aa8b-c82e-4121-ad2f-f62610d327e7)
)
(junction (at 227.33 34.29) (diameter 0) (color 0 0 0 0)
(uuid ca126dd7-5022-45ec-b68c-5a9c1fb45969)
)
(junction (at 218.44 34.29) (diameter 0) (color 0 0 0 0)
(uuid e0f00d68-342f-4608-80ee-765e0a8272c9)
)
(junction (at 117.475 43.815) (diameter 0) (color 0 0 0 0)
(uuid e19353c7-3dc0-45b5-a8ba-0c05ca040d0d)
)
(junction (at 117.475 128.27) (diameter 0) (color 0 0 0 0)
(uuid e91016e1-22cf-4313-b5f5-d92f12e4d03c)
)
(junction (at 216.535 108.585) (diameter 0) (color 0 0 0 0)
(uuid ec9be8ed-f884-46b7-84e3-ea78ab0d773c)
)
(junction (at 117.475 166.37) (diameter 0) (color 0 0 0 0)
(uuid f3b0ca4f-570d-4364-a5a1-93c52421b567)
)
(junction (at 137.795 43.815) (diameter 0) (color 0 0 0 0)
(uuid f836e731-f216-4851-9fa2-94a7846ce418)
)
(junction (at 46.355 125.73) (diameter 0) (color 0 0 0 0)
(uuid faaa87f8-ec3b-4c1a-964f-363c056867db)
)
(wire (pts (xy 219.71 39.37) (xy 218.44 39.37))
(stroke (width 0) (type default))
(uuid 0010262c-51dd-4486-baa2-1a49e9d7ced0)
)
(wire (pts (xy 147.955 129.54) (xy 147.955 123.19))
(stroke (width 0) (type default))
(uuid 0174b3ad-3032-47ad-b669-901841dbd996)
)
(polyline (pts (xy 254.635 86.36) (xy 191.135 86.36))
(stroke (width 0) (type default))
(uuid 041aea47-0409-4365-8e25-cf6422460b7f)
)
(wire (pts (xy 159.385 86.995) (xy 159.385 89.535))
(stroke (width 0) (type default))
(uuid 04663e80-8fde-40c6-8132-d1f23c7770fe)
)
(polyline (pts (xy 254.635 92.075) (xy 254.635 123.825))
(stroke (width 0) (type default))
(uuid 058f4c3d-7399-4048-9ef2-f5b27199f8ae)
)
(wire (pts (xy 86.995 114.3) (xy 69.215 114.3))
(stroke (width 0) (type default))
(uuid 05fb5836-43b9-4090-a31b-ff235cec14d8)
)
(wire (pts (xy 117.475 75.565) (xy 114.935 75.565))
(stroke (width 0) (type default))
(uuid 06d43117-fb28-4d10-af8f-28df8be46cd6)
)
(wire (pts (xy 117.475 123.19) (xy 125.095 123.19))
(stroke (width 0) (type default))
(uuid 06fd29f5-e561-4e26-af92-b59c527a6951)
)
(wire (pts (xy 109.855 32.385) (xy 107.315 32.385))
(stroke (width 0) (type default))
(uuid 07047305-818c-4881-9f7e-c2fdbe3843b0)
)
(wire (pts (xy 41.275 123.19) (xy 41.275 116.84))
(stroke (width 0) (type default))
(uuid 090bd906-c2e7-46ef-8bb8-28e056d4fea3)
)
(wire (pts (xy 218.44 36.83) (xy 219.71 36.83))
(stroke (width 0) (type default))
(uuid 096ce1ef-e3eb-494b-8693-da59fb5656a0)
)
(wire (pts (xy 117.475 43.815) (xy 125.095 43.815))
(stroke (width 0) (type default))
(uuid 0a2a38e9-187a-4f8f-8af6-16e1302816de)
)
(wire (pts (xy 107.315 90.805) (xy 107.315 93.345))
(stroke (width 0) (type default))
(uuid 0b24288d-3183-4abe-ac11-166c51884998)
)
(wire (pts (xy 114.935 43.815) (xy 117.475 43.815))
(stroke (width 0) (type default))
(uuid 0c95542f-aeb7-4082-ba58-de42adb9d06f)
)
(wire (pts (xy 107.315 134.62) (xy 109.855 134.62))
(stroke (width 0) (type default))
(uuid 0c9ed773-1177-4467-ac32-245ef03a5bed)
)
(wire (pts (xy 216.535 63.5) (xy 216.535 64.77))
(stroke (width 0) (type default))
(uuid 0ce2a9f6-9511-44e5-a690-50c811dd5414)
)
(wire (pts (xy 159.385 43.815) (xy 159.385 46.355))
(stroke (width 0) (type default))
(uuid 106856b4-c658-4ba2-ae89-41aad70abad6)
)
(wire (pts (xy 85.725 123.19) (xy 86.995 123.19))
(stroke (width 0) (type default))
(uuid 10d0ff95-9bb5-41ab-a314-5a84eef948ec)
)
(wire (pts (xy 109.855 116.84) (xy 107.315 116.84))
(stroke (width 0) (type default))
(uuid 122e0ce7-46c9-41e3-b0e3-f0463dfc4555)
)
(wire (pts (xy 137.795 51.435) (xy 137.795 50.165))
(stroke (width 0) (type default))
(uuid 1242269b-b05d-40ef-9931-0c780472018b)
)
(wire (pts (xy 107.315 47.625) (xy 107.315 50.165))
(stroke (width 0) (type default))
(uuid 12570fb8-ef20-4709-ad6c-ed04a90d2fb0)
)
(wire (pts (xy 95.885 171.45) (xy 95.885 172.72))
(stroke (width 0) (type default))
(uuid 135f2a87-8d87-43b3-9d02-473f216fcac3)
)
(wire (pts (xy 137.795 94.615) (xy 137.795 93.345))
(stroke (width 0) (type default))
(uuid 15850bde-d673-465c-b0bf-df0855806e92)
)
(wire (pts (xy 227.965 100.965) (xy 227.965 102.235))
(stroke (width 0) (type default))
(uuid 15d93325-dcda-451d-9a1b-713031e0cf92)
)
(wire (pts (xy 216.535 69.85) (xy 216.535 71.12))
(stroke (width 0) (type default))
(uuid 163ef04f-c200-407e-ba31-a5fdf2bf0764)
)
(wire (pts (xy 107.315 132.08) (xy 107.315 134.62))
(stroke (width 0) (type default))
(uuid 1669087f-2002-45eb-b563-5e334312b1f1)
)
(wire (pts (xy 117.475 93.345) (xy 117.475 86.995))
(stroke (width 0) (type default))
(uuid 177a259f-5a23-4e09-b676-338280da469f)
)
(wire (pts (xy 86.995 38.735) (xy 97.155 38.735))
(stroke (width 0) (type default))
(uuid 17d41a1b-1cfa-4fff-b1c7-8fbfa465632a)
)
(wire (pts (xy 205.74 34.29) (xy 198.12 34.29))
(stroke (width 0) (type default))
(uuid 188b8582-0c79-4755-86f0-98aaf50fb78a)
)
(wire (pts (xy 85.725 81.915) (xy 86.995 81.915))
(stroke (width 0) (type default))
(uuid 19a7f18f-79e7-4244-9d75-dc0dd76d6095)
)
(wire (pts (xy 107.315 160.02) (xy 107.315 162.56))
(stroke (width 0) (type default))
(uuid 19f600c1-529a-48a2-9f00-e63a90afd302)
)
(wire (pts (xy 117.475 166.37) (xy 125.095 166.37))
(stroke (width 0) (type default))
(uuid 1c0711af-cf25-416a-a718-cc36898d5128)
)
(wire (pts (xy 147.955 38.735) (xy 163.195 38.735))
(stroke (width 0) (type default))
(uuid 1da3d0b0-eae3-4907-a617-82ea67fcb157)
)
(wire (pts (xy 107.315 177.8) (xy 109.855 177.8))
(stroke (width 0) (type default))
(uuid 1f158668-12a8-4382-9260-c2f3e7dfc7fa)
)
(polyline (pts (xy 191.135 54.61) (xy 254.635 54.61))
(stroke (width 0) (type default))
(uuid 1f67909a-0e91-4ab3-9c9f-fdf13ad3da33)
)
(polyline (pts (xy 191.77 49.53) (xy 191.77 17.78))
(stroke (width 0) (type default))
(uuid 2375ef05-0f0a-4520-a81a-1d2448adbe78)
)
(wire (pts (xy 46.355 116.84) (xy 46.355 118.11))
(stroke (width 0) (type default))
(uuid 247b6126-50ed-4a1b-8200-d55249c59acf)
)
(wire (pts (xy 239.395 108.585) (xy 239.395 109.855))
(stroke (width 0) (type default))
(uuid 25feca02-35f4-4c3e-b67c-ea9b9b4f44a5)
)
(wire (pts (xy 57.785 90.805) (xy 57.785 92.075))
(stroke (width 0) (type default))
(uuid 26353e8a-59c4-4b81-ab1c-b4f3f081dd82)
)
(wire (pts (xy 85.725 166.37) (xy 86.995 166.37))
(stroke (width 0) (type default))
(uuid 264c838b-0bf7-4e98-b2bb-6cc9db1bdf79)
)
(wire (pts (xy 57.785 175.26) (xy 57.785 176.53))
(stroke (width 0) (type default))
(uuid 26de24a1-62f9-4f2e-bf74-668c0bc6c982)
)
(wire (pts (xy 117.475 166.37) (xy 117.475 160.02))
(stroke (width 0) (type default))
(uuid 274c685c-5d5b-4811-ac33-d1badb9f0a9b)
)
(wire (pts (xy 107.315 50.165) (xy 109.855 50.165))
(stroke (width 0) (type default))
(uuid 277186cc-ecf2-4f95-ab24-de1b09fe5551)
)
(wire (pts (xy 114.935 93.345) (xy 117.475 93.345))
(stroke (width 0) (type default))
(uuid 2856c41a-39cd-4d7e-b78e-30e8b18aa144)
)
(wire (pts (xy 57.785 170.18) (xy 57.785 168.91))
(stroke (width 0) (type default))
(uuid 286d4226-94e2-45a8-947c-cf77b3e0d785)
)
(wire (pts (xy 227.33 40.64) (xy 227.33 41.91))
(stroke (width 0) (type default))
(uuid 2950906d-a42b-4ad5-9b8b-4219cfd3b210)
)
(wire (pts (xy 130.175 123.19) (xy 147.955 123.19))
(stroke (width 0) (type default))
(uuid 2978772a-1f8e-4887-8323-904f07a608d6)
)
(wire (pts (xy 69.215 29.845) (xy 69.215 36.195))
(stroke (width 0) (type default))
(uuid 29860859-752a-40fe-a56f-af6fdae53bbc)
)
(wire (pts (xy 147.955 172.72) (xy 147.955 166.37))
(stroke (width 0) (type default))
(uuid 2a502be1-d494-4b6b-9a08-27dbc0d21002)
)
(wire (pts (xy 86.995 157.48) (xy 86.995 166.37))
(stroke (width 0) (type default))
(uuid 2ade4b45-33f4-434b-a5c3-17706d70e2f5)
)
(wire (pts (xy 107.315 32.385) (xy 107.315 34.925))
(stroke (width 0) (type default))
(uuid 2ba932e4-dfbd-4ce3-bc52-d5268fe8a6db)
)
(wire (pts (xy 114.935 166.37) (xy 117.475 166.37))
(stroke (width 0) (type default))
(uuid 2cfe55be-7365-4788-a650-29c12b14650c)
)
(wire (pts (xy 114.935 116.84) (xy 117.475 116.84))
(stroke (width 0) (type default))
(uuid 2e4e9f7c-4719-4ddd-be01-ff88741ab724)
)
(wire (pts (xy 46.355 32.385) (xy 46.355 33.655))
(stroke (width 0) (type default))
(uuid 2faf9dc5-caea-4f8c-b82d-c06637ef03d1)
)
(wire (pts (xy 130.175 128.27) (xy 137.795 128.27))
(stroke (width 0) (type default))
(uuid 2fb9ac86-aa41-47ad-a85b-183173bf889b)
)
(polyline (pts (xy 245.11 49.53) (xy 191.77 49.53))
(stroke (width 0) (type default))
(uuid 31c3f018-a9ff-4b68-9ad2-21595da41adb)
)
(wire (pts (xy 130.175 171.45) (xy 137.795 171.45))
(stroke (width 0) (type default))
(uuid 33802471-f5e2-4498-9ff2-54dce66c879f)
)
(wire (pts (xy 41.275 171.45) (xy 41.275 172.72))
(stroke (width 0) (type default))
(uuid 36236517-f48e-4a2a-83e9-21158ec17c92)
)
(wire (pts (xy 114.935 32.385) (xy 117.475 32.385))
(stroke (width 0) (type default))
(uuid 375e0f52-3a88-4ee7-9511-c5d782da5439)
)
(wire (pts (xy 40.005 41.275) (xy 46.355 41.275))
(stroke (width 0) (type default))
(uuid 37869030-2748-40e8-9c46-37cd7ff0cbd3)
)
(wire (pts (xy 117.475 81.915) (xy 117.475 75.565))