-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAS3310.kicad_sch
1429 lines (1386 loc) · 53.8 KB
/
AS3310.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 9f6748e8-8f0d-48e2-827e-24181f021855)
(paper "A4")
(title_block
(title "Polykit-X Voice Card")
(date "2023-01-26")
(rev "v1.0.0")
(company "Jan Knipper")
(comment 1 "github.com/polykit")
)
(lib_symbols
(symbol "Audio:AS3310" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AS3310" (id 1) (at 5.08 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 15.24 -7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.alfarzpp.lv/eng/sc/AS3310.pdf" (id 3) (at 16.51 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "VCEG CEM3310 ALFA" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "ADSR Voltage Controlled Envelope Generator, DIP-16/SOIC-16" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x9.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AS3310_0_1"
(rectangle (start 7.62 -15.24) (end -7.62 15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AS3310_1_1"
(pin passive line (at -10.16 -12.7 0) (length 2.54)
(name "CAP" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "IIN" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 17.78 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "VCD" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "VCR" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 -17.78 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "VCA" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 -2.54 180) (length 2.54)
(name "ATKOUT" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 2.54 180) (length 2.54)
(name "ENVOUT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "VP" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "GATE" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "TRIG" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -17.78 90) (length 2.54)
(name "VEE" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -17.78 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -10.16 0) (length 2.54)
(name "CCOMP" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "VCS" (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" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(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:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (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 "Transistor_BJT:2N3904" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2N3904" (id 1) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/2N3903-D.PDF" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "NPN Transistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "0.2A Ic, 40V Vce, Small Signal NPN Transistor, TO-92" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO?92*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "2N3904_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "2N3904_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+12V" (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" "+12V" (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 \"+12V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V_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 "+12V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:-12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "-12V" (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 \"-12V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "-12V_0_0"
(pin power_in line (at 0 0 90) (length 0) hide
(name "-12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "-12V_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy 0.762 1.27)
(xy 0 2.54)
(xy -0.762 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
)
(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))))
)
)
)
)
(junction (at 113.03 92.71) (diameter 0) (color 0 0 0 0)
(uuid 42ba407d-a036-422b-9b59-0018a6ff74da)
)
(junction (at 68.58 92.71) (diameter 0) (color 0 0 0 0)
(uuid 44b6fdd7-5dcf-4b1a-b6ec-a58d81285b8e)
)
(junction (at 144.78 118.11) (diameter 0) (color 0 0 0 0)
(uuid 450fd788-d806-48b1-a032-8afdc8273e6e)
)
(junction (at 60.96 97.79) (diameter 0) (color 0 0 0 0)
(uuid 4e4917a6-fd05-4de8-8601-af05df07283c)
)
(junction (at 177.8 95.25) (diameter 0) (color 0 0 0 0)
(uuid 545ba0c9-ab09-4269-93c1-e9e7c99dc8aa)
)
(junction (at 158.75 95.25) (diameter 0) (color 0 0 0 0)
(uuid 78ec32a0-9a51-4ce8-b9fc-3040bef6a908)
)
(junction (at 64.77 95.25) (diameter 0) (color 0 0 0 0)
(uuid 9f7061ef-8331-476e-9237-5d9f45c8d344)
)
(junction (at 100.33 87.63) (diameter 0) (color 0 0 0 0)
(uuid af865e07-b961-449a-8717-ceb1273ebf79)
)
(junction (at 113.03 87.63) (diameter 0) (color 0 0 0 0)
(uuid effa9ffa-d173-4290-8a92-c5f93d4c73ba)
)
(junction (at 149.86 118.11) (diameter 0) (color 0 0 0 0)
(uuid fa52b214-9e18-40f6-ba83-46690adc9999)
)
(wire (pts (xy 177.8 95.25) (xy 177.8 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 031522ce-4133-442e-8569-2b768997e97b)
)
(wire (pts (xy 120.65 110.49) (xy 134.62 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 096afd04-538e-4b21-921b-0720cfc0fc33)
)
(wire (pts (xy 149.86 115.57) (xy 149.86 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11d8a1c9-2fe6-4f06-af2c-43205f80d2b1)
)
(wire (pts (xy 115.57 107.95) (xy 134.62 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12b06950-23c0-46a3-97b4-485917511191)
)
(wire (pts (xy 60.96 97.79) (xy 60.96 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13e0b490-4d52-4cce-9ece-8a9405e68e58)
)
(wire (pts (xy 147.32 115.57) (xy 147.32 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14b56486-a565-4ad2-9d4e-44e6442ea175)
)
(wire (pts (xy 144.78 115.57) (xy 144.78 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 179ded49-c8d7-40c2-a728-5841fda625bd)
)
(wire (pts (xy 64.77 95.25) (xy 64.77 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19e06224-9ee6-43a9-8619-29093cc619ca)
)
(wire (pts (xy 100.33 137.16) (xy 100.33 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bc36098-a67a-43e9-af34-67229b47b5d8)
)
(wire (pts (xy 115.57 107.95) (xy 115.57 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2717f789-6e9a-45e5-ba68-0e97a483a090)
)
(wire (pts (xy 144.78 80.01) (xy 144.78 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 294d1b3f-d421-48e2-92a4-f8f5eef13748)
)
(wire (pts (xy 167.64 119.38) (xy 167.64 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a093840-0bdf-41ea-a70e-7ac20376c639)
)
(wire (pts (xy 137.16 119.38) (xy 137.16 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 309e2839-3c95-45df-b7ac-fa723f3d94a2)
)
(wire (pts (xy 144.78 137.16) (xy 144.78 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32a33c14-ad35-4ab3-9d14-69821847ef1b)
)
(wire (pts (xy 137.16 118.11) (xy 144.78 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f642266-c43d-457e-a3d0-ae48d6438db5)
)
(wire (pts (xy 60.96 137.16) (xy 60.96 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 483f2a29-4834-4f06-85ad-724e11d1e866)
)
(wire (pts (xy 123.19 92.71) (xy 113.03 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49b7236a-821c-4deb-be5e-c6a591113940)
)
(wire (pts (xy 54.61 92.71) (xy 68.58 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4aa33fe5-b7a1-4050-9a87-f49f23dace08)
)
(wire (pts (xy 60.96 97.79) (xy 72.39 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d8d5846-f150-4dca-bb82-1aabd61cf774)
)
(wire (pts (xy 44.45 97.79) (xy 46.99 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52c69651-7a29-4333-869f-2633ac573203)
)
(wire (pts (xy 123.19 90.17) (xy 123.19 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52d8e7e5-a13c-454e-a4ac-2f9fbb38f9bc)
)
(wire (pts (xy 167.64 124.46) (xy 167.64 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bcf876f-136c-4dac-ae61-fa226f0c392d)
)
(wire (pts (xy 54.61 95.25) (xy 64.77 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 693f4c1e-9a8f-4015-aa80-6c2ff19b308f)
)
(wire (pts (xy 190.5 113.03) (xy 193.04 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6dcee055-b835-4a75-a281-1a43d4332997)
)
(wire (pts (xy 44.45 92.71) (xy 46.99 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70199bd5-0966-48c7-8520-83dd2fa708c7)
)
(wire (pts (xy 193.04 85.09) (xy 180.34 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 717ae1df-ca35-43c4-858a-8a998842a6fa)
)
(wire (pts (xy 158.75 95.25) (xy 154.94 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71885243-5b46-48dd-99ac-0bd8b9c078df)
)
(wire (pts (xy 102.87 92.71) (xy 97.79 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76ff16ff-0d33-4704-b0f8-f9c9f4b3e595)
)
(wire (pts (xy 44.45 95.25) (xy 46.99 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78e6fcd6-2953-42bd-bea2-427d09239381)
)
(wire (pts (xy 64.77 137.16) (xy 64.77 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cd2aae3-af87-4985-916e-74bf2bfd9324)
)
(wire (pts (xy 120.65 110.49) (xy 120.65 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ce3b15b-ff03-4c37-a69c-50cee9ac8363)
)
(wire (pts (xy 177.8 95.25) (xy 193.04 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a9c72c9-3a70-4572-b8db-003779cae7c1)
)
(wire (pts (xy 158.75 95.25) (xy 177.8 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bd335e3-f9cc-4141-b62c-89e6f2cea9b6)
)
(wire (pts (xy 200.66 106.68) (xy 200.66 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f700339-c9dd-4565-bc82-3d26ce7b2743)
)
(wire (pts (xy 113.03 92.71) (xy 107.95 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97931d4a-7c02-4a9b-a790-a3569eede93c)
)
(wire (pts (xy 137.16 124.46) (xy 137.16 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9eb4c32c-a62b-416a-a386-ea1abd0b0a0d)
)
(wire (pts (xy 182.88 113.03) (xy 177.8 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acfc761d-5fad-488f-ba53-59cadbc7115a)
)
(wire (pts (xy 147.32 118.11) (xy 149.86 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aef4ec1b-4636-45ef-b743-73a2cf716b99)
)
(wire (pts (xy 64.77 95.25) (xy 72.39 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7ed0d6a-1169-4eb8-889c-9cc8d2e684bf)
)
(wire (pts (xy 54.61 97.79) (xy 60.96 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b81628e4-58c4-49cc-8d1d-059a6ecb0a99)
)
(wire (pts (xy 134.62 90.17) (xy 123.19 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid baac58cf-ba1a-4451-8078-47a320ad2217)
)
(wire (pts (xy 120.65 124.46) (xy 120.65 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c06b07a5-81e8-4fba-b75f-eafa053e1406)
)
(wire (pts (xy 68.58 137.16) (xy 68.58 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c37cdd99-088c-4d9f-8bb6-c86e7f4a82e1)
)
(wire (pts (xy 158.75 85.09) (xy 158.75 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c69d9541-5e9c-4448-bf12-ab294afe5277)
)
(wire (pts (xy 68.58 92.71) (xy 72.39 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c726b6ff-6673-49af-8138-a848c63e974e)
)
(wire (pts (xy 134.62 87.63) (xy 113.03 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9a40d5d-4fe7-4da0-89eb-466f8c6c321b)
)
(wire (pts (xy 113.03 87.63) (xy 100.33 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb6506b0-3912-438a-b6ea-123a23611666)
)
(wire (pts (xy 100.33 118.11) (xy 100.33 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cdf16225-865b-428c-89bd-8853cabfea19)
)
(wire (pts (xy 158.75 85.09) (xy 172.72 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d20751bd-63c0-476a-b48f-c0ea4d7053c0)
)
(wire (pts (xy 200.66 135.89) (xy 200.66 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5b3d9d5-14d6-42eb-ad21-510b986766e7)
)
(wire (pts (xy 68.58 92.71) (xy 68.58 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1413082-1796-4796-89ba-d1b8b6b355e2)
)
(wire (pts (xy 115.57 124.46) (xy 115.57 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f21a2c3b-3754-4d5f-9b26-191ad8769b23)
)
(wire (pts (xy 149.86 118.11) (xy 149.86 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f42c6fb6-c981-412b-ba48-b5195e6314ca)
)
(wire (pts (xy 200.66 119.38) (xy 200.66 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f67dee4a-805c-4563-ba28-5a6bba1ad765)
)
(wire (pts (xy 200.66 128.27) (xy 200.66 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6ade89d-92e5-4447-98dd-a8b1e161273b)
)
(wire (pts (xy 100.33 87.63) (xy 97.79 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe1771f5-b72c-4bc4-add4-a2ba0d9e31fd)
)
(text "* polypropylene or similar" (at 106.68 148.59 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b96fe3b1-ace7-4cfb-aa5b-6c561099c76a)
)
(global_label "INT_D" (shape input) (at 72.39 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0c63a741-410c-484f-a5a9-bc7587b536e0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 79.9436 95.1706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "INT_A" (shape input) (at 134.62 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1aef9f83-bec1-41fc-bfa2-05c86e4a8fa2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127.2479 92.7894 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "INT_A" (shape input) (at 72.39 92.71 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5168d258-9013-434e-b139-5cf0d4d9edb5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 79.7621 92.6306 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "INT_D" (shape input) (at 134.62 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7d2e7463-670d-4fe1-b215-ac0fa76c30e8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127.0664 95.3294 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "INT_R" (shape input) (at 72.39 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9dd38d05-405e-402a-aabe-5da5d9e87299)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 79.9436 97.7106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "INT_R" (shape input) (at 134.62 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c29026e7-237c-4cc9-a533-bc173f4f1a0f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127.0664 100.4094 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(hierarchical_label "VCS" (shape input) (at 134.62 97.79 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 01fb1e6b-cb11-499c-98a0-6bff6dff5959)
)
(hierarchical_label "TRIG" (shape input) (at 97.79 92.71 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 436b9e93-01ad-4cd2-a39e-eee50a26ba10)
)
(hierarchical_label "IIN" (shape input) (at 193.04 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6b6fa031-d624-43d1-842e-f25c3d8a114c)
)
(hierarchical_label "OUT" (shape input) (at 193.04 95.25 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 89fa7fcb-3c2b-4c1b-b3ed-e2a1cf745f7d)
)
(hierarchical_label "VCR" (shape input) (at 44.45 97.79 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8ef28da3-6d76-4892-938d-9b951233ede4)
)
(hierarchical_label "VCD" (shape input) (at 44.45 95.25 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9fda019a-5350-4524-b5e4-0e13d75d61d1)
)
(hierarchical_label "IIN" (shape input) (at 134.62 102.87 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cdb51342-07be-44c9-aae9-c15b7e1e8215)
)
(hierarchical_label "GATE" (shape input) (at 97.79 87.63 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d976a998-0355-4b51-98dc-421418498533)
)
(hierarchical_label "VCA" (shape input) (at 44.45 92.71 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f3b3a7eb-bae9-4bc9-9019-36f159717bd8)
)
(symbol (lib_id "Audio:AS3310") (at 144.78 97.79 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615df110)
(property "Reference" "U7" (id 0) (at 144.78 75.4126 0))
(property "Value" "AS3310" (id 1) (at 144.78 77.724 0))
(property "Footprint" "Package_DIP:DIP-16_W7.62mm_Socket_LongPads" (id 2) (at 160.02 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.alfarzpp.lv/eng/sc/AS3310.pdf" (id 3) (at 161.29 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8241ce78-0b11-406c-b514-79da8bcf2156))
(pin "10" (uuid aeaedb53-75b7-4fd6-adad-82319ac2cc8d))
(pin "11" (uuid 9f542482-25a9-4dc0-9da2-0b3a13d60a02))
(pin "12" (uuid 7b7c359d-84cb-4b7c-bd5a-894a4434ad0a))
(pin "13" (uuid e9feb70e-756a-4345-bbe4-7560482bb631))
(pin "14" (uuid 23c9109b-a2db-4bd5-8397-5f34fb4f8328))
(pin "15" (uuid 4278a013-d67f-494d-af6e-db2f2b63e14f))
(pin "16" (uuid 54da710a-7d2f-4b92-bcbe-e21d5947c0ee))
(pin "2" (uuid 70de2c60-6bc6-41c2-8f17-5047965e9685))
(pin "3" (uuid 34ccdc88-7adc-432a-9a03-1aeda9749954))
(pin "4" (uuid ee6253ea-e505-480e-b9a8-dded91f91095))
(pin "5" (uuid f11a2e7b-d871-4dbe-b904-7b72e68790f7))
(pin "6" (uuid 40c3bae4-5b67-4585-88ff-668d6966e76a))
(pin "7" (uuid 127602a7-6974-47dd-8e79-d737aa986718))
(pin "8" (uuid cdd2f27e-1a8b-4b81-9fcc-d4796bc34c95))
(pin "9" (uuid f6b448ec-7e9c-4fb5-9eb1-d09ac2555d03))
)
(symbol (lib_id "power:+12V") (at 144.78 72.39 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615e001c)
(property "Reference" "#PWR076" (id 0) (at 144.78 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+12V" (id 1) (at 145.161 67.9958 0))
(property "Footprint" "" (id 2) (at 144.78 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.78 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 23a694be-24cd-4818-a054-74dc33e59190))
)
(symbol (lib_id "Device:C_Small") (at 105.41 92.71 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615e2d70)
(property "Reference" "C29" (id 0) (at 105.41 96.1898 90))
(property "Value" "10n" (id 1) (at 105.41 98.5012 90))
(property "Footprint" "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P2.50mm" (id 2) (at 105.41 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 105.41 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0bfb77c8-e9e0-4927-beab-c0480cf12de8))
(pin "2" (uuid 0f43a207-5b5c-46f1-b972-219022f9843b))
)
(symbol (lib_id "Device:C_Small") (at 113.03 90.17 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615e4c4e)
(property "Reference" "C30" (id 0) (at 115.3668 89.0016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10n" (id 1) (at 115.3668 91.313 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P2.50mm" (id 2) (at 113.03 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 113.03 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cdc3b906-03a1-49d1-9555-dc3dde6b0002))
(pin "2" (uuid 3594fd94-07da-4717-9ce0-203556271044))
)
(symbol (lib_id "Device:C_Small") (at 115.57 121.92 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615e9fa6)
(property "Reference" "C31" (id 0) (at 113.2586 120.7516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10n*" (id 1) (at 113.2586 123.063 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_THT:C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (id 2) (at 115.57 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 115.57 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cf55fe05-50e6-4bcb-b790-712dec958fc3))
(pin "2" (uuid a9a8721d-5087-425a-97d2-08d95a0405fe))
)
(symbol (lib_id "Device:C_Small") (at 120.65 121.92 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615ed015)
(property "Reference" "C32" (id 0) (at 122.9868 120.7516 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "33n*" (id 1) (at 122.9868 123.063 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_THT:C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (id 2) (at 120.65 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.65 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8d1ba9ea-48b0-4f66-8321-68636b520706))
(pin "2" (uuid c49680c0-7222-4429-8955-505832a0c248))
)
(symbol (lib_id "power:GND") (at 115.57 137.16 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000615eeab8)
(property "Reference" "#PWR073" (id 0) (at 115.57 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 115.697 141.5542 0))
(property "Footprint" "" (id 2) (at 115.57 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 115.57 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ef22e3fb-d5a2-4943-a5ac-58dd7b940941))
)
(symbol (lib_id "Device:R") (at 144.78 121.92 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061601ac4)
(property "Reference" "R61" (id 0) (at 143.0274 120.7516 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "680" (id 1) (at 143.0274 123.063 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 143.002 121.92 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7fc51b51-26b5-4d73-97c0-6609d5f1eb4f))
(pin "2" (uuid f51cb6f2-cf82-4b6e-975d-ba88c1d484bd))
)
(symbol (lib_id "power:-12V") (at 144.78 137.16 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061604d90)
(property "Reference" "#PWR077" (id 0) (at 144.78 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "-12V" (id 1) (at 144.399 141.5542 0))
(property "Footprint" "" (id 2) (at 144.78 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)