-
Notifications
You must be signed in to change notification settings - Fork 4
/
AS3340.kicad_sch
1463 lines (1414 loc) · 56.1 KB
/
AS3340.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 ebb76e06-409d-47e2-b43c-bf014de25a3d)
(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:AS3340" (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" "AS3340" (id 1) (at 5.08 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 12.7 -7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.alfarzpp.lv/eng/sc/AS3340.pdf" (id 3) (at 15.24 -11.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "VCO CEM340 ALFA" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Voltage Controlled Oscillator (VCO), 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 "AS3340_0_1"
(rectangle (start -10.16 15.24) (end 10.16 -15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AS3340_1_1"
(pin input line (at -12.7 12.7 0) (length 2.54)
(name "SCALE1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -5.08 180) (length 2.54)
(name "VTO" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -10.16 0) (length 2.54)
(name "CAP" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -17.78 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "VLFI" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -12.7 0) (length 2.54)
(name "VS" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "VFCI" (effects (font (size 1.27 1.27))))
(number "15" (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 "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "SCALE2" (effects (font (size 1.27 1.27))))
(number "2" (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 "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 2.54)
(name "VP" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 2.54)
(name "VPWM" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "VHSI" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "VHFT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 0 180) (length 2.54)
(name "VSO" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "VSSI" (effects (font (size 1.27 1.27))))
(number "9" (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: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 "Device:R_Potentiometer_Trim" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "RV" (id 0) (at -4.445 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Potentiometer_Trim" (id 1) (at -2.54 0 90)
(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" "resistor variable trimpot trimmer" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Trim-potentiometer" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Potentiometer_Trim_0_1"
(polyline
(pts
(xy 1.524 0.762)
(xy 1.524 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.524 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(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_Potentiometer_Trim_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (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 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "3" (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:-5V" (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" "-5V" (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 \"-5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "-5V_0_0"
(pin power_in line (at 0 0 90) (length 0) hide
(name "-5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "-5V_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 196.85 97.79) (diameter 0) (color 0 0 0 0)
(uuid 07ff3c60-071c-49ff-b43c-6021f5c09fe6)
)
(junction (at 177.8 121.92) (diameter 0) (color 0 0 0 0)
(uuid 18366eb8-d38f-4f4a-987f-b507fd08f45d)
)
(junction (at 143.51 107.95) (diameter 0) (color 0 0 0 0)
(uuid 2c258c4b-3986-4710-be97-1d39bd237981)
)
(junction (at 142.24 90.17) (diameter 0) (color 0 0 0 0)
(uuid 3c555fb6-acf6-4392-8ce0-cf50ab992e14)
)
(junction (at 177.8 71.12) (diameter 0) (color 0 0 0 0)
(uuid 4772ec68-d6a5-49a0-bf8c-2c47dc9dc33b)
)
(junction (at 118.11 107.95) (diameter 0) (color 0 0 0 0)
(uuid 84f1422b-5b7a-4a5e-b1a1-7f84c10e85ca)
)
(junction (at 128.27 105.41) (diameter 0) (color 0 0 0 0)
(uuid 9e7d53b3-4645-4e0c-990c-387e7ce85822)
)
(junction (at 90.17 107.95) (diameter 0) (color 0 0 0 0)
(uuid be796746-25ed-487a-82f6-12ba1b62ef70)
)
(junction (at 133.35 92.71) (diameter 0) (color 0 0 0 0)
(uuid e5b79556-71f8-4008-a465-7055f54644b4)
)
(junction (at 109.22 107.95) (diameter 0) (color 0 0 0 0)
(uuid eb88b9e4-f7ea-42f1-8c54-e606a8380036)
)
(wire (pts (xy 102.87 119.38) (xy 102.87 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 006d0741-cbc2-4693-a660-518fe5942f93)
)
(wire (pts (xy 151.13 90.17) (xy 153.67 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02de8176-8ef5-4af8-a3ea-06c3f5a7f828)
)
(wire (pts (xy 102.87 130.81) (xy 102.87 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07abf502-9c81-4fc9-8d40-8d0dfda1bf35)
)
(wire (pts (xy 77.47 97.79) (xy 85.09 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cca7a95-c246-46c1-8734-4a5118800059)
)
(wire (pts (xy 83.82 130.81) (xy 83.82 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17b8cb88-1e4e-4935-92d4-be462518332f)
)
(wire (pts (xy 196.85 97.79) (xy 196.85 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fcb45f5-e5ab-4ed4-be92-2803b2f4dba0)
)
(wire (pts (xy 167.64 121.92) (xy 167.64 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a9bf6ab-a35b-4387-8e0d-5ccc0d8d7003)
)
(wire (pts (xy 153.67 113.03) (xy 153.67 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d43d41a-d17c-480d-9df7-d5ed9c38248f)
)
(wire (pts (xy 118.11 80.01) (xy 118.11 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d937ed7-08e7-4624-a85e-b25bbf51fa61)
)
(wire (pts (xy 83.82 118.11) (xy 83.82 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ec0341f-a20c-4c5e-b292-56da280e2fb8)
)
(wire (pts (xy 153.67 95.25) (xy 165.1 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30cf679f-f876-483a-95b7-40e075914504)
)
(wire (pts (xy 196.85 132.08) (xy 196.85 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 316044ba-19d9-44f3-aec5-02944069e550)
)
(wire (pts (xy 118.11 92.71) (xy 118.11 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32678e70-53a0-41fa-87d8-3bc07054a6ef)
)
(wire (pts (xy 107.95 105.41) (xy 104.14 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 366e523f-8c53-46b5-afef-4114ba7e529b)
)
(wire (pts (xy 196.85 93.98) (xy 196.85 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f23b479-b458-4cfb-9d78-049f907340e0)
)
(wire (pts (xy 162.56 132.08) (xy 162.56 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f63a2b0-b68f-4f63-9d5f-f5ce53b75bec)
)
(wire (pts (xy 90.17 107.95) (xy 109.22 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44010c3f-c2d4-4ed3-9ce7-2236ff84a47d)
)
(wire (pts (xy 165.1 107.95) (xy 143.51 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 482794b5-34f8-4ab0-9a59-ef2487104be2)
)
(wire (pts (xy 171.45 73.66) (xy 171.45 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d21f5c8-a643-4101-b75a-4fea5936f5d2)
)
(wire (pts (xy 177.8 71.12) (xy 177.8 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5acbf8da-2e85-4ddc-8703-c8519a9ee0a2)
)
(wire (pts (xy 128.27 120.65) (xy 128.27 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ed1fff4-ce0c-454c-b5fe-3fd95080ebd2)
)
(wire (pts (xy 167.64 132.08) (xy 167.64 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fb26d63-555f-43b9-a21a-6b7dd72b476b)
)
(wire (pts (xy 143.51 120.65) (xy 143.51 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65563cf2-aed5-4a2e-99e5-9e38cd24fc59)
)
(wire (pts (xy 133.35 92.71) (xy 153.67 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b14d71c-15d7-4622-adb4-9f49bc7c7caf)
)
(wire (pts (xy 165.1 113.03) (xy 153.67 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ba263c8-e51d-442a-a8a8-81d9240677f9)
)
(wire (pts (xy 190.5 107.95) (xy 204.47 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75dfcac0-6de0-4a25-b156-c3fce7226174)
)
(wire (pts (xy 177.8 121.92) (xy 177.8 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79a28bae-0aaa-4ded-9343-d2c7d3320e66)
)
(wire (pts (xy 133.35 90.17) (xy 133.35 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d8625fa-3739-412a-b08e-5fc16c72c0d2)
)
(wire (pts (xy 109.22 107.95) (xy 109.22 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7df521f9-2fa9-4b73-b919-e0a06fd49a08)
)
(wire (pts (xy 128.27 92.71) (xy 128.27 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84c8c457-b59f-4add-b4af-60870d81b762)
)
(wire (pts (xy 106.68 127) (xy 109.22 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89eb53b6-25fe-457e-a572-f0e2d20095e1)
)
(wire (pts (xy 143.51 90.17) (xy 142.24 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8befd928-bc50-44a9-87af-e22505eba430)
)
(wire (pts (xy 147.32 86.36) (xy 142.24 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f626d6a-4e14-459c-b3fa-66ce0adc54ef)
)
(wire (pts (xy 190.5 97.79) (xy 196.85 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 901335ac-b460-4916-9e7d-c4c5ea30846f)
)
(wire (pts (xy 177.8 120.65) (xy 177.8 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9593d6a7-d04c-4862-862c-73bbee37dba2)
)
(wire (pts (xy 77.47 105.41) (xy 96.52 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 986a099c-2a9c-4e71-8a8f-c6b736e92d54)
)
(wire (pts (xy 109.22 127) (xy 109.22 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9872649e-2fc2-482d-a79a-d171f23d62f0)
)
(wire (pts (xy 161.29 92.71) (xy 165.1 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a01b6225-5657-452f-8ede-10676b9fe61c)
)
(wire (pts (xy 109.22 107.95) (xy 118.11 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1199815-4e65-4707-889c-5cfa29f15db5)
)
(wire (pts (xy 143.51 107.95) (xy 143.51 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1d01247-a687-4cc8-9a96-269daba27011)
)
(wire (pts (xy 196.85 97.79) (xy 204.47 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8f69abc-8fd5-49b9-83c2-d9569c5e9c43)
)
(wire (pts (xy 90.17 120.65) (xy 90.17 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af540fc8-977e-47e4-9007-36dfff3badc7)
)
(wire (pts (xy 153.67 100.33) (xy 165.1 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2d57885-8786-4dc3-b1c7-b1b397afb79f)
)
(wire (pts (xy 143.51 132.08) (xy 143.51 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b313bbd1-7121-4076-9555-198c6f7aba5b)
)
(wire (pts (xy 118.11 107.95) (xy 143.51 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc2cab73-2c62-4408-b5e7-27af4363180c)
)
(wire (pts (xy 127 102.87) (xy 165.1 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c26279cc-cf58-43ec-a2b9-455e90b8ea0a)
)
(wire (pts (xy 196.85 69.85) (xy 196.85 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9544aef-1c61-4dd8-9e83-375f5a8eddf7)
)
(wire (pts (xy 177.8 121.92) (xy 167.64 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cadfbee1-5938-40e2-a73c-24d10b84176d)
)
(wire (pts (xy 77.47 107.95) (xy 90.17 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf2d4b76-4470-4456-8bfa-b1431e106ccd)
)
(wire (pts (xy 171.45 71.12) (xy 177.8 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1c46f34-bb2c-4ac8-98a8-0f5546b8e6da)
)
(wire (pts (xy 128.27 80.01) (xy 128.27 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d454584d-40de-42ec-be93-6c9b175b94f7)
)
(wire (pts (xy 142.24 90.17) (xy 133.35 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d4c29f94-6326-483c-be87-6fdc2ceae091)
)
(wire (pts (xy 190.5 102.87) (xy 204.47 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d524d171-7101-44d6-b449-010f6d9d220a)
)
(wire (pts (xy 153.67 132.08) (xy 153.67 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d84bd165-8ba6-419d-89f0-5df82af0f7aa)
)
(wire (pts (xy 77.47 102.87) (xy 119.38 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e103422f-45ee-402b-983c-bca7f2d08c01)
)
(wire (pts (xy 177.8 69.85) (xy 177.8 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e802e3de-414b-41a3-8866-9b3f203c8034)
)
(wire (pts (xy 128.27 132.08) (xy 128.27 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e91fc953-d1ce-42d5-bd3d-113f8d4b1e61)
)
(wire (pts (xy 92.71 97.79) (xy 165.1 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9c921ba-024f-4d6f-9667-6b9d5e7c5777)
)
(wire (pts (xy 165.1 115.57) (xy 162.56 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee3d621e-237d-4382-b7e3-a9fcf17e4bec)
)
(wire (pts (xy 161.29 90.17) (xy 165.1 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef03aebf-9e2d-4135-aae2-f6d3cda6c0b3)
)
(wire (pts (xy 133.35 92.71) (xy 133.35 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef2bd6c0-2a35-45d9-90a3-814a35088ec3)
)
(wire (pts (xy 180.34 120.65) (xy 180.34 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f12e68ef-1a04-4ae0-a419-b0a6021f1ad8)
)
(wire (pts (xy 115.57 105.41) (xy 128.27 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f289317c-b968-4168-829b-a39d9597a896)
)
(wire (pts (xy 162.56 115.57) (xy 162.56 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5400180-fd6a-49d2-a416-8022f2d967c2)
)
(wire (pts (xy 128.27 105.41) (xy 128.27 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6930950-40ba-4c5e-be48-ebcf4a9a1159)
)
(wire (pts (xy 128.27 105.41) (xy 165.1 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6c3fd7d-9793-4039-9f9c-192e1fcbc1b9)
)
(wire (pts (xy 90.17 127) (xy 87.63 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8303da2-737e-49c0-bf64-38ea89f8f73f)
)
(wire (pts (xy 90.17 107.95) (xy 90.17 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f94909db-8479-4332-b43d-50cb0970a1d8)
)
(wire (pts (xy 142.24 86.36) (xy 142.24 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9c8e7c9-d917-4914-b0fc-dee20aab5b67)
)
(text "* polypropylene or similar" (at 146.05 156.21 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9a020fbd-f83a-431b-a166-eb4620268312)
)
(global_label "HFT" (shape input) (at 102.87 119.38 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6fcbd4b1-8d51-4cf7-b6c3-b9b53cdb01bc)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 102.9494 113.5802 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "HFT" (shape input) (at 153.67 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b2544925-8b5a-4ea0-a984-e8bb7b233a82)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.8702 100.2506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(hierarchical_label "SAW" (shape input) (at 204.47 102.87 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 24539bbd-2ab6-42e4-8bae-55a24587c281)
)
(hierarchical_label "HARD_SYNC" (shape input) (at 77.47 97.79 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2dba23e2-419d-4c3e-af34-6a0533c8be15)
)
(hierarchical_label "PULSE" (shape input) (at 204.47 97.79 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 57947a75-5c7d-4f96-95ee-48e466b9bd93)
)
(hierarchical_label "FM" (shape input) (at 77.47 105.41 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5ef69f6f-9ea1-4d7b-8519-4d4009e4d722)
)
(hierarchical_label "CV" (shape input) (at 77.47 107.95 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7bbc0029-73f8-4489-bf2d-0b53ca6b852a)
)
(hierarchical_label "PWM" (shape input) (at 153.67 95.25 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 801000d8-b5be-4796-9885-c8032fe1c179)
)
(hierarchical_label "TRIANGLE" (shape input) (at 204.47 107.95 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ca7e1f5f-4122-4656-aaab-6893c357ae5f)
)
(hierarchical_label "PWM" (shape input) (at 196.85 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e021eebb-881e-4907-b8b9-66001bee1546)
)
(hierarchical_label "SOFT_SYNC" (shape input) (at 77.47 102.87 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e36aa92d-8543-4937-81ec-df32ae08d7f9)
)
(symbol (lib_id "Device:C") (at 100.33 105.41 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 05f08c57-8dd1-47ed-b778-9d735e58ec6b)
(property "Reference" "C22" (id 0) (at 100.33 97.79 90))
(property "Value" "100n" (id 1) (at 100.33 100.33 90))
(property "Footprint" "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P2.50mm" (id 2) (at 96.52 106.3752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 100.33 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2b2bd077-4f60-4eec-ad1a-3e8892040765))
(pin "2" (uuid b5a8c11c-cd39-4dba-959c-bdfc83cac0c9))
)
(symbol (lib_id "Device:R") (at 143.51 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1ba001b1-b3c2-4465-bf6e-f7cf8879ea7a)
(property "Reference" "R48" (id 0) (at 146.05 115.5699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "470" (id 1) (at 146.05 118.1099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 141.732 116.84 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 143.51 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f60c137d-c367-4645-aa2d-670eeaf33037))
(pin "2" (uuid 26f79471-144f-49d8-8a7c-e54b273bb906))
)
(symbol (lib_id "Device:R") (at 111.76 105.41 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 222d4fe2-9833-4543-a1bf-a196257a6fec)
(property "Reference" "R44" (id 0) (at 111.76 99.06 90))
(property "Value" "1M" (id 1) (at 111.76 101.6 90))
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 111.76 103.632 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 111.76 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6b6ce34f-6d3b-48c0-a960-6cd9bc6649b0))
(pin "2" (uuid 1a37b5e7-df7b-4132-8fbf-0e1dbab21620))
)
(symbol (lib_id "Device:C") (at 88.9 97.79 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 22f0e8d2-422a-48ea-b55b-3f16d9aae698)
(property "Reference" "C21" (id 0) (at 88.9 90.17 90))
(property "Value" "1n" (id 1) (at 88.9 92.71 90))
(property "Footprint" "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P2.50mm" (id 2) (at 92.71 96.8248 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 88.9 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8d421860-63da-4c1b-ae8a-5d2a5beafb58))
(pin "2" (uuid aedb0878-281d-43d9-a697-8776f055545a))
)
(symbol (lib_id "Device:R") (at 118.11 88.9 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 25fca9b5-2553-483f-bb45-9aee520a0cdc)
(property "Reference" "R45" (id 0) (at 115.57 87.6299 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "330k" (id 1) (at 115.57 90.1699 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 116.332 88.9 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 118.11 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 58b9e973-84db-4da5-a111-ae45e057b17e))
(pin "2" (uuid efec968e-8357-464b-a918-d7bfb75ed1bc))
)
(symbol (lib_id "Device:R") (at 162.56 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2da13d6f-05be-455d-b411-4e9c5197856e)
(property "Reference" "R51" (id 0) (at 160.02 126.9999 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1k8" (id 1) (at 160.02 129.5399 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 160.782 128.27 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 162.56 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fc2e6937-75ad-4c5e-862d-3bdf44129aa7))
(pin "2" (uuid 81b704e3-ad79-4155-bf9f-926a6d6c3a72))
)
(symbol (lib_id "power:GND") (at 128.27 135.89 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3c34cc73-cea9-4706-b042-40be182b18f7)
(property "Reference" "#PWR058" (id 0) (at 128.27 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 128.27 140.97 0))
(property "Footprint" "" (id 2) (at 128.27 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 128.27 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 66f55460-4e21-4157-bb0a-760e1ad8606d))
)
(symbol (lib_id "power:-5V") (at 177.8 135.89 180) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3cdde98f-3bcc-49d6-b1f8-98f00b7fbab5)
(property "Reference" "#PWR066" (id 0) (at 177.8 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "-5V" (id 1) (at 175.26 137.1599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 177.8 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 177.8 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8d9df0c3-0c8d-45e2-9b59-236ffd1e1d44))
)
(symbol (lib_id "power:GND") (at 143.51 135.89 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3ff772c3-04e4-4c1a-8485-eceff188242e)
(property "Reference" "#PWR060" (id 0) (at 143.51 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 143.51 140.97 0))
(property "Footprint" "" (id 2) (at 143.51 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 143.51 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b20b3258-8005-41cd-ac9e-120620376a4a))
)
(symbol (lib_id "Device:R_Potentiometer_Trim") (at 147.32 90.17 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 41562b5f-e32b-435a-804b-98db26da33ae)
(property "Reference" "RV5" (id 0) (at 147.32 83.82 90))
(property "Value" "10k SCALE" (id 1) (at 147.32 81.28 90))
(property "Footprint" "Potentiometer_THT:Potentiometer_Bourns_3296W_Vertical" (id 2) (at 147.32 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 147.32 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 117e81d7-e007-4f74-adda-776b16dbef53))
(pin "2" (uuid 4650ea2a-292f-4549-abf1-8a1f609ecdd6))
(pin "3" (uuid 36af0d1f-c815-445f-9167-f8992c32e28a))
)
(symbol (lib_id "power:-5V") (at 133.35 135.89 180) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 46f70ede-91f0-47e1-a6a2-9299cfe51eec)
(property "Reference" "#PWR059" (id 0) (at 133.35 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "-5V" (id 1) (at 135.89 137.1599 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 133.35 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 133.35 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid be51c449-d424-44b6-8b1f-ec1ce69f3ade))
)
(symbol (lib_id "Device:C") (at 143.51 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 47f717b3-06e5-43d7-b65d-b7beacdbb618)
(property "Reference" "C25" (id 0) (at 139.7 126.9999 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10n" (id 1) (at 139.7 129.5399 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P2.50mm" (id 2) (at 144.4752 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 143.51 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5f446c3-0398-4c41-bf1c-d336eba484f1))
(pin "2" (uuid 3fa169e9-81d1-4326-8df0-4b0813f29a1d))
)
(symbol (lib_id "power:GND") (at 153.67 135.89 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 588c1e41-6e7d-4663-9833-3ee3d386ce28)
(property "Reference" "#PWR061" (id 0) (at 153.67 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 153.67 140.97 0))
(property "Footprint" "" (id 2) (at 153.67 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 153.67 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 08c483bd-c3c8-40ea-9665-3a1e8ab46a42))
)
(symbol (lib_id "Device:R") (at 109.22 116.84 180) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5e8b6c5f-e45d-4bd5-bd99-8def0a03f643)
(property "Reference" "R43" (id 0) (at 111.76 115.5699 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1M" (id 1) (at 111.76 118.1099 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 110.998 116.84 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 109.22 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5a7de2cf-e428-4bd0-9943-7b02851e49cd))
(pin "2" (uuid c4cc0cdb-fc34-4c06-bd4e-3a8d4435ec2f))
)
(symbol (lib_id "Device:R") (at 196.85 90.17 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)