-
Notifications
You must be signed in to change notification settings - Fork 0
/
pcbDesign.kicad_pcb
5170 lines (5097 loc) · 313 KB
/
pcbDesign.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 20211014) (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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 110.14 130.49)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 0)
(scaleselection 1)
(outputdirectory "./drill files")
)
)
(net 0 "")
(net 1 "5V")
(net 2 "Net-(+5V_LED1-Pad1)")
(net 3 "Net-(+15V1-Pad1)")
(net 4 "Net-(+15V_LED1-Pad1)")
(net 5 "-5V")
(net 6 "Net-(-5V_LED1-Pad1)")
(net 7 "GND")
(net 8 "Net-(C2-Pad1)")
(net 9 "Net-(C3-Pad1)")
(net 10 "Net-(C5-Pad1)")
(net 11 "Net-(C5-Pad2)")
(net 12 "Net-(C6-Pad1)")
(net 13 "Net-(C7-Pad1)")
(net 14 "Net-(C9-Pad1)")
(net 15 "Net-(C10-Pad2)")
(net 16 "/PS/+5V")
(net 17 "Net-(C17-Pad1)")
(net 18 "Net-(C17-Pad2)")
(net 19 "Net-(Freq_Adj1-Pad2)")
(net 20 "Net-(Gain_Adj1-Pad1)")
(net 21 "Net-(Gain_Adj2-Pad1)")
(net 22 "/PS/+15V")
(net 23 "Net-(Offset1-Pad1)")
(net 24 "Net-(Offset1-Pad2)")
(net 25 "Net-(Offset1-Pad3)")
(net 26 "Signal1")
(net 27 "Net-(Q1-Pad2)")
(net 28 "Net-(Q1-Pad3)")
(net 29 "Net-(R11-Pad2)")
(net 30 "Net-(R18-Pad2)")
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 039c81aa-6bc6-4bef-b28c-45f0d328e0f7)
(at 145.42 104.14 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" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(path "/3d946742-7cf0-4248-89e9-acefcb4c842a/47fddd94-e404-47d9-8c06-6ad343708c41")
(attr smd)
(fp_text reference "R7" (at -1.25 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp add9a855-8653-4d43-919e-e4680ce03bd4)
)
(fp_text value "10K" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85a4ad36-189f-431e-ae73-ffff49891e5f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7ef3ddee-ab96-4b26-9569-46f2f248f4f5)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2d4315ca-1b32-4174-be36-04799c196db9))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 90fb82e0-f849-412e-9242-99c9f736ced6))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 69d54e97-75b6-42cd-b9be-9c9930778b4f))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a29e3d35-341a-44e0-a1f5-8c97d01ebe2d))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a73a3344-9e2d-4eff-8c99-98a47e6110dc))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp e4f64abe-9537-4cee-998f-025eb09fcb30))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3ba5234b-941b-4139-813a-94a5ae83e509))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 4d94e40a-c658-42b2-81bb-4205a24311dc))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 69577f62-687f-4de7-936e-39ced1ca3b84))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6f9f5070-da05-4f62-9415-5a3804055b2b))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 10 "Net-(C5-Pad1)") (pintype "passive") (tstamp 6c5e3ed6-e034-475f-83e5-edca49453bd0))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 11 "Net-(C5-Pad2)") (pintype "passive") (tstamp a543c67a-4d66-4031-9ed7-19f4e26f9100))
(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 "Potentiometer_THT:Potentiometer_Bourns_3296W_Vertical" (layer "F.Cu")
(tedit 5A3D4994) (tstamp 06b060b5-9cc4-4026-87ca-29d288f03403)
(at 133.62 116.14 180)
(descr "Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf")
(tags "Potentiometer vertical Bourns 3296W")
(property "Sheetfile" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(attr through_hole)
(fp_text reference "GainAdj1" (at -24.55 1.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f76368f6-8fd7-4615-b1c6-875d37c64dd0)
)
(fp_text value "100K" (at -2.54 3.67) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f7f7354-843e-429d-a3b3-3687109e04f8)
)
(fp_text user "${REFERENCE}" (at -3.175 0.005) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83ce752c-e033-4093-b8e1-d2fae8210356)
)
(fp_line (start -7.425 2.54) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp 656544c8-47c1-4d20-8209-a29947b1e757))
(fp_line (start -7.425 -2.53) (end 2.345 -2.53) (layer "F.SilkS") (width 0.12) (tstamp cc20d930-fe2b-40f8-a537-758a00a13f93))
(fp_line (start -7.425 -2.53) (end -7.425 2.54) (layer "F.SilkS") (width 0.12) (tstamp d9fdd817-79a0-4432-8f94-098a80ae8759))
(fp_line (start 2.345 -2.53) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp dc50bce1-f1bb-4304-bea6-13b9b0d82586))
(fp_line (start 2.5 -2.7) (end -7.6 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 1b80ab66-05d6-4f48-890b-cb6ca2b1d2e5))
(fp_line (start 2.5 2.7) (end 2.5 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 6bec7be2-00d6-43ee-8c32-7cbe6f02868c))
(fp_line (start -7.6 -2.7) (end -7.6 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 7be7c5dc-ec5c-4342-ad71-56a9c0cbfdf4))
(fp_line (start -7.6 2.7) (end 2.5 2.7) (layer "F.CrtYd") (width 0.05) (tstamp c6b8703d-84cd-4f36-a4e3-e9bf5fade916))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp 711c39cb-3726-4c74-b344-7d039f9aeb4a))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp 85cd5d2e-087a-4c56-997c-6edb9fc22464))
(fp_line (start -7.305 -2.41) (end -7.305 2.42) (layer "F.Fab") (width 0.1) (tstamp 89a84f49-d054-4a4f-829f-9a081e44b532))
(fp_line (start 2.225 2.42) (end 2.225 -2.41) (layer "F.Fab") (width 0.1) (tstamp b0fc22e1-ee59-43ad-bb54-401e9c6eddc4))
(fp_line (start -7.305 2.42) (end 2.225 2.42) (layer "F.Fab") (width 0.1) (tstamp b137a9e1-f42d-4dfd-9129-a236f7124abf))
(fp_line (start 2.225 -2.41) (end -7.305 -2.41) (layer "F.Fab") (width 0.1) (tstamp e2b92859-4d9e-48a1-a77f-44bc4945411a))
(fp_circle (center 0.955 1.15) (end 2.05 1.15) (layer "F.Fab") (width 0.1) (fill none) (tstamp 934dae08-b541-46fd-aa63-4c487a399581))
(pad "1" thru_hole circle (at 0 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(Gain_Adj1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 9072f17a-034f-461c-9e70-9a026a6bf822))
(pad "2" thru_hole circle (at -2.54 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(Gain_Adj1-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 56395715-f21c-4152-b770-6272d9af24c8))
(pad "3" thru_hole circle (at -5.08 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C5-Pad1)") (pinfunction "3") (pintype "passive") (tstamp d0b29519-3e30-43d0-a1ba-b670268660f8))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3296W_Vertical.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")
(tedit 5F68FEEE) (tstamp 07f411f9-5fd6-40cf-bc09-566f48aea1f9)
(at 127.92 121.64 90)
(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" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(path "/3d946742-7cf0-4248-89e9-acefcb4c842a/bc2062b5-1863-43e3-a03d-94d3aad50daa")
(attr smd)
(fp_text reference "R3" (at -2.75 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9ea1884-d0a3-40c4-8a44-db400ac3e588)
)
(fp_text value "1K" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f03857bf-3511-40b9-959d-d0529bdeafbd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8908577c-b9f7-48b3-a778-221dc057476e)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 0d2feed9-e57e-4cde-9833-0c7c5e95e505))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp aa90ca5f-dccd-4678-89e2-0fc0860ed5f8))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9fb17394-dcbe-48a5-b043-188b283867db))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp abda56ec-cde2-4d5a-ab1a-0e62f973a63e))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp b4f0e82b-f2e2-40f7-be3a-5c399c378f50))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp be9cbd59-331d-4a86-ad09-333485fd3f59))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 66241a01-9235-4e01-b91a-e8a6036f8bff))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e8844e03-298e-4aa4-ac08-207394e126ec))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f429e4c2-ef2d-46f0-aed2-d713eb4ca922))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp fbd30ca7-c1a9-4f2a-a210-7cf7632ba647))
(pad "1" smd roundrect (at -1 0 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 25 "Net-(Offset1-Pad3)") (pintype "passive") (tstamp d9c24893-b4bf-4c6f-87d1-0305db91b3a8))
(pad "2" smd roundrect (at 1 0 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 5 "-5V") (pintype "passive") (tstamp f736e488-b4f8-4f22-81cc-1696c883f898))
(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 "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 0af05c8f-81fb-43d1-8d97-f6daf13193bf)
(at 123.42 83.89)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "signal_gen.kicad_sch")
(property "Sheetname" "signal_gen")
(path "/26edbdbe-1c28-47a5-998c-eeba47c08108/7bd3dd0c-fea4-4256-83c4-04f2bcb11db4")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe1b1161-865e-4622-87f1-f67a547384e5)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26315923-88da-4161-940a-3a3aa4b61e95)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e451514-3b31-41c4-ae4c-ab0db10cd5a0)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp b319b28f-c3b5-4886-8c7a-deb5b462d798))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 869d1bc1-eee1-4174-91b2-4b4dc40edc1a))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 07da1715-3057-41c7-bee8-0574ff06640b))
)
(footprint "elab_PCB_Design:C 0805" (layer "F.Cu")
(tedit 0) (tstamp 10081550-2e0f-4610-bce9-4766ddd38ca2)
(at 145.2725 95.965 -90)
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(path "/8e67a5af-a914-4290-a48f-7d5f2730ea38/e2b46974-e468-4baa-9a3a-0c7b56429d02")
(attr smd)
(fp_text reference "C14" (at -0.325 -0.6475 -90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.125)))
(tstamp 17bd1c07-4f89-4007-8f79-54b1ee44ce2e)
)
(fp_text value "10n" (at -0.05 -2.05 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50fbd794-75f1-4024-abd1-ea708d25ba61)
)
(fp_text user "${REFERENCE}" (at -0.075 0.95 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 66471144-5bfa-4b0e-b481-5bd62d5215b3)
)
(fp_line (start -0.336252 1.685) (end 0.186252 1.685) (layer "F.SilkS") (width 0.12) (tstamp 3f5fad6b-5f09-41ec-ab6d-6d74964a674e))
(fp_line (start -0.336252 0.215) (end 0.186252 0.215) (layer "F.SilkS") (width 0.12) (tstamp 91b1adcf-c72f-4af4-86ad-03bcd7e7baac))
(fp_line (start -1.955 -0.03) (end 1.805 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 0cecc22d-1af4-4da7-ac0e-f7db319bd7d6))
(fp_line (start 1.805 1.93) (end -1.955 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 12e69bd2-7dab-4805-8229-a9759c63ca32))
(fp_line (start 1.805 -0.03) (end 1.805 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 144a2e21-0de7-47f3-a13b-b6f4b5b3f504))
(fp_line (start -1.955 1.93) (end -1.955 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 8c736529-486f-4601-a1ad-4279cc79cfaa))
(fp_line (start 0.925 0.325) (end 0.925 1.575) (layer "F.Fab") (width 0.1) (tstamp 5ee9484e-abdd-49ec-b2e5-b7a3fcd5b757))
(fp_line (start -1.075 1.575) (end -1.075 0.325) (layer "F.Fab") (width 0.1) (tstamp 6e346ac8-91f6-44eb-af36-c6e0ea3f3267))
(fp_line (start 0.925 1.575) (end -1.075 1.575) (layer "F.Fab") (width 0.1) (tstamp 9ca69ef4-1ac2-4151-ac65-abf2277850ca))
(fp_line (start -1.075 0.325) (end 0.925 0.325) (layer "F.Fab") (width 0.1) (tstamp f623a938-b72a-41bf-85c4-c0000c039cc5))
(pad "1" smd roundrect (at -1.1125 0.95 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 16 "/PS/+5V") (pintype "passive") (tstamp a4760665-9327-4946-be88-fc14175e4036))
(pad "2" smd roundrect (at 0.9625 0.95 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 7 "GND") (pintype "passive") (tstamp 8c8fffba-b1a2-4e6b-a644-f39ddba71634))
)
(footprint "TestPoint:TestPoint_Keystone_5000-5004_Miniature" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 13c98c9c-5e61-4388-b9e7-87eff565ff69)
(at 158.67 109.39 -90)
(descr "Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309")
(tags "Through Hole Mount Test Points")
(property "Sheetfile" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(attr through_hole)
(fp_text reference "Sig_Test" (at 0.25 -2.25 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 601abdb7-c795-41a4-a250-f320ef1380b6)
)
(fp_text value "TestPoint" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f0684a4-fab0-4e33-a6e1-ee35d02bf70d)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 060b25df-96e8-49d3-bd52-6ec75ebe1ce6)
)
(fp_circle (center 0 0) (end 1.4 0) (layer "F.SilkS") (width 0.15) (fill none) (tstamp ae46cc40-ceb9-41cf-bba1-7a5189d96489))
(fp_circle (center 0 0) (end 1.65 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 89b46f3b-a43c-4bb1-8ac9-b423dbd7a7e8))
(fp_line (start -0.75 -0.25) (end 0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp 19c085f9-80c0-45ef-8532-afc3763ead9b))
(fp_line (start 0.75 0.25) (end -0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp 667e2645-e1f0-448f-af9a-897c29377b0a))
(fp_line (start 0.75 -0.25) (end 0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp 8f8ffecf-55c0-497b-aa5d-063df5194863))
(fp_line (start -0.75 0.25) (end -0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp e9a49f92-062b-4e6f-91f4-7fce0e8a16f5))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp b33b509d-f8dc-4e2d-8085-c254ef6144e6))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(C10-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 42913698-727b-494c-855b-eb781f2d2e6f))
(model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Keystone_5000-5004_Miniature.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")
(tedit 5F68FEEE) (tstamp 18b061a6-9fa3-415d-8ed9-6f6e7071a03b)
(at 152.42 104.39 -90)
(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" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(path "/3d946742-7cf0-4248-89e9-acefcb4c842a/797d2c34-a831-49ae-8662-bd4c01302f03")
(attr smd)
(fp_text reference "R11" (at 0.5 -1.5 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 1dace9b0-d519-417b-963b-047008598867)
)
(fp_text value "25" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22fd3099-33fe-4db4-95cc-ef30ddcafddd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e33819be-ca47-45e9-b146-b8472d070e6f)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 8daab0b9-1492-44cd-84af-9f6dfc0c24bd))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp f98f31f2-392b-4a20-a67a-83367c88d44a))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 47a15e89-cfb8-4ccc-8d36-2a61551afc7c))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 74cdd983-b9c2-4c2f-8040-9f743b0af2a5))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c3e0a3de-87ce-41c9-84d2-d400c057dc8e))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp de215743-03e2-4966-a32a-b0a2e58631d7))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 24874f9a-36a4-47d5-9dd3-e033cc8e9a39))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 42af95de-b81d-4393-9440-687540f78bb0))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7e92b535-2220-4d20-be01-1b7361c15757))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9835c2d9-ba41-482f-83a0-217901769a8f))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 7 "GND") (pintype "passive") (tstamp 682c91e3-b835-4481-a8a5-3afb4ada8243))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 29 "Net-(R11-Pad2)") (pintype "passive") (tstamp d206b2cb-1af8-4c2a-8554-0dad26fd1b80))
(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 "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 21dbad39-5d0c-48ac-b0c4-3fdb1c85955d)
(at 132.17 104.14 90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "signal_gen.kicad_sch")
(property "Sheetname" "signal_gen")
(path "/26edbdbe-1c28-47a5-998c-eeba47c08108/a2bb9df1-94e5-4b49-bea6-7d56124d3fc0")
(attr smd)
(fp_text reference "Q1" (at 2.5 0 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 19875452-9505-4bea-b91c-fc32a72269ae)
)
(fp_text value "DMN10H700S" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e5a91ed-6345-477f-b5a0-78990e4c9ca1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 1961c027-e006-47d7-a707-3cd8e4efb0cb)
)
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 394ef4e6-46e2-40a7-8902-1fa6d672c4cc))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 3b05c6cf-4969-462e-a22b-d8ce9bb829ad))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 553725b1-8ea1-48e7-ade5-efbbd89f7fd5))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp d4511a00-3f08-4492-af5f-c06b9a38503d))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 28dd8296-3b56-4149-9d64-c7d1a228e5c8))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 87f8f64a-84f8-45ba-81d7-021360285f00))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp dd5c618e-ca76-416e-891f-97072d0256b6))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp f63071b2-a532-4646-b140-3cbd7ca668a0))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 0028e37d-3af8-4b85-8075-f5120c8dc7dd))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 29e9f898-e1cc-4bbe-a860-4d8c03df31dd))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 4be846af-90ee-4cd0-b856-cc9e3474222c))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp a7e759de-e6e2-4abd-acd6-3c0f4ff4f7cb))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp e25693fe-bc3e-430d-bfd1-b35493d5e32e))
(pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Signal1") (pinfunction "G") (pintype "input") (tstamp 48819fd6-59c6-4583-b41e-d06eccdf4c67))
(pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(Q1-Pad2)") (pinfunction "S") (pintype "passive") (tstamp 33ad5444-4f67-4ce2-90ed-05b83d53235f))
(pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(Q1-Pad3)") (pinfunction "D") (pintype "passive") (tstamp de223f41-3bc4-47c1-a900-5b2175b15cfd))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.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")
(tedit 5F68FEEE) (tstamp 29d69099-efa6-4756-b7d9-6170dda669fd)
(at 148.17 91.64)
(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" "PS.kicad_sch")
(property "Sheetname" "PS")
(path "/8e67a5af-a914-4290-a48f-7d5f2730ea38/581032e7-5563-4b94-a005-cf7af48cb2d0")
(attr smd)
(fp_text reference "R16" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 783cc15d-0a75-4c1f-9b74-faaa9787aa25)
)
(fp_text value "0R" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b6aec98-cc8b-4ab1-b47e-dc4a8c73d1ae)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3eb9bcc4-d9f1-454d-9ed4-5d886a480c1b)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp ad7df16e-f561-42a5-84d2-5057a4eb2893))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e9c5133a-3338-4461-bf0d-5a3c7be1a579))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 196128ee-6c74-43d6-9051-46fbd63b5cd2))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cd2f6ef9-be3c-44ee-818d-317323bfea05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d5b72ff8-f1af-4d83-b6c4-965198f26846))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f6ebf55b-3671-48e5-8ecf-5fa86a113ef3))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1f1a22e5-24a7-4d63-a0f8-e5895eae91c1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3d45339a-54b7-4317-a30a-fc49a680e24c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 8094c6ad-0665-40b3-be08-f5d9b822932f))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e86992cf-a213-4952-b4cc-7b100ff6e891))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 16 "/PS/+5V") (pintype "passive") (tstamp 865a0ddf-7f3e-4981-8f1e-0a265d12114c))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 1 "5V") (pintype "passive") (tstamp 2b0f8967-a015-4c5a-977a-ef7cb66d6322))
(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 "elab_PCB_Design:C 0805" (layer "F.Cu")
(tedit 0) (tstamp 2f0349c1-5895-40d4-b272-471eee7d7836)
(at 151.7725 95.465 -90)
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(path "/8e67a5af-a914-4290-a48f-7d5f2730ea38/e3dbcd43-db40-4b3a-a2e0-53f8727aeaab")
(attr smd)
(fp_text reference "C19" (at -0.075 -0.3975 -90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0a9b3f80-9f54-4904-b011-13d22a5d7a47)
)
(fp_text value "10n" (at -0.05 -2.05 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92ccbd89-3d57-40c6-95d0-c0d0fed78392)
)
(fp_text user "${REFERENCE}" (at -0.075 0.95 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d3c95065-b12b-4e94-93f6-f5e3ab61166a)
)
(fp_line (start -0.336252 1.685) (end 0.186252 1.685) (layer "F.SilkS") (width 0.12) (tstamp a3f15628-df37-4633-b7e6-72117b560c54))
(fp_line (start -0.336252 0.215) (end 0.186252 0.215) (layer "F.SilkS") (width 0.12) (tstamp d8000777-7ad4-489f-b193-01f60b2c570b))
(fp_line (start 1.805 1.93) (end -1.955 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 51d09d76-b149-44f6-9322-78ef63991042))
(fp_line (start 1.805 -0.03) (end 1.805 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 678b5d85-c1ff-4417-9b0d-e1f2bbb7ece4))
(fp_line (start -1.955 -0.03) (end 1.805 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp bd829bd5-3f5a-45a9-9b53-bb3a7e7ef8dc))
(fp_line (start -1.955 1.93) (end -1.955 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp d402490b-41ea-428d-ad10-26750043882e))
(fp_line (start -1.075 0.325) (end 0.925 0.325) (layer "F.Fab") (width 0.1) (tstamp 0ca564a8-155d-45c9-9e5e-44403ceac114))
(fp_line (start 0.925 1.575) (end -1.075 1.575) (layer "F.Fab") (width 0.1) (tstamp 10b1df66-1240-4728-9436-a5f13065324f))
(fp_line (start 0.925 0.325) (end 0.925 1.575) (layer "F.Fab") (width 0.1) (tstamp 9b282a32-c288-4449-ad68-57225075c4b2))
(fp_line (start -1.075 1.575) (end -1.075 0.325) (layer "F.Fab") (width 0.1) (tstamp d7c0bcdd-8901-49b7-a046-1d70190cc9b4))
(pad "1" smd roundrect (at -1.1125 0.95 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 5 "-5V") (pintype "passive") (tstamp c22f070b-1035-40a1-a39d-2dafcfff1163))
(pad "2" smd roundrect (at 0.9625 0.95 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 7 "GND") (pintype "passive") (tstamp 1b7e8a9e-c981-4803-aec7-3bd869a0f664))
)
(footprint "Potentiometer_THT:Potentiometer_Bourns_3296W_Vertical" (layer "F.Cu")
(tedit 5A3D4994) (tstamp 34cbd8cd-a92a-4658-8384-f9c034b8b041)
(at 144.62 121.89 180)
(descr "Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf")
(tags "Potentiometer vertical Bourns 3296W")
(property "Sheetfile" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(attr through_hole)
(fp_text reference "GainAdj2" (at -13.8 4.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b70ba67-79b2-427a-8f45-bd2fd1d325d6)
)
(fp_text value "100K" (at -2.54 3.67) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3e8a175-6364-475c-a868-01fd2d4cb86e)
)
(fp_text user "${REFERENCE}" (at -3.175 0.005) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27374271-0e30-47ee-9008-ceb48b55baf8)
)
(fp_line (start 2.345 -2.53) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp 1585e87f-f52f-4865-9312-376a721f9004))
(fp_line (start -7.425 -2.53) (end 2.345 -2.53) (layer "F.SilkS") (width 0.12) (tstamp 91c259a3-398b-461c-9878-41c85f74d2f1))
(fp_line (start -7.425 2.54) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp bc6ca2be-f7ea-43e1-9ffa-77a86395d6d7))
(fp_line (start -7.425 -2.53) (end -7.425 2.54) (layer "F.SilkS") (width 0.12) (tstamp f9cc27eb-2906-4382-86a8-5740b8c7e289))
(fp_circle (center 1.225 1.45) (end 0.625 0.725) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b68c0fde-ff08-4cd2-a5c9-ac3c859e4c6f))
(fp_line (start 2.5 2.7) (end 2.5 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 3f2722b3-4c08-4b3b-b101-35c784d60f5a))
(fp_line (start -7.6 -2.7) (end -7.6 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 6c7c51aa-ca7b-4d42-a038-4e257a267f13))
(fp_line (start -7.6 2.7) (end 2.5 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 75cc37b7-56c1-4efa-8a8e-5b6360a1d11a))
(fp_line (start 2.5 -2.7) (end -7.6 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp d50cbf41-0653-4e99-9cb6-c820cdffda94))
(fp_line (start 2.225 2.42) (end 2.225 -2.41) (layer "F.Fab") (width 0.1) (tstamp 0c8e3f32-7ae4-49f8-b00a-6f0b025c8671))
(fp_line (start -7.305 -2.41) (end -7.305 2.42) (layer "F.Fab") (width 0.1) (tstamp 0f83bd28-a11a-4c22-bc76-1d44b176f66d))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp 3cfa969f-3237-4509-b72c-0132974e899f))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp c2f0adef-4fa6-49a4-9c02-0d0081b10426))
(fp_line (start 2.225 -2.41) (end -7.305 -2.41) (layer "F.Fab") (width 0.1) (tstamp e091cc15-7c35-4dbd-930c-a204a41bb6b6))
(fp_line (start -7.305 2.42) (end 2.225 2.42) (layer "F.Fab") (width 0.1) (tstamp fba74d50-8284-4fba-913d-5c2b589bb5c0))
(fp_circle (center 0.955 1.15) (end 2.05 1.15) (layer "F.Fab") (width 0.1) (fill none) (tstamp 573439f9-51fb-42fc-a6ef-a2fcfeadc16c))
(pad "1" thru_hole circle (at 0 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(Gain_Adj2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 21811f9b-82e0-47bc-a6ce-7fc4a243fad8))
(pad "2" thru_hole circle (at -2.54 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(Gain_Adj2-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 0f63c0d6-c4a3-4e60-bee1-963c007087cb))
(pad "3" thru_hole circle (at -5.08 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(C9-Pad1)") (pinfunction "3") (pintype "passive") (tstamp 5fc7635b-b8b1-4fc2-b9fa-4ea5ab837562))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3296W_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Bourns_3296W_Vertical" (layer "F.Cu")
(tedit 5A3D4994) (tstamp 3b876e37-286b-41cb-b99e-0ac89c0bc0ca)
(at 122.87 116.14 180)
(descr "Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf")
(tags "Potentiometer vertical Bourns 3296W")
(property "Sheetfile" "signal_gen.kicad_sch")
(property "Sheetname" "signal_gen")
(attr through_hole)
(fp_text reference "Freq_Adj" (at -28.3 1.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8126b34-0823-45f5-8be6-42c8e00b6b51)
)
(fp_text value "100K" (at -2.54 3.67) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp acbe5ad2-2d1f-4395-9c2a-307167f4097b)
)
(fp_text user "${REFERENCE}" (at -3.175 0.005) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7ff9063-d3e4-4ce7-a3b3-2c096745a52d)
)
(fp_line (start -7.425 -2.53) (end -7.425 2.54) (layer "F.SilkS") (width 0.12) (tstamp 2785bb38-0249-45fa-b858-1401959add00))
(fp_line (start -7.425 2.54) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp 406d9efb-ca09-47e3-b9b8-b63fcf8b9723))
(fp_line (start 2.345 -2.53) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp 9917c813-31b5-4160-a808-29038d779cd1))
(fp_line (start -7.425 -2.53) (end 2.345 -2.53) (layer "F.SilkS") (width 0.12) (tstamp cec91890-b224-4c19-b914-5cbb3c163c78))
(fp_line (start 2.5 2.7) (end 2.5 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 2771f6a8-b19b-40eb-abd4-97f9c7e3e7d3))
(fp_line (start -7.6 -2.7) (end -7.6 2.7) (layer "F.CrtYd") (width 0.05) (tstamp c54f38ae-89d2-4346-8ae2-31e39a575f12))
(fp_line (start -7.6 2.7) (end 2.5 2.7) (layer "F.CrtYd") (width 0.05) (tstamp d94c8a05-35c8-4f1b-8c09-1aacfda12bea))
(fp_line (start 2.5 -2.7) (end -7.6 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp d95b3c62-c54d-48ad-8476-df6eb9dc21e3))
(fp_line (start 2.225 2.42) (end 2.225 -2.41) (layer "F.Fab") (width 0.1) (tstamp 06ead5b2-05a3-4941-8bc9-d5b640b8c169))
(fp_line (start 2.225 -2.41) (end -7.305 -2.41) (layer "F.Fab") (width 0.1) (tstamp 17391ca8-2d5e-4bb6-95f5-bee1398a8c6d))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp 66dc4b92-5a76-442b-a484-1ae5b17c191d))
(fp_line (start -7.305 2.42) (end 2.225 2.42) (layer "F.Fab") (width 0.1) (tstamp 9516f3cf-04b7-4930-9900-3a628c0ebd19))
(fp_line (start -7.305 -2.41) (end -7.305 2.42) (layer "F.Fab") (width 0.1) (tstamp f241a444-ebb9-4ffc-958d-c52aef064c44))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp f2da228c-00da-4baf-b3e8-afb37db3eeef))
(fp_circle (center 0.955 1.15) (end 2.05 1.15) (layer "F.Fab") (width 0.1) (fill none) (tstamp f0f28c59-889a-4866-8fa9-6983022ee28c))
(pad "1" thru_hole circle (at 0 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "5V") (pinfunction "1") (pintype "passive") (tstamp 9bf2809a-30ce-4b7a-9859-cf6423c32889))
(pad "2" thru_hole circle (at -2.54 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(Freq_Adj1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 1c0b1b89-b486-485d-ab8b-1ef794085474))
(pad "3" thru_hole circle (at -5.08 0 180) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(Freq_Adj1-Pad2)") (pinfunction "3") (pintype "passive") (tstamp fc5aa052-506f-498e-9d72-316a8f7859e3))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3296W_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "elab_PCB_Design:C 0805" (layer "F.Cu")
(tedit 0) (tstamp 3bb61e0b-5e8c-41a9-bedd-eed8a50ee439)
(at 145.2725 100.215 -90)
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(path "/8e67a5af-a914-4290-a48f-7d5f2730ea38/e8f2c84e-1929-4c74-81d1-51f2d927cb4a")
(attr smd)
(fp_text reference "C15" (at -0.325 -0.6475 -90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4336e6da-20af-475f-8cb4-5eb5aecbf539)
)
(fp_text value "10n" (at -0.05 -2.05 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1226d39f-b11b-4828-b75e-7134dcbf288d)
)
(fp_text user "${REFERENCE}" (at -0.075 0.95 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8d3ef9ad-9904-4394-838e-39ca003201b8)
)
(fp_line (start -0.336252 0.215) (end 0.186252 0.215) (layer "F.SilkS") (width 0.12) (tstamp 4d379432-5971-41b9-b84a-76309d933f6d))
(fp_line (start -0.336252 1.685) (end 0.186252 1.685) (layer "F.SilkS") (width 0.12) (tstamp f24267f8-f437-4ef4-850b-4242e1b99052))
(fp_line (start -1.955 1.93) (end -1.955 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 1a5b4d2c-669b-40f5-b004-9c5bc904d24b))
(fp_line (start 1.805 1.93) (end -1.955 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 7d4c5537-05ea-4ac4-ae61-63d7a91b52c5))
(fp_line (start -1.955 -0.03) (end 1.805 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp b928b2b7-de7a-488c-a398-98331f5685f6))
(fp_line (start 1.805 -0.03) (end 1.805 1.93) (layer "F.CrtYd") (width 0.05) (tstamp ed6cb6da-9e6b-4ce4-821d-345cd8c418e5))
(fp_line (start 0.925 0.325) (end 0.925 1.575) (layer "F.Fab") (width 0.1) (tstamp 029f5790-2622-4f62-896c-b340eab60197))
(fp_line (start -1.075 0.325) (end 0.925 0.325) (layer "F.Fab") (width 0.1) (tstamp d2c6f32c-b0dd-433f-9bed-b27c47bba224))
(fp_line (start -1.075 1.575) (end -1.075 0.325) (layer "F.Fab") (width 0.1) (tstamp d34b9744-aaa1-4609-8c93-b5706de26ca4))
(fp_line (start 0.925 1.575) (end -1.075 1.575) (layer "F.Fab") (width 0.1) (tstamp ea92dfbd-29ff-49dc-99d5-7eebbb1cd4b7))
(pad "1" smd roundrect (at -1.1125 0.95 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "5V") (pintype "passive") (tstamp b8b48ad2-0bb5-478b-95d6-1d67ba9c7804))
(pad "2" smd roundrect (at 0.9625 0.95 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 7 "GND") (pintype "passive") (tstamp ae00220c-1158-484d-884d-d03080cd0b76))
)
(footprint "elab_PCB_Design:C 0805" (layer "F.Cu")
(tedit 0) (tstamp 3cb157db-656d-4de2-97f6-7bbe8f4a7b9b)
(at 138.8175 105.315 90)
(property "Sheetfile" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(path "/3d946742-7cf0-4248-89e9-acefcb4c842a/a3735504-b9bb-4c53-8f6c-cd506eba84a2")
(attr smd)
(fp_text reference "C8" (at 2.425 1.8525 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2b3ec706-162b-4476-9462-e1434bd14464)
)
(fp_text value "DNP" (at -0.05 -2.05 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 254f1a4f-e365-4f87-8c6a-15da35bd665b)
)
(fp_text user "${REFERENCE}" (at -0.075 0.95 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 881b199f-11b8-4d53-9f43-21988df460d2)
)
(fp_line (start -0.336252 1.685) (end 0.186252 1.685) (layer "F.SilkS") (width 0.12) (tstamp 1f80a9cc-b26e-4d50-ab9d-dfd55818dca1))
(fp_line (start -0.336252 0.215) (end 0.186252 0.215) (layer "F.SilkS") (width 0.12) (tstamp 1fd1f698-2cfd-4cfc-b1be-cab23b5d627e))
(fp_line (start 1.805 1.93) (end -1.955 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 0cf826bc-586d-43fa-8c81-0c5e4941bd7c))
(fp_line (start -1.955 1.93) (end -1.955 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp b022a003-b996-4eaf-8c80-8641a1afde72))
(fp_line (start 1.805 -0.03) (end 1.805 1.93) (layer "F.CrtYd") (width 0.05) (tstamp b9e0f2f6-76f3-42a1-b571-041cc66212cc))
(fp_line (start -1.955 -0.03) (end 1.805 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp e1b68f27-aa24-451d-985e-219f724ea6d5))
(fp_line (start 0.925 0.325) (end 0.925 1.575) (layer "F.Fab") (width 0.1) (tstamp 0140d98e-f6ef-4cd1-87ac-2dbfe1b48885))
(fp_line (start -1.075 1.575) (end -1.075 0.325) (layer "F.Fab") (width 0.1) (tstamp 1e6c897c-4f69-46fd-aeb3-619532f2f086))
(fp_line (start -1.075 0.325) (end 0.925 0.325) (layer "F.Fab") (width 0.1) (tstamp a025220c-cedb-45e6-a664-ce862cc08096))
(fp_line (start 0.925 1.575) (end -1.075 1.575) (layer "F.Fab") (width 0.1) (tstamp d476440a-e994-4f67-a3e4-cee432bddc60))
(pad "1" smd roundrect (at -1.1125 0.95 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 7 "GND") (pintype "passive") (tstamp bc3e979e-76ab-49fc-870c-ef0afecaa4ef))
(pad "2" smd roundrect (at 0.9625 0.95 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 11 "Net-(C5-Pad2)") (pintype "passive") (tstamp f732fa82-3a52-4357-872b-a8aee6660676))
)
(footprint "elab_PCB_Design:NE555DR" (layer "F.Cu")
(tedit 0) (tstamp 3f1e936f-b93c-48ab-97c8-06b88e3af047)
(at 133.474 106.6235 -90)
(property "Sheetfile" "signal_gen.kicad_sch")
(property "Sheetname" "signal_gen")
(path "/26edbdbe-1c28-47a5-998c-eeba47c08108/9cec2eff-bf7d-445e-a983-6a3b144b025d")
(attr smd)
(fp_text reference "U1" (at -4.4835 6.054 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ed2f9891-6f3f-4161-a0ca-36c45f73a8c4)
)
(fp_text value "NE555P" (at 0 1 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a38331d-5f8a-4bd4-bb31-83122d16b33c)
)
(fp_text user "${REFERENCE}" (at 0 2.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b089f9b4-ac1e-44f5-bfa3-00f1c2f488d0)
)
(fp_text user "NE555DR" (at -0.2335 6.133 90) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp cd72195a-0baf-4f0c-9ca2-2e6cbba66169)
)
(fp_line (start -0.2335 3.573) (end 1.7165 3.573) (layer "F.SilkS") (width 0.12) (tstamp 848120ad-ebc0-497c-987d-696767de6c19))
(fp_line (start -0.2335 8.693) (end 1.7165 8.693) (layer "F.SilkS") (width 0.12) (tstamp ad1e20e1-8b97-4cfe-851f-3546dba0ea15))
(fp_line (start -0.2335 3.573) (end -3.6835 3.573) (layer "F.SilkS") (width 0.12) (tstamp d2e4004c-3b35-482d-bcd8-325ba50c7e43))
(fp_line (start -0.2335 8.693) (end -2.1835 8.693) (layer "F.SilkS") (width 0.12) (tstamp d30694e6-1a7d-46a8-88b7-64ed0180999f))
(fp_line (start -3.9335 8.833) (end 3.4665 8.833) (layer "F.CrtYd") (width 0.05) (tstamp 1e3c218c-a186-46fd-83ab-c5cebdf6db8d))
(fp_line (start 3.4665 8.833) (end 3.4665 3.433) (layer "F.CrtYd") (width 0.05) (tstamp 96ad910b-416a-4912-bc48-05bfaaaf12a2))
(fp_line (start 3.4665 3.433) (end -3.9335 3.433) (layer "F.CrtYd") (width 0.05) (tstamp aafbbdfc-ac5e-4545-b6cd-f89c1467e02f))
(fp_line (start -3.9335 3.433) (end -3.9335 8.833) (layer "F.CrtYd") (width 0.05) (tstamp e855bf5c-6ef4-4d40-a259-e5740cd05a11))
(fp_line (start 1.7165 3.683) (end 1.7165 8.583) (layer "F.Fab") (width 0.1) (tstamp 700e601a-3516-4932-a356-0fd3424707e1))
(fp_line (start -2.1835 4.658) (end -1.2085 3.683) (layer "F.Fab") (width 0.1) (tstamp 712df77c-462f-40bf-9338-8e845b7448ad))
(fp_line (start 1.7165 8.583) (end -2.1835 8.583) (layer "F.Fab") (width 0.1) (tstamp 86e6ca8f-4ae2-4168-9dd6-8dfffd26c0fa))
(fp_line (start -2.1835 8.583) (end -2.1835 4.658) (layer "F.Fab") (width 0.1) (tstamp 9d49b9be-77fc-4e96-9c5f-3207baf9dc34))
(fp_line (start -1.2085 3.683) (end 1.7165 3.683) (layer "F.Fab") (width 0.1) (tstamp f8da9c18-a907-4c12-80cc-2dd182e57ba1))
(pad "1" smd roundrect (at -2.7085 4.228 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cdaf1b02-435c-4e55-bb3f-3e82ed4fa284))
(pad "2" smd roundrect (at -2.7085 5.498 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(C2-Pad1)") (pinfunction "TR") (pintype "input") (tstamp 8b0d543f-54c7-431a-b857-0ec8a8da02c7))
(pad "3" smd roundrect (at -2.7085 6.768 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Signal1") (pinfunction "Q") (pintype "output") (tstamp 12b7316e-4fc5-4b1b-9f5d-4b90d692d009))
(pad "4" smd roundrect (at -2.7085 8.038 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "5V") (pinfunction "R") (pintype "input") (tstamp 4472f724-e96f-44e4-b347-bb4f9cba5a41))
(pad "5" smd roundrect (at 2.2415 8.038 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C3-Pad1)") (pinfunction "CV") (pintype "input") (tstamp 69e3dc7c-006d-4e15-a9c3-74da79bad543))
(pad "6" smd roundrect (at 2.2415 6.768 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(C2-Pad1)") (pinfunction "THR") (pintype "input") (tstamp ad07d717-8a3d-4f6d-bccb-055808503430))
(pad "7" smd roundrect (at 2.2415 5.498 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(Freq_Adj1-Pad2)") (pinfunction "DIS") (pintype "input") (tstamp 6f7266b5-1ce7-40a6-b7b8-307d73314fcd))
(pad "8" smd roundrect (at 2.2415 4.228 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "5V") (pinfunction "VCC") (pintype "power_in") (tstamp db3ffaf5-8e07-4ec6-92aa-58c975ad608c))
)
(footprint "elab_PCB_Design:C 0805" (layer "F.Cu")
(tedit 0) (tstamp 52cd5cbd-9e86-45e4-a234-9cd1ee04b956)
(at 154.5675 109.065 90)
(property "Sheetfile" "signal_condition.kicad_sch")
(property "Sheetname" "signal_condition")
(path "/3d946742-7cf0-4248-89e9-acefcb4c842a/3f44d2cb-f7e4-41f5-acc8-d2711defc51a")
(attr smd)
(fp_text reference "C9" (at -2.825 1.1025 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d6a6f34-1f23-4c85-ad8d-8504ba6f4218)
)
(fp_text value "22p" (at -0.05 -2.05 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dba71f1e-d30f-46b1-80bb-d9e46b671539)
)
(fp_text user "${REFERENCE}" (at -0.075 0.95 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 41ecd843-0ef9-4739-b410-98c4690e0497)
)
(fp_line (start -0.336252 1.685) (end 0.186252 1.685) (layer "F.SilkS") (width 0.12) (tstamp 45e8f1f2-5906-4acf-8494-1c0faa0abbf1))
(fp_line (start -0.336252 0.215) (end 0.186252 0.215) (layer "F.SilkS") (width 0.12) (tstamp 865051e5-5a8a-4e4f-a627-f41550346763))
(fp_line (start -1.955 1.93) (end -1.955 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 404a4915-8dfe-4704-a88d-a93a4caec1be))
(fp_line (start -1.955 -0.03) (end 1.805 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 8f59b4eb-ff5c-430e-b688-1c5a0b4adbb4))
(fp_line (start 1.805 1.93) (end -1.955 1.93) (layer "F.CrtYd") (width 0.05) (tstamp da6a5306-598b-450e-9160-68d5683e8825))
(fp_line (start 1.805 -0.03) (end 1.805 1.93) (layer "F.CrtYd") (width 0.05) (tstamp efc9356c-aa0f-415f-bc40-41aa02d72b5f))
(fp_line (start -1.075 1.575) (end -1.075 0.325) (layer "F.Fab") (width 0.1) (tstamp 125ac884-1ee1-4108-b2f4-9eb9aa4c6ed9))
(fp_line (start 0.925 0.325) (end 0.925 1.575) (layer "F.Fab") (width 0.1) (tstamp 4af8dd50-9a8a-4648-9156-321b9ebcf695))
(fp_line (start 0.925 1.575) (end -1.075 1.575) (layer "F.Fab") (width 0.1) (tstamp 95a6df78-a39e-4099-bf52-d2a3803f2d66))
(fp_line (start -1.075 0.325) (end 0.925 0.325) (layer "F.Fab") (width 0.1) (tstamp f6a739b3-fdf4-4ba4-ad45-28e541f2f01f))
(pad "1" smd roundrect (at -1.1125 0.95 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 14 "Net-(C9-Pad1)") (pintype "passive") (tstamp 17ce81b2-d1c6-405c-9abe-62ad9df5f7f4))
(pad "2" smd roundrect (at 0.9625 0.95 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 15 "Net-(C10-Pad2)") (pintype "passive") (tstamp 1ffff744-86ed-4b2b-ba5b-edf78f561709))
)
(footprint "TestPoint:TestPoint_Keystone_5000-5004_Miniature" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 534f9d59-4a73-4e05-9131-46489efe66a3)
(at 136.67 87.14)
(descr "Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309")
(tags "Through Hole Mount Test Points")
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(attr through_hole)
(fp_text reference "+15V" (at -0.5 -2) (layer "F.SilkS")
(effects (font (size 0.8 1) (thickness 0.125)))
(tstamp 85ed452c-c6e7-4f00-a34a-30cff39e3d35)
)
(fp_text value "TestPoint" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6cfa22f-5c0e-42b4-8533-8947e35873ef)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1afbb90c-3892-47ef-84c4-e63d7bf97585)
)
(fp_circle (center 0 0) (end 1.4 0) (layer "F.SilkS") (width 0.15) (fill none) (tstamp b0e56f78-8b44-45d6-9a25-480d566b56cd))
(fp_circle (center 0 0) (end 1.65 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5c8ffaf0-969d-48fa-beb4-b6842f043a16))
(fp_line (start 0.75 -0.25) (end 0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp 383106f5-5cfc-432b-ae09-2af80db40450))
(fp_line (start -0.75 -0.25) (end 0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp 92b8476e-3137-4459-9c13-f1fc333ec7f7))
(fp_line (start -0.75 0.25) (end -0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp c1d8dedf-fbb9-49cd-a386-35b4e4e00812))
(fp_line (start 0.75 0.25) (end -0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp e3292299-1e66-4d36-b38d-bdd3cec968f3))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 40f4bcc0-5300-48eb-8d7d-58e488bae91c))
(pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(+15V1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 274b08b0-4697-4584-aaef-d6998f1a26e1))
(model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Keystone_5000-5004_Miniature.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "elab_PCB_Design:C 0805" (layer "F.Cu")
(tedit 0) (tstamp 5a9dd18e-4f42-4db6-98c4-266531c690cc)
(at 122.345 112.4925 180)
(property "Sheetfile" "signal_gen.kicad_sch")
(property "Sheetname" "signal_gen")
(path "/26edbdbe-1c28-47a5-998c-eeba47c08108/f9f0b5f0-ffed-44dd-b682-53da6b32a7f9")
(attr smd)
(fp_text reference "C3" (at -0.075 -0.4975 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f097e438-516c-4ad5-b4c1-3b988306bed2)
)
(fp_text value "10n" (at -0.05 -2.05 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4db6f387-6ac9-4383-8496-c2af37f4bcf4)
)
(fp_text user "+" (at -2.125 -0.225 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c08ef64d-463f-47bb-b833-8ca16eee6793)
)
(fp_text user "${REFERENCE}" (at -0.075 0.95) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8748e202-87c2-4c59-b9e7-5c842071ef1a)
)
(fp_line (start -0.336252 0.215) (end 0.186252 0.215) (layer "F.SilkS") (width 0.12) (tstamp 23ead881-3572-48b5-b30b-974c8b197150))
(fp_line (start -0.336252 1.685) (end 0.186252 1.685) (layer "F.SilkS") (width 0.12) (tstamp 9a2d83bc-de37-4358-93cc-a917c4f8d4c7))
(fp_line (start 1.805 -0.03) (end 1.805 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 20d0499d-3a54-497a-a5ac-69f38b6a019c))
(fp_line (start -1.955 1.93) (end -1.955 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 4c1f65ad-1760-42ac-970f-639cfd4cc55a))
(fp_line (start 1.805 1.93) (end -1.955 1.93) (layer "F.CrtYd") (width 0.05) (tstamp 7aa1d8ac-de34-4c1d-b6a6-f35b8d54e74f))
(fp_line (start -1.955 -0.03) (end 1.805 -0.03) (layer "F.CrtYd") (width 0.05) (tstamp 864879d5-3e7e-4e60-bd8a-4b52b52d52e6))
(fp_line (start 0.925 0.325) (end 0.925 1.575) (layer "F.Fab") (width 0.1) (tstamp 2253c6fa-9a7e-45c6-afb8-04963627f8d6))
(fp_line (start 0.925 1.575) (end -1.075 1.575) (layer "F.Fab") (width 0.1) (tstamp 37cdf58a-84a6-4044-bcc8-32c5dd9dbf0d))
(fp_line (start -1.075 1.575) (end -1.075 0.325) (layer "F.Fab") (width 0.1) (tstamp 729d3e39-5060-43fc-89f9-8b0ce4b2eee9))
(fp_line (start -1.075 0.325) (end 0.925 0.325) (layer "F.Fab") (width 0.1) (tstamp a06ac554-11e4-4ce0-81e3-4bd01a68a60c))
(pad "1" smd roundrect (at -1.1125 0.95 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 9 "Net-(C3-Pad1)") (pintype "passive") (tstamp 0d4c16fa-dafc-4c49-a3b6-7a6fde5fa831))
(pad "2" smd roundrect (at 0.9625 0.95 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 7 "GND") (pintype "passive") (tstamp 2b130227-c75e-4781-b932-d57ab3b4f2aa))
)
(footprint "elab_PCB_Design:LED" (layer "F.Cu")
(tedit 0) (tstamp 5b6615d4-accb-46af-8d0c-de6e1816ebca)
(at 133.9175 84.7875 -90)
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(path "/8e67a5af-a914-4290-a48f-7d5f2730ea38/f0cf6a26-5383-497a-94b6-22427365c611")
(attr smd)
(fp_text reference "+15V_LED1" (at -2.8975 2.7475 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 47852137-571b-45a2-b4dd-f46e1d4a594a)
)
(fp_text value "LED" (at -1.8975 2.9975 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 870b1320-49e6-4215-b348-1f5c2776e2ed)
)
(fp_text user "+" (at 1.8525 -0.0025 -90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f60d112f-300e-4c32-882c-04ed39ac3ca7)
)
(fp_text user "${REFERENCE}" (at -0.125 1.225 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 593e928e-f444-4051-bcc2-cb19ed060167)
)
(fp_line (start -1.985 0.265) (end -1.985 2.185) (layer "F.SilkS") (width 0.12) (tstamp 111df062-f2c2-419a-abd1-f16ad21446e7))
(fp_line (start 0.875 0.265) (end -1.985 0.265) (layer "F.SilkS") (width 0.12) (tstamp 739754d0-30c3-466b-ba8a-fc8baee77c4a))
(fp_line (start -1.985 2.185) (end 0.875 2.185) (layer "F.SilkS") (width 0.12) (tstamp d3927371-5cc7-41cd-8a6c-adbefa50dd33))
(fp_line (start 1.725 0.275) (end 1.725 2.175) (layer "F.CrtYd") (width 0.05) (tstamp 03644901-765a-49d2-9300-8a544dd66a27))
(fp_line (start 1.725 2.175) (end -1.975 2.175) (layer "F.CrtYd") (width 0.05) (tstamp be8cab03-3645-4ab1-a304-72404002de9f))
(fp_line (start -1.975 2.175) (end -1.975 0.275) (layer "F.CrtYd") (width 0.05) (tstamp d4c160b2-2db8-4786-9701-f9096f71c3d0))
(fp_line (start -1.975 0.275) (end 1.725 0.275) (layer "F.CrtYd") (width 0.05) (tstamp fed2af3e-f014-4776-a463-5bf38c683b9e))
(fp_line (start -1.125 0.925) (end -1.125 1.825) (layer "F.Fab") (width 0.1) (tstamp 5eb08cb1-9c64-4a4f-aa87-186de4bcb60c))
(fp_line (start 0.875 1.825) (end 0.875 0.625) (layer "F.Fab") (width 0.1) (tstamp 70304225-1aa3-4ea1-9cc4-5606eaf3402d))
(fp_line (start -1.125 1.825) (end 0.875 1.825) (layer "F.Fab") (width 0.1) (tstamp add006d1-902f-406d-82dd-c66f0dba6f2e))
(fp_line (start -0.825 0.625) (end -1.125 0.925) (layer "F.Fab") (width 0.1) (tstamp dd28239a-bb2b-4876-b0e7-8e80658cd718))
(fp_line (start 0.875 0.625) (end -0.825 0.625) (layer "F.Fab") (width 0.1) (tstamp fc7ce57d-4788-41a0-8eaa-9a5f14665689))
(pad "1" smd roundrect (at -1.15 1.225 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 4 "Net-(+15V_LED1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp d23d85fc-88e3-4674-b56c-25cf9c0489ae))
(pad "2" smd roundrect (at 0.9 1.225 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 3 "Net-(+15V1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp a09bf390-5060-4823-bf40-68711d3a4adb))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5bf09053-0c4f-4c08-b7fe-5709ca10f646)
(at 135.42 111.64 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" "signal_gen.kicad_sch")
(property "Sheetname" "signal_gen")
(path "/26edbdbe-1c28-47a5-998c-eeba47c08108/c8e1e9d1-17e1-4d20-bfa0-cc8ebd4cf7d9")
(attr smd)
(fp_text reference "R10" (at 0 -1.35) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f8351ae8-100a-4f8c-a18e-7ce4fe3670f0)
)
(fp_text value "150R" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 889b64d3-49e6-4f41-9409-13762925565f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 762bf634-f8ca-4466-b5e9-595d2a4eb807)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 08a4e028-65d6-4378-8a33-a8084734603b))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0b609d5b-1f05-4333-a71a-d71a01271767))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 02ccb0ca-319c-49ac-b14c-f3a6bec42b3a))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 181d7193-5599-4965-a62a-833263eedda8))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 804bdc7d-64ed-4208-8d20-a5c3849d3117))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c92a38c2-3d01-4f52-99f4-dfd82ba67a3a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 04ff6b9d-bae2-4dc3-b4cf-0295c78249ba))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3b496d6a-2dde-47bf-b505-797c982b6ef8))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9fb39d55-10af-4558-8dca-7d44a21ac6bc))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d1cefc39-fa94-4d8a-8521-57726d302a36))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 28 "Net-(Q1-Pad3)") (pintype "passive") (tstamp 7974e572-5a23-4df5-8b08-4c0f0bb325ca))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 1 "5V") (pintype "passive") (tstamp 155130f4-a23a-4631-ba3c-1a53477a008f))
(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 "TestPoint:TestPoint_Keystone_5000-5004_Miniature" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 603b368f-bb2e-49da-9a3e-b0c22c7a271d)
(at 148.17 99.89)
(descr "Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309")
(tags "Through Hole Mount Test Points")
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(path "/8e67a5af-a914-4290-a48f-7d5f2730ea38/5da2c629-e724-4a8d-9c68-a1652f2b7c85")
(attr through_hole)
(fp_text reference "GND_2" (at 0 -1.75) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp cc2629a3-2391-47f0-8fc8-2a68449923cf)
)
(fp_text value "TestPoint" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07834952-2d39-4209-9407-c229fd0842a9)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 920366be-d025-46e8-8fa2-0f6185161e76)
)
(fp_circle (center 0 0) (end 1.4 0) (layer "F.SilkS") (width 0.15) (fill none) (tstamp bd595842-5a07-437c-9a59-3830afc15ada))
(fp_circle (center 0 0) (end 1.65 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5c619a98-ee0f-4b68-9da8-fe912d4bb335))
(fp_line (start 0.75 -0.25) (end 0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp 36fd9cc8-4a27-4039-bbff-53100ea06d18))
(fp_line (start -0.75 0.25) (end -0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp 89b420f3-2492-4841-a7d9-3d0dc21d700f))
(fp_line (start 0.75 0.25) (end -0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp afea852e-280f-4f8c-8b2e-42193c43eef9))
(fp_line (start -0.75 -0.25) (end 0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp bc4b100c-6b96-4227-a69d-9871ef188698))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 3375ade8-1758-4e63-9741-6dc4b16da0c5))
(pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "1") (pintype "passive") (tstamp 50263091-938f-4d0e-9ecf-2360a03f16fb))
(model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Keystone_5000-5004_Miniature.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Keystone_5000-5004_Miniature" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 64476df7-6939-450e-98c9-c34eeeb3bed0)
(at 160.42 100.39 -90)
(descr "Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309")
(tags "Through Hole Mount Test Points")
(property "Sheetfile" "PS.kicad_sch")
(property "Sheetname" "PS")
(attr through_hole)
(fp_text reference "GND" (at 0.5 -2.25 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a8b74f95-6d14-4c45-9340-912aec9cef8b)
)
(fp_text value "TestPoint" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5865cc53-32b8-4876-8731-470132f62aa9)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6522a1c0-5beb-46e8-8f87-8c5da885ec32)
)
(fp_circle (center 0 0) (end 1.4 0) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 3a0e96fe-2dac-4618-8d77-a7496316366f))
(fp_circle (center 0 0) (end 1.65 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b0693e79-5ed2-4d67-b939-e83465213f77))
(fp_line (start -0.75 0.25) (end -0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp 3459ea4e-132d-4f1f-ac83-5df77d7b0028))
(fp_line (start -0.75 -0.25) (end 0.75 -0.25) (layer "F.Fab") (width 0.15) (tstamp 920d5021-f391-49c9-806b-81e3be939595))
(fp_line (start 0.75 -0.25) (end 0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp ce64d1dd-ee5f-42af-8247-ee1775711997))
(fp_line (start 0.75 0.25) (end -0.75 0.25) (layer "F.Fab") (width 0.15) (tstamp eeab834d-cde5-4393-931e-57402679d23a))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 3edec9b6-7ffe-4913-ac52-44aa6970ec9a))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "1") (pintype "passive") (tstamp d944293a-5fed-4f3b-801f-063456a3d9b2))
(model "${KICAD6_3DMODEL_DIR}/TestPoint.3dshapes/TestPoint_Keystone_5000-5004_Miniature.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))