-
Notifications
You must be signed in to change notification settings - Fork 1
/
diode-ladder-filter-synth-module.kicad_pcb
6237 lines (6161 loc) · 421 KB
/
diode-ladder-filter-synth-module.kicad_pcb
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "-12V")
(net 4 "Net-(C7-Pad1)")
(net 5 "Net-(C7-Pad2)")
(net 6 "Net-(C9-Pad1)")
(net 7 "Net-(C9-Pad2)")
(net 8 "Net-(D14-A)")
(net 9 "Net-(D8-K)")
(net 10 "Net-(D10-A)")
(net 11 "Net-(D10-K)")
(net 12 "Net-(D11-K)")
(net 13 "Net-(D12-K)")
(net 14 "Net-(D1-A)")
(net 15 "Net-(D2-K)")
(net 16 "Net-(D3-K)")
(net 17 "unconnected-(D3-A-Pad2)")
(net 18 "unconnected-(D4-K-Pad1)")
(net 19 "Net-(D4-A)")
(net 20 "unconnected-(D5-K-Pad1)")
(net 21 "unconnected-(D6-A-Pad2)")
(net 22 "Net-(D7-K)")
(net 23 "Net-(D7-A)")
(net 24 "Net-(D8-A)")
(net 25 "Net-(D13-K)")
(net 26 "Net-(D14-K)")
(net 27 "Net-(J1-+12v)")
(net 28 "Net-(J1--12v)")
(net 29 "Net-(J2-signal)")
(net 30 "Net-(J3-signal)")
(net 31 "Net-(J4-signal)")
(net 32 "Net-(J8-signal)")
(net 33 "Net-(PT1-Pad2)")
(net 34 "Net-(PT2-Pad2)")
(net 35 "Net-(PT2-Pad3)")
(net 36 "Net-(U2A--)")
(net 37 "Net-(U2D-+)")
(net 38 "Net-(PT4-Pad3)")
(net 39 "Net-(PT6-Pad2)")
(net 40 "Net-(PT7-Pad3)")
(net 41 "Net-(U1A-+)")
(net 42 "Net-(U1A--)")
(net 43 "Net-(U1B--)")
(net 44 "Net-(R10-Pad1)")
(net 45 "Net-(U1C--)")
(net 46 "Net-(U1D-+)")
(net 47 "Net-(U1D--)")
(net 48 "Net-(U2B--)")
(net 49 "Net-(U2C-+)")
(net 50 "Net-(U2C--)")
(footprint "000_Diodes_Immo:D_MiniMELF_kawaii" (layer "F.Cu")
(tstamp 00397192-b8d9-45ff-9bf7-847f5299ed3c)
(at 147.32 104.14)
(descr "Diode Mini-MELF (SOD-80)")
(tags "Diode Mini-MELF (SOD-80)")
(property "RSpart" "443-3690")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "cost" "0.058")
(property "ki_description" "100V 0.15A standard switching diode, DO-35")
(property "ki_keywords" "diode")
(property "supplier" "https://uk.rs-online.com/web/p/switching-diodes/4433690?gb=b")
(path "/1996465c-f6e3-4b75-b9a7-e666f6a992f4")
(attr smd)
(fp_text reference "D14" (at 0 -1.58 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp afdd067b-4f14-4f4d-9261-8798aeeb8af4)
)
(fp_text value "1N4148" (at 0.38 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 88d1b27e-a65c-4fef-939d-ed49c8cc881e)
)
(fp_text user "${REFERENCE}" (at 0.02 0.19 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 45429d26-b1ee-4ec2-aebc-ec697ef717bd)
)
(fp_line (start -2.661986 -0.84) (end -2.661986 0.818545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdd708c8-6259-4ed2-94db-a815ba2bfc3d))
(fp_line (start -2.38 1.11) (end 1.75 1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0450040-449c-4021-85f8-bd00b5b9ec6d))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp afb32695-f338-44fd-be58-55c25ca7fb02))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3ee6e361-d3bd-4685-9833-6a8cc8ef5e55))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 4efe9398-586b-4af9-83fd-8ba123861ca1))
(fp_line (start -0.35 0) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 9bbbac21-123d-4c30-af7d-aa7a95d4d788))
(fp_line (start 0.25 -0.4) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp b3897b80-19a7-4d98-8b87-a4bd08a72903))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp dbcbf4da-2717-4f6e-b659-beeab4d047c6))
(fp_line (start 0.25 0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp ecd164f5-14c3-4627-9490-f3c0f427ccaa))
(fp_line (start 1.73 -1.11) (end -2.39 -1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af0bb196-c577-4588-a079-04a339eb1c3a))
(fp_arc (start -2.660687 -0.819999) (mid -2.575547 -1.025547) (end -2.369999 -1.110687)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3aa4784-f0ee-4d0f-92f8-f0c11ac05910))
(fp_arc (start -2.37 1.110533) (mid -2.576466 1.025012) (end -2.661986 0.818545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0edfa1d7-3502-4013-aedf-274685b235f2))
(fp_line (start -2.65 -1.1) (end 2.65 -1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 113d6464-6bba-4290-8b8c-7f1669a9605a))
(fp_line (start -2.65 1.1) (end -2.65 -1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6519f6b4-063e-49b3-99d3-66d33f88af98))
(fp_line (start 2.65 -1.1) (end 2.65 1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed50065a-4f1d-43de-a862-0fc60053a947))
(fp_line (start 2.65 1.1) (end -2.65 1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ceb1b0ba-f6a3-4fc0-af12-12a4eee62db6))
(fp_line (start -1.65 -0.8) (end 1.65 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf221e55-f515-4d73-bd82-e900b1e64845))
(fp_line (start -1.65 0.8) (end -1.65 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a363f77c-a0d7-4d53-870b-6c37d65786eb))
(fp_line (start 1.65 -0.8) (end 1.65 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af5ab1c8-45a4-4671-bb4a-84a1d835093c))
(fp_line (start 1.65 0.8) (end -1.65 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32bd034b-3cd5-4d42-a0b3-7dfe6fc6cc92))
(pad "1" smd roundrect (at -1.84 0) (size 1.48 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 26 "Net-(D14-K)") (pinfunction "K") (pintype "passive") (tstamp 174968f4-80c2-4794-acbb-483a71a297e8))
(pad "2" smd roundrect (at 1.845 0) (size 1.49 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 8 "Net-(D14-A)") (pinfunction "A") (pintype "passive") (tstamp 8cfb4f28-f83b-45bc-bd3d-e22cb37dda96))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_MiniMELF.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Diodes_Immo:D_MiniMELF_kawaii" (layer "F.Cu")
(tstamp 09eaee17-4300-4c20-adc5-e5074c02cc6b)
(at 156.21 95.825 90)
(descr "Diode Mini-MELF (SOD-80)")
(tags "Diode Mini-MELF (SOD-80)")
(property "RSpart" "443-3690")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "cost" "0.058")
(property "ki_description" "100V 0.15A standard switching diode, DO-35")
(property "ki_keywords" "diode")
(property "supplier" "https://uk.rs-online.com/web/p/switching-diodes/4433690?gb=b")
(path "/84a868d5-c972-46da-95c8-fea5b41affc2")
(attr smd)
(fp_text reference "D13" (at 0 -1.58 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4c7f5285-a649-4b5d-a09c-22c82c5f273f)
)
(fp_text value "1N4148" (at 0.38 0 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 40f1f342-908c-415a-ba80-62fc22662529)
)
(fp_text user "${REFERENCE}" (at 0.02 0.19 90 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 24a15062-9b78-41c7-b749-4740c9684cb9)
)
(fp_line (start -2.661986 -0.84) (end -2.661986 0.818545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94284d3e-d88a-4688-b007-af60ffdb5de3))
(fp_line (start -2.38 1.11) (end 1.75 1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f30268a-1b04-4db5-b8e6-ee8b47280183))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp aec82042-b71d-42fd-98e4-c89e1096549f))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f7988d62-10c1-4798-82b1-b65a3e24e973))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 754a1302-dac1-49b4-8542-d17351f3b097))
(fp_line (start -0.35 0) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 9ec1d92a-37d2-41a3-b9a8-63ff380084dd))
(fp_line (start 0.25 -0.4) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 09c66138-dc99-4d51-9936-82a137499d7c))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 506e98a2-e73f-4ae2-a5cd-1a990b30075b))
(fp_line (start 0.25 0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 29b212cf-b925-4eb5-8d79-5378ac7966d6))
(fp_line (start 1.73 -1.11) (end -2.39 -1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8af3351d-648e-4d35-a188-f9e5050d971f))
(fp_arc (start -2.660687 -0.819999) (mid -2.575547 -1.025547) (end -2.369999 -1.110687)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21c0c402-a281-4815-85c2-e4288e1cdc9f))
(fp_arc (start -2.37 1.110533) (mid -2.576466 1.025012) (end -2.661986 0.818545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04b5f28e-f6fa-409f-974b-111c2624c515))
(fp_line (start -2.65 -1.1) (end 2.65 -1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86610b0d-5737-489a-b9a2-074b010c4506))
(fp_line (start -2.65 1.1) (end -2.65 -1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33ccec13-16c5-45e5-a057-aa72b97365d4))
(fp_line (start 2.65 -1.1) (end 2.65 1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87d3fc4c-40fa-40dd-820c-2b8ff465995e))
(fp_line (start 2.65 1.1) (end -2.65 1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eae668d3-fda0-4bb5-a64c-cd5756c975fe))
(fp_line (start -1.65 -0.8) (end 1.65 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d6b6725-4ecc-4cf1-bff1-17ade5689669))
(fp_line (start -1.65 0.8) (end -1.65 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7c80ede-8abb-4596-b4e9-399b6a1759b4))
(fp_line (start 1.65 -0.8) (end 1.65 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 969b2c8e-cfab-45bc-91d4-757f2206bf82))
(fp_line (start 1.65 0.8) (end -1.65 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1fe7beb-3de6-4189-bbe2-589c2f2318fd))
(pad "1" smd roundrect (at -1.84 0 90) (size 1.48 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 25 "Net-(D13-K)") (pinfunction "K") (pintype "passive") (tstamp 7b735006-a63e-4296-8d6d-3df27f0ecd71))
(pad "2" smd roundrect (at 1.845 0 90) (size 1.49 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 13 "Net-(D12-K)") (pinfunction "A") (pintype "passive") (tstamp e6b893ee-835d-4648-b014-1934317aecda))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_MiniMELF.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 1017be5a-adaf-434b-b962-520331a8aca9)
(at 136.89 81.28)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/d6d4956b-deea-455f-89df-a4dc650fb9d0")
(attr smd)
(fp_text reference "R16" (at 0 -1.25 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp dbc174d3-4e88-4e51-82c7-8cfa5f3d234e)
)
(fp_text value "27k" (at 0.03 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 33a8b187-34b9-46a9-b795-96f6c9ca7938)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7070c9b6-7cb6-47d3-89a5-e0cdab74741e)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fb0fbfd-eea5-40a7-8953-1d3935fad386))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2a0dd8e-5ff2-42e1-9236-716e09254498))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 653b5579-1156-4877-9aea-bd177325c8f1))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2fc56024-2538-4db0-bdd0-a45b0f78f751))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c64588e-cadf-4190-9b1a-9a541c396fde))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de9ef122-dcb6-4a87-aba4-b9cc81f174b2))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb9887bb-ae24-4ae3-8d64-f46e59aad3e3))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 213107f9-8588-4f55-8070-c40525e413ac))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c5f01bd-a26c-438b-a3a7-5d333347dfa4))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02557c02-6f26-4714-97fb-70301864f652))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 2 "GND") (pintype "passive") (tstamp 9cc83eda-e6d4-48bc-9404-54049ccd3b0e))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 22 "Net-(D7-K)") (pintype "passive") (tstamp 2d36a27a-bdae-4ef1-b452-4b757dc3d8bc))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Capacitors_Immo:C_0805_2012_HandSolder_kawaii" (layer "F.Cu")
(tstamp 10efe72a-1235-4648-a970-b34d333ecb2c)
(at 144.67 120.65)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Cost" "0.02")
(property "JLCpart" "C779975")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor 0805")
(property "ki_keywords" "cap capacitor")
(path "/15d48f9f-c2a0-4429-b749-d90362c117d8")
(attr smd)
(fp_text reference "C2" (at 0.04 1.6 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6a3b77a7-7525-464c-a260-63e9b10c61ef)
)
(fp_text value "100n" (at -0.14 0.01 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7328d963-f990-40c7-a091-5eae261e6256)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0bb82b07-b0c8-46b5-a766-9c27c2bfecdd)
)
(fp_arc (start -0.254558 0.775441) (mid 0 0.67) (end 0.254558 0.775442)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 222de699-830d-4d3b-8a49-227ec5952ba1))
(fp_arc (start 0.254558 -0.785442) (mid 0 -0.680001) (end -0.254558 -0.785443)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 9b15c03d-ced8-4996-9928-3a50412429b4))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98d45b17-1239-4292-abda-03f1f05fd885))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6494ab3-1ef1-4860-abca-16c5e97ff9a9))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b629db32-9f0c-49fe-b392-d61e43b9ce7a))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c772f1a0-355c-4a67-aab6-8c5c83e6909f))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16fa80b7-ccb9-42e3-b640-362d6e74103a))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b58cd0e0-7528-4f08-b488-217629ba719e))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 729bd290-1f6d-4f32-b14a-d6c4211adb88))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab71ce63-238b-4e2b-a179-661e66715479))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp d50c2381-240f-4322-80fc-e7a7f8dbd79c))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 3 "-12V") (pintype "passive") (tstamp 12dc4312-7bab-4237-9ea0-030ba3f0a160))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Diodes_Immo:LED_0805_2012_Kawaii" (layer "F.Cu")
(tstamp 15fee72e-0c5f-403a-9ed2-9a4a8fbdb1b6)
(at 200.55099 90.379306)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Cost" "0.0227")
(property "JLCpart" "C84259")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/2c9788c1-3e9b-4bf3-a88f-4277b44e3a41")
(attr smd)
(fp_text reference "D5" (at -2.3368 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 49db5cfb-61b9-4027-9ae8-b0edbeef9e1a)
)
(fp_text value "blue" (at 0 1.65 180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 528e81c6-9530-49fb-afed-3dd12b951487)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0fc906fb-c5e2-4819-9fdf-a0ac056b51a8)
)
(fp_line (start -1.87599 -0.45359) (end -1.875989 0.453589)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6996a114-e0b1-4adf-92b7-315252c3d5b5))
(fp_line (start -1.367989 0.961589) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c1f8188-97d7-4550-ac84-a40b1c02457f))
(fp_line (start 1.016 -0.96) (end -1.36799 -0.96159)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b132a58f-ba12-4c82-a6a4-6c80488d73d5))
(fp_arc (start -1.87599 -0.45359) (mid -1.727201 -0.812801) (end -1.36799 -0.96159)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 84eadf8f-d701-4514-a0b4-3ec36ad33e5a))
(fp_arc (start -1.367989 0.961589) (mid -1.7272 0.8128) (end -1.875989 0.453589)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 862a54f1-414d-48e7-b00b-e54ba802623f))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ebd1f1a-2fb1-43f2-9161-6530ef703e0a))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bd49fc4-389d-48b0-b287-8d542742bd44))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ccb9cc17-c5d9-4ce3-baf9-7b5f81dc60cd))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76eb9bfb-395e-41cb-bf53-040aeb1663ec))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a82da661-93e4-43a8-bf57-8fad3b08c502))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b325ac4-0a0c-4db7-ba0c-1d5b2efa091d))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92aa6d87-2451-47b6-b04e-ae7121e3ca4e))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29161222-50b0-4108-81c8-ffd66630cb86))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 795a97e5-1c16-4107-bbe9-1255913519f8))
(pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 20 "unconnected-(D5-K-Pad1)") (pinfunction "K") (pintype "passive") (tstamp c5da0c07-f663-4acb-a032-f6ce38e87c7e))
(pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 16 "Net-(D3-K)") (pinfunction "A") (pintype "passive") (tstamp aa34ae13-70ee-4761-9680-2b44a891f3ab))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Diodes_Immo:D_MiniMELF_kawaii" (layer "F.Cu")
(tstamp 1647f4cb-145e-431c-86f8-505b0f8a91ce)
(at 147.32 107.48122)
(descr "Diode Mini-MELF (SOD-80)")
(tags "Diode Mini-MELF (SOD-80)")
(property "RSpart" "443-3690")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "cost" "0.058")
(property "ki_description" "100V 0.15A standard switching diode, DO-35")
(property "ki_keywords" "diode")
(property "supplier" "https://uk.rs-online.com/web/p/switching-diodes/4433690?gb=b")
(path "/cbd4c34d-8b24-4896-a3fe-b572e0138fd9")
(attr smd)
(fp_text reference "D15" (at 0 -1.58 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f09855eb-f8e4-4bad-9adc-fb356be521eb)
)
(fp_text value "1N4148" (at 0.38 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f4583eaa-1197-4956-84d0-838310303101)
)
(fp_text user "${REFERENCE}" (at 0.02 0.19 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 27f75dd4-491f-4de6-a28a-546a1e46cff2)
)
(fp_line (start -2.661986 -0.84) (end -2.661986 0.818545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca4ef257-79cf-4dbd-8654-eeef9a567ec5))
(fp_line (start -2.38 1.11) (end 1.75 1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d95a5385-ff87-446a-aa29-8679f1279f43))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 092796ba-6a05-41a4-b8aa-c5b9ecfca4a1))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 2dd51186-8b6c-440d-aa34-8c251900cdc5))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp d78322f3-273a-4310-a4d3-86addaa06337))
(fp_line (start -0.35 0) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 62b809d0-e644-46bd-8973-51554871d771))
(fp_line (start 0.25 -0.4) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c3579ca2-7205-4f25-8f20-24122aadbd83))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 4615af3c-f358-4fcf-abf5-70e6efd4289e))
(fp_line (start 0.25 0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0ce05c15-505a-45d1-84b5-0fec3ad30678))
(fp_line (start 1.73 -1.11) (end -2.39 -1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f99b9639-1a5c-40ca-8452-0aae4dac1128))
(fp_arc (start -2.660687 -0.819999) (mid -2.575547 -1.025547) (end -2.369999 -1.110687)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8558e028-092c-4e1b-a7de-5a3e4fd1d8ba))
(fp_arc (start -2.37 1.110533) (mid -2.576466 1.025012) (end -2.661986 0.818545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95c390d5-ce36-4b96-8612-85d05911b9ec))
(fp_line (start -2.65 -1.1) (end 2.65 -1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ab5d46c-e847-452b-84b4-f1a4f1cb4798))
(fp_line (start -2.65 1.1) (end -2.65 -1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb261de6-9b05-45c3-8207-dc8f3f829888))
(fp_line (start 2.65 -1.1) (end 2.65 1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d54c52b1-5d1d-4edf-9484-73e120887d4b))
(fp_line (start 2.65 1.1) (end -2.65 1.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68b6ce8f-1564-46dd-83da-be37ff368e3e))
(fp_line (start -1.65 -0.8) (end 1.65 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 955eed7d-d9d7-478c-b470-726456b8121a))
(fp_line (start -1.65 0.8) (end -1.65 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdee6adb-0aa2-4297-a694-7b740aa4a59e))
(fp_line (start 1.65 -0.8) (end 1.65 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5e1aa64-c82c-409e-870a-540708c2950c))
(fp_line (start 1.65 0.8) (end -1.65 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0825df3-fe9b-4f58-950b-76698058271b))
(pad "1" smd roundrect (at -1.84 0) (size 1.48 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 8 "Net-(D14-A)") (pinfunction "K") (pintype "passive") (tstamp 56eb2d48-19df-40ad-8583-34fee3d4fb2d))
(pad "2" smd roundrect (at 1.845 0) (size 1.49 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 26 "Net-(D14-K)") (pinfunction "A") (pintype "passive") (tstamp 832cb837-51ec-48f7-9620-5020eb0da044))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_MiniMELF.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_ICs_Immo:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu")
(tstamp 1891fc58-6771-4ca2-b74e-afdb441c0109)
(at 162.625 53.975)
(descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Quad Low-Noise JFET-Input Operational Amplifiers, DIP-14/SOIC-14")
(property "ki_keywords" "quad opamp")
(path "/91bf5dc5-abb5-498e-80bf-c622d91df568")
(attr smd)
(fp_text reference "U2" (at 0 -5.28) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b7fb480-5137-433b-8b06-5e1e10d3c4c8)
)
(fp_text value "TL074" (at 0 5.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d89a78e-58b9-441d-ac6c-8f49a50fff46)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp f3f286ea-916d-47c2-b65a-d317a1edb796)
)
(fp_line (start 0 -4.435) (end -3.45 -4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6abbb78-e62f-4eb9-9b57-dd52fc27744f))
(fp_line (start 0 -4.435) (end 1.95 -4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp adfbb84a-691a-4543-bff2-06fd387086d3))
(fp_line (start 0 4.435) (end -1.95 4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c05ea56a-4793-4244-976a-9e00dec7d35d))
(fp_line (start 0 4.435) (end 1.95 4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b125529e-1dcb-4c12-a920-e4a5e3d1402f))
(fp_line (start -3.7 -4.58) (end -3.7 4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2204e83-779f-48fd-9fe6-0e0f70a7884c))
(fp_line (start -3.7 4.58) (end 3.7 4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c771ff1-6ea1-4b2e-bea3-9b0d2c4c6bfb))
(fp_line (start 3.7 -4.58) (end -3.7 -4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08ec2f81-ddb3-4fd5-8e8b-9cb1f7dea89f))
(fp_line (start 3.7 4.58) (end 3.7 -4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be3b7932-ea86-48da-9c6b-f40fc5325967))
(fp_line (start -1.95 -3.35) (end -0.975 -4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a53ce603-4b6e-4851-946b-3a8fa97cadbe))
(fp_line (start -1.95 4.325) (end -1.95 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 271c5e98-79bb-4908-ac0f-f474cb0052ed))
(fp_line (start -0.975 -4.325) (end 1.95 -4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c290b455-1547-4ef3-837d-63733fbadf48))
(fp_line (start 1.95 -4.325) (end 1.95 4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63fd1258-f2e9-4204-b186-8f39516c599b))
(fp_line (start 1.95 4.325) (end -1.95 4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b4c5523-6ec5-4a3b-b7ad-1cc0ef086ae8))
(pad "1" smd roundrect (at -2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(U2A--)") (pintype "output") (tstamp 2683e0de-5f2c-4771-85b6-b61321ded421))
(pad "2" smd roundrect (at -2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(U2A--)") (pinfunction "-") (pintype "input") (tstamp 1db7b94a-abbc-4b17-8d8f-7ca6b6a262e5))
(pad "3" smd roundrect (at -2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D10-K)") (pinfunction "+") (pintype "input") (tstamp 3bce3c94-17da-4fc6-b250-39c1b00273f3))
(pad "4" smd roundrect (at -2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "V+") (pintype "power_in") (tstamp 6f5d5680-b142-402c-877a-cbe8e2d9794d))
(pad "5" smd roundrect (at -2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "+") (pintype "input") (tstamp 6c0028ca-458f-4982-b427-7ca0fc0ea66b))
(pad "6" smd roundrect (at -2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "Net-(U2B--)") (pinfunction "-") (pintype "input") (tstamp 3f4e83a9-5ba9-49e2-a90e-ef9c45224357))
(pad "7" smd roundrect (at -2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "Net-(U2C-+)") (pintype "output") (tstamp a3ad018a-6a1b-4332-8bba-47953b3339a0))
(pad "8" smd roundrect (at 2.475 3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "Net-(U2C--)") (pintype "output") (tstamp 293702f9-58f6-44d2-b9f5-caa302da29db))
(pad "9" smd roundrect (at 2.475 2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "Net-(U2C--)") (pinfunction "-") (pintype "input") (tstamp 4ac5def8-832d-40c0-b186-c00c2317b163))
(pad "10" smd roundrect (at 2.475 1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "Net-(U2C-+)") (pinfunction "+") (pintype "input") (tstamp 76ea208a-e0cb-4a47-92aa-16b8b211065d))
(pad "11" smd roundrect (at 2.475 0) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "-12V") (pinfunction "V-") (pintype "power_in") (tstamp f3c60c1b-b02e-4fd8-8c7c-614eb900d54a))
(pad "12" smd roundrect (at 2.475 -1.27) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(U2D-+)") (pinfunction "+") (pintype "input") (tstamp b6abbd7d-250a-4af7-913d-966e73ac8e36))
(pad "13" smd roundrect (at 2.475 -2.54) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(D14-K)") (pinfunction "-") (pintype "input") (tstamp 2048821c-6261-40b9-9487-8b6f504918bd))
(pad "14" smd roundrect (at 2.475 -3.81) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D14-A)") (pintype "output") (tstamp 6675cd26-ca50-4ab3-b412-7efb8425decc))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 193a67f9-eb10-43d0-9417-fb48f6684b4d)
(at 186.09 102.53)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/bdba6327-5038-4af4-9267-b241507362fa")
(attr smd)
(fp_text reference "R22" (at 0 -1.25 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 785e8850-da08-4d11-9511-301e7a597c10)
)
(fp_text value "33k" (at 0.03 0 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 51bbe2d3-0e24-4149-8186-fea2a1b4f37f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6614ad35-cc6e-4ecf-a872-8df56a4eb904)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78bc664f-019a-4003-8b1f-14dccb232c40))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3e94eda-e96a-4ef4-a8a7-9355847050d5))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7424da99-cf1e-4e62-9cd2-044c82007a56))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8765a80c-8fb1-4b5f-9865-e1f0d1dc2e31))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5493864b-baa9-4160-8af3-e4ab4aa031cd))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e11c6dbe-6d9e-4f15-8aad-bd5a832282d1))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f67cdd06-8442-4eec-a44b-3248e746d97d))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a36536fa-b785-4a50-9be0-fd14fc9371a8))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67e5917b-5992-48f4-b5e8-383171158ac7))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e952e0f0-05e6-4e93-b177-c128d775d774))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 48 "Net-(U2B--)") (pintype "passive") (tstamp d5d409de-708e-4330-b066-18a6de251565))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 49 "Net-(U2C-+)") (pintype "passive") (tstamp c3356f7c-8298-4953-b927-aae3cda4b828))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Capacitors_Immo:C_0805_2012_HandSolder_kawaii" (layer "F.Cu")
(tstamp 2b4ab5bd-34de-45f6-a638-4b29db992bb9)
(at 144.67 126.67)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Cost" "0.02")
(property "JLCpart" "C779975")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor 0805")
(property "ki_keywords" "cap capacitor")
(path "/13a5e665-2c16-46a4-888c-8a23b49d80f7")
(attr smd)
(fp_text reference "C4" (at 0.04 1.6 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp cb126a93-916c-4492-90c2-fc07a8fc233b)
)
(fp_text value "100n" (at -0.14 0.01 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 74635e4f-2529-4b2d-9e68-425e847b55a1)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6612dcb2-222f-4b9d-9cdd-9e71c1095ee8)
)
(fp_arc (start -0.254558 0.775441) (mid 0 0.67) (end 0.254558 0.775442)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f503c33f-ff1d-4420-9d3d-b138a46dd708))
(fp_arc (start 0.254558 -0.785442) (mid 0 -0.680001) (end -0.254558 -0.785443)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 24d12500-c653-4616-b1c9-a68612684a90))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62ee9760-1bc4-4d20-9271-6cad1f6b28a4))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31c429b5-40ac-4c20-8be1-bc7261d656df))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fcc8cbfd-ebc8-4740-9945-2254e6ec1f49))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb630f00-ce0c-4218-8c29-c4f211f48868))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be54bc57-6b9e-4da1-9c8d-6117438b70bc))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14e0dec1-88cd-4c5e-835c-6f16e1720c53))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 206147d3-e4cd-4d62-a18e-8738a2c07007))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee622129-a400-4814-860a-e71f178c3a2c))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp 03d65ab5-9b01-41f4-bff7-f2d2b4c8a040))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 3 "-12V") (pintype "passive") (tstamp 83a16622-e1af-4312-bb7e-a82fba969f7a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Capacitors_Immo:C_0805_2012_HandSolder_kawaii" (layer "F.Cu")
(tstamp 2c8a8140-3331-49bd-a063-fb7999e199ed)
(at 144.67 123.66)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Cost" "0.02")
(property "JLCpart" "C779975")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor 0805")
(property "ki_keywords" "cap capacitor")
(path "/8a210a99-d19e-46c6-94cc-d9287b6f9e64")
(attr smd)
(fp_text reference "C3" (at 0.04 1.6 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 283e0164-b263-44c7-bee0-f11427ac614d)
)
(fp_text value "100n" (at -0.14 0.01 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9418041c-9f42-4774-ab09-54b938702e89)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 48dfb164-f711-432c-9f83-47edb02b5c3b)
)
(fp_arc (start -0.254558 0.775441) (mid 0 0.67) (end 0.254558 0.775442)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 64c871f5-68b6-4315-9892-9734c76e2f42))
(fp_arc (start 0.254558 -0.785442) (mid 0 -0.680001) (end -0.254558 -0.785443)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 530f5b88-2153-4e04-beab-d1ef86565b0f))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38e14209-9a97-4d8b-9d10-482c68c588cf))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7eca70ca-ecf9-4711-9d10-5378a970c34d))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e82f0fc-f4aa-44a3-8bad-3139a7d05342))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f76789b7-99b5-4de2-9b48-d2ce3cdb340f))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e40ca238-1e7a-40c3-8528-c9d03abaab17))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c6987f0-a0ed-49b7-a934-d0ec4820e8a5))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28d56309-a397-4654-b790-40b3470ccc43))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f68e3a5-6b79-4bbf-bbea-4a43c2fd8b8b))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 1 "+12V") (pintype "passive") (tstamp 60f137aa-4559-4619-9920-31694db799dc))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp 9363fa87-bf59-4e24-b89b-5fd662a00c4b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 2c997cd7-ac7f-4be0-b184-da3bc7aa112b)
(at 138.065 65.405 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/34d6d267-1042-4e95-aa80-7f4bef42083a")
(attr smd)
(fp_text reference "R7" (at 0 -1.25 180 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b4b038b6-afe7-41d2-b753-ed4d238e8c28)
)
(fp_text value "33k" (at 0.03 0 180 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d4887537-fe45-443f-909a-c96840d4671b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3916cd48-bc38-4ae0-9205-5459c986035f)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f56f4364-4011-4459-97fc-67a8062afe6c))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6a10652-9ed1-4ef1-b6bd-078644f9d072))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49e86a3d-29cf-4cc8-887c-e225a22410b3))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a20a42a6-f704-434d-a329-e979409152ad))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7af214c6-5fcc-43ba-8238-feb9ab61a219))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28b5b332-e354-4d9f-ab7f-0acd654897cc))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2172517-74b7-4e7a-b6b3-4d4b53cb5edd))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01b6bfcd-9ba9-45e6-985a-787df72b3cf5))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fabedd96-c964-4bf9-8450-23802da25f53))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5cd8906-4953-4c67-9141-567c09d27d18))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 42 "Net-(U1A--)") (pintype "passive") (tstamp 836d6d00-bd59-4744-b428-286b268a6bfd))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 43 "Net-(U1B--)") (pintype "passive") (tstamp b6673d46-ac9b-4adc-a103-72f336862e5c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Capacitors_Immo:C_0805_2012_HandSolder_kawaii" (layer "F.Cu")
(tstamp 2d2a6d8c-d8f7-4e1d-a324-344d8b76133b)
(at 144.67 117.64)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Cost" "0.02")
(property "JLCpart" "C779975")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor 0805")
(property "ki_keywords" "cap capacitor")
(path "/b7832cc1-8536-4e1f-8aef-87b9cdd90e95")
(attr smd)
(fp_text reference "C1" (at 0.04 1.6 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a77834a5-bfa7-4063-b95a-2651be305e64)
)
(fp_text value "100n" (at -0.14 0.01 unlocked) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c266650d-9ce9-4a62-aa37-1436ddbc81ce)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp fcef59ac-3f5b-4f82-8a22-f4ea1cdfabe0)
)
(fp_arc (start -0.254558 0.775441) (mid 0 0.67) (end 0.254558 0.775442)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f4f62341-b7be-4085-8478-71227393cc9b))
(fp_arc (start 0.254558 -0.785442) (mid 0 -0.680001) (end -0.254558 -0.785443)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 43df8bfb-0846-4de1-bab2-13c9c2ec766d))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5eb1021c-3ae2-43f7-8dd1-cae615483bdc))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c34dbeb-2877-49a9-b0dd-5ea0807059d9))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27a1d4fc-9b89-447f-9d26-d7473b13c260))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce6d76e4-a0cd-425a-8423-0011c6411b79))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b5677fd-8504-4552-924a-e8e76cf4ade5))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a9550ba-fbd8-4a75-be62-d3ebd066712d))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55f7a5ec-ab66-4ee5-9e84-4334e0e4de1e))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2900f57-bd46-417b-be26-9e61f448e227))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 1 "+12V") (pintype "passive") (tstamp 5771cbcc-9da4-4252-b4f9-51e976810450))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp d45f43a6-2f88-4ad7-be10-d21eac844828))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_Resistors_Immo:Potentiometer_Alpha-reversable" (layer "F.Cu")
(tstamp 2d8117b0-8515-4402-b9c5-7f1b2a0a0818)
(at 140.204 92.43 90)
(descr "Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113")
(tags "potentiometer vertical 9mm single")
(property "NAME" "cv1-level")
(property "Sheetfile" "diode-ladder-filter-synth-module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Trim-potentiometer")
(property "ki_keywords" "resistor variable trimpot trimmer")
(path "/937e3f8b-0a02-49f2-81ec-af93db844f65")
(attr through_hole)
(fp_text reference "PT1" (at -3.049034 -13.185973 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 32735784-486a-451c-bfbf-1f9e1741b92f)
)
(fp_text value "100k" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48ce20bd-26d3-42fb-8de9-4e3c6889bd6c)
)
(fp_text user "${NAME}" (at 0.127 -3.048 90) (layer "B.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
(tstamp d50b41c7-2207-4160-95fd-d5172dfc2fe0)
)
(fp_text user "3" (at 3.6068 0.635 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.2) bold) (justify left bottom))
(tstamp 77c407a5-1c35-43e8-93e2-4550c1fbe81a)
)
(fp_text user "1" (at -4.445 0.635 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.2) bold) (justify left bottom))
(tstamp abe62b47-ed6a-4acc-8917-43af95023ec3)
)
(fp_text user "${NAME}" (at 1.143 -13.204 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ad4cd1ff-294b-414c-84e1-0116aeca1d10)
)
(fp_text user "${REFERENCE}" (at 0 -4.445 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp eb5349c9-f09a-47e0-960d-dfdb00486b7e)
)
(fp_line (start -4.699 0.397) (end -4.699 -1.413)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp de4c1e87-7a70-4e37-adaa-3d03585ec470))
(fp_line (start -3.699 -2.413) (end 3.699 -2.413)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp bce1be68-16bd-41dd-aca0-a84276e4af09))
(fp_line (start 3.699 1.397) (end -3.699 1.397)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp 439c1fe3-755d-4aa2-bfd2-99b483560caa))
(fp_line (start 4.699 -1.413) (end 4.699 0.397)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp 4cec363f-4bc3-4750-8547-70226f38c510))
(fp_arc (start -4.699 -1.413) (mid -4.406107 -2.120107) (end -3.699 -2.413)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp 613c95eb-614d-4412-8191-a9a3012770d4))
(fp_arc (start -3.699 1.397) (mid -4.406107 1.104107) (end -4.699 0.397)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp d6b52273-0a7d-4eca-8a8e-6e84402536db))
(fp_arc (start 3.699 -2.413) (mid 4.406107 -2.120107) (end 4.699 -1.413)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp 9fe29cdd-e756-41c8-b13d-7d7a55a6f2a0))
(fp_arc (start 4.699 0.397) (mid 4.406107 1.104107) (end 3.699 1.397)
(stroke (width 0.12) (type default)) (layer "B.SilkS") (tstamp 6dd20f89-50fc-487e-a335-8fda95bdd8f9))
(fp_line (start -4.88 -1.889) (end -4.88 -5.609)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56987d5b-639b-4a90-b2a9-76dc05d5f4e8))
(fp_line (start -4.87 -9.41) (end -4.87 -10.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcb9f45b-46e1-4737-82a2-48789f5ca689))
(fp_line (start 2.87 -12.47) (end -2.87 -12.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b883f7b-0092-41f1-95c3-2c56aae17498))
(fp_line (start 3.87 -0.889) (end -3.88 -0.889)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37e827ba-3916-4934-89c0-c443add03240))
(fp_line (start 4.87 -9.41) (end 4.87 -10.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6d6ab6d-f892-4936-a4c8-9728e7ebfcf9))
(fp_line (start 4.87 -1.889) (end 4.87 -5.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db68132f-8354-4d78-9426-31747b410a92))
(fp_arc (start -4.87 -10.47) (mid -4.284214 -11.884214) (end -2.87 -12.47)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 3b6b30ce-6682-42a1-a3c1-efab5e047366))
(fp_arc (start -3.88 -0.889) (mid -4.587107 -1.181893) (end -4.88 -1.889)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 6e3c552a-7466-4294-b812-501ceeaac51d))
(fp_arc (start 2.87 -12.47) (mid 4.284214 -11.884214) (end 4.87 -10.47)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 8c4d8743-0592-4ef2-aa9a-16ebc988d07f))
(fp_arc (start 4.87 -1.889) (mid 4.577107 -1.181893) (end 3.87 -0.889)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 68d3b38c-5cda-490c-8304-3c4edd5d052d))
(fp_line (start -6.67 -12.6) (end -6.67 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb248064-e19d-4347-bc2e-72d4634e4b72))
(fp_line (start -6.67 1.15) (end 6.67 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb789ee4-6745-49a9-8b70-318c39374b5a))
(fp_line (start 6.67 -12.6) (end -6.67 -12.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae9ad1f3-b74e-4760-96c4-1e9704d1e4d9))
(fp_line (start 6.67 1.15) (end 6.67 -12.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13a4e101-8e0f-408c-8ebb-9e60a427496f))
(fp_line (start -4.75 -1) (end -4.75 -12.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 176bfb4d-7fe0-4a77-b565-6100a57406b6))
(fp_line (start 4.75 -12.35) (end -4.75 -12.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e871139e-3e22-4b5f-9fb6-24596bb25349))
(fp_line (start 4.75 -1) (end -4.75 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ebbf34f-f82c-49a0-8f9e-6f4858005ebc))
(fp_line (start 4.75 -1) (end 4.75 -12.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 312b30e4-2a17-450d-b05d-c9db6d80b059))
(fp_circle (center 0 -7.5) (end -3.5 -7.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 00638efb-0c51-490a-9a42-cc5d9f67d50f))
(pad "" thru_hole circle (at -4.8 -7.5 270) (size 3.24 3.24) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 437b67af-ada9-4422-8304-0ab9e99429a5))
(pad "" thru_hole rect (at -2.5 0 270) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 05aff913-3d57-4fd9-bd72-306474179f71))
(pad "" thru_hole rect (at 2.5 0 270) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask") (tstamp b892e723-42e8-4b08-98be-d402a587652d))
(pad "" thru_hole circle (at 4.8 -7.5 270) (size 3.24 3.24) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 825bed6a-6a90-47fe-9604-150db4a888a0))
(pad "1" thru_hole rect (at -2.54 -1.6002 270) (size 0.899998 0.9) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 30 "Net-(J3-signal)") (pinfunction "1") (pintype "passive") (tstamp a5de0979-2577-44ad-9758-409ea1964f25))
(pad "1" smd rect (at 4.064 -0.0508 270) (size 0.899994 0.899998) (layers "B.Cu" "B.Paste" "B.Mask")
(net 30 "Net-(J3-signal)") (pinfunction "1") (pintype "passive") (tstamp 749ec1e1-5178-479e-9036-1b26bd7d5b1c))
(pad "2" thru_hole circle (at 0 0 270) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "Net-(PT1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 3bbbf8ba-61e6-465b-8582-389e938807a7))
(pad "3" smd rect (at -4.0894 0.1016 270) (size 0.899994 0.899998) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "3") (pintype "passive") (tstamp c3bb9df5-80fc-4683-bebb-df06c30450e5))