-
Notifications
You must be signed in to change notification settings - Fork 0
/
Diff_probe.kicad_pcb
7938 lines (7846 loc) · 415 KB
/
Diff_probe.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 0.913)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.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 0.251) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.251) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.251) (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)
(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 "Outputs/")
)
)
(net 0 "")
(net 1 "+2V5")
(net 2 "GND")
(net 3 "+5V")
(net 4 "Output1")
(net 5 "Net-(JP1-Pad2)")
(net 6 "Net-(R1-Pad1)")
(net 7 "Net-(R1-Pad2)")
(net 8 "Net-(R3-Pad1)")
(net 9 "Net-(R4-Pad1)")
(net 10 "Net-(R4-Pad2)")
(net 11 "Net-(R5-Pad2)")
(net 12 "Net-(JP2-Pad1)")
(net 13 "Net-(JP2-Pad2)")
(net 14 "Net-(JP4-Pad2)")
(net 15 "Net-(FB1-Pad1)")
(net 16 "unconnected-(J2-PadA5)")
(net 17 "unconnected-(J2-PadA6)")
(net 18 "unconnected-(J2-PadA7)")
(net 19 "unconnected-(J2-PadA8)")
(net 20 "unconnected-(J2-PadB5)")
(net 21 "unconnected-(J2-PadB6)")
(net 22 "unconnected-(J2-PadB7)")
(net 23 "unconnected-(J2-PadB8)")
(net 24 "Net-(JP3-Pad2)")
(net 25 "Net-(JP4-Pad1)")
(net 26 "Net-(R13-Pad2)")
(net 27 "Net-(R2-Pad1)")
(net 28 "Net-(R13-Pad1)")
(net 29 "Net-(R12-Pad1)")
(net 30 "Net-(R12-Pad2)")
(net 31 "Net-(R14-Pad2)")
(net 32 "Net-(R41-Pad2)")
(net 33 "Output2")
(net 34 "Net-(U3-Pad2)")
(net 35 "Output3")
(net 36 "Output4")
(net 37 "Net-(JP5-Pad2)")
(net 38 "Net-(JP6-Pad2)")
(net 39 "Net-(JP7-Pad1)")
(net 40 "Net-(JP7-Pad2)")
(net 41 "Net-(JP8-Pad1)")
(net 42 "Net-(JP8-Pad2)")
(net 43 "Net-(R21-Pad1)")
(net 44 "Net-(R21-Pad2)")
(net 45 "Net-(R22-Pad1)")
(net 46 "Net-(R22-Pad2)")
(net 47 "Net-(R23-Pad1)")
(net 48 "Net-(R23-Pad2)")
(net 49 "Net-(R24-Pad1)")
(net 50 "Net-(R24-Pad2)")
(net 51 "Net-(R25-Pad2)")
(net 52 "Net-(R26-Pad2)")
(net 53 "Net-(R27-Pad2)")
(net 54 "Net-(R28-Pad2)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0787a5eb-9103-4f06-b198-eb3b48604a25)
(at 174.5 35.5)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C3016445")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/2ac23413-3dae-4953-8d27-22f5d4358cc4")
(attr smd)
(fp_text reference "R32" (at 3.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e928136-f7ef-48ef-946e-ebcbe918f873)
)
(fp_text value "R_40k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b51cc84-5845-427f-97e8-a864a8483e71)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4a5f35c6-b7c4-444c-b34a-8e3c0da4c96e)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8412329c-e905-4e40-b317-6858a316d993))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ef31f306-1fc2-4e78-a0c7-1313aeb07c28))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1386ff7e-2343-426d-a87b-820974a3a75b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 98f01229-4662-4368-a722-740920e54d38))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ad3e40f3-e75b-40d9-9e21-89f2fdfd85a7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d1efc323-79b5-426c-ae42-0e8b3a1885f7))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1112fd96-3d6c-4089-ad4d-3a0dad071eda))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3f5bd785-ab95-4b93-a770-7f2dc50bdc50))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 401c2e85-b217-4175-abb7-39df9fa849cc))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a5530db2-46c6-4d39-9558-19bde3a1085f))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+2V5") (pintype "passive") (tstamp 156ae7f2-c485-482c-a59a-ad5303d40be5))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "Net-(JP6-Pad2)") (pintype "passive") (tstamp 2548a39b-908b-4e71-8df9-fee9fd64fa3f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0e3f1a94-f661-4ec3-8bb2-eeeb36af0119)
(at 140 23.5 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1671")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/4f6d7125-8c11-4847-a979-814aad69a1e5")
(attr smd)
(fp_text reference "C6" (at 0 -3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc76fcbb-07d9-4afc-a54e-459cfc97cac8)
)
(fp_text value "C_47pF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdc7d4eb-120c-4260-809a-5b1774f3d6db)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cebc9469-06b2-4de5-8de2-41d0498b65db)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 2dd0d974-8588-4061-b455-09c038c94f89))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7f054554-699a-4b3d-b294-f7d88d8eb605))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 022e1a27-35f6-4787-b9c6-e16290b740ef))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a149139-38f9-442a-8ca3-cad1e5548497))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d02888c-7056-4a5e-8543-a7aa17a99e05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cfaf3551-26d8-4a0f-8266-c613fcea6cf7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2f2deb23-98b5-479b-82c4-82bbec9d8e65))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5c16076e-ae2a-4cf7-9a62-8d884cf1c429))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8867441f-5e7e-4f76-a3ca-d8bd64395281))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp adc7e230-7e44-4214-af53-c3102e87ce84))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cb9b9d01-e790-4af7-ad3a-33a87f884476))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Output1") (pintype "passive") (tstamp 38cf718a-5075-419e-88e8-3f0cc93eb2f3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_THTPad_2.5x2.5mm_Drill1.2mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 0e53a89e-3ee1-42af-84ff-3394fd4f8612)
(at 173 58.5 90)
(descr "THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm")
(tags "test point THT pad rectangle square")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/2d33bb83-bb9f-47f9-a7f6-2b45d2c5a3e6")
(attr exclude_from_pos_files)
(fp_text reference "TP11" (at 0 -2.148 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd3c1731-6142-4576-ac1f-0fe66ed39f85)
)
(fp_text value "TestPoint" (at 0 2.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a97a149-520b-487f-b466-ae17fdf9f72d)
)
(fp_text user "${REFERENCE}" (at 0 -2.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af1dad20-9098-480a-abac-1d7973358c4d)
)
(fp_line (start 1.45 -1.45) (end 1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp 309ab652-2de7-4007-a1e5-94eda25f3a41))
(fp_line (start -1.45 -1.45) (end 1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 642d01f3-c0b1-4a3d-be7d-f38d7fcb8e6d))
(fp_line (start -1.45 1.45) (end -1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp ae3c1c3f-9c90-4df4-ab31-d4ed30b63b43))
(fp_line (start 1.45 1.45) (end -1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp fed2146b-128a-4ba1-8c27-a67e44409547))
(fp_line (start 1.75 1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 26ef4e2c-6d35-4037-9bab-9c8e41530ce0))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 40615199-0023-4c8b-9c5a-3ea94fe6d28a))
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7e95e1af-de24-4348-8e40-a07c8a54cbbc))
(fp_line (start 1.75 1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c75511c7-38dd-4b9b-b229-9f0df6d140f2))
(pad "1" thru_hole rect (at 0 0 90) (size 2.5 2.5) (drill 1.2) (layers *.Cu *.Mask)
(net 47 "Net-(R23-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 3a335b85-a54b-4b0b-9e16-49d46805e0b5))
)
(footprint "Jumper:SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
(tedit 5A64803D) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)
(at 158.4 30.2 90)
(descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/e056255a-1a95-4a96-bbc4-3f8c35044e4a")
(attr exclude_from_pos_files)
(fp_text reference "JP9" (at 4.4 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fb21471-41be-4be8-9687-66030f97befc)
)
(fp_text value "Jumper_3_Open" (at 0.725 1.925 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0755aee5-bc01-4cb5-b830-583289df50a3)
)
(fp_line (start -2.75 -1) (end 2.75 -1) (layer "F.SilkS") (width 0.12) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start 2.75 0.95) (end -2.75 0.95) (layer "F.SilkS") (width 0.12) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start 2.75 -1) (end 2.75 0.95) (layer "F.SilkS") (width 0.12) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start -1.1 1.5) (end -1.4 1.2) (layer "F.SilkS") (width 0.12) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start -1.4 1.2) (end -1.7 1.5) (layer "F.SilkS") (width 0.12) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(fp_line (start -2.75 0.95) (end -2.75 -1) (layer "F.SilkS") (width 0.12) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(fp_line (start -1.7 1.5) (end -1.1 1.5) (layer "F.SilkS") (width 0.12) (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(fp_line (start -2.98 -1.27) (end 3 -1.27) (layer "F.CrtYd") (width 0.05) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start 3 1.25) (end -2.98 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start 3 1.25) (end 3 -1.27) (layer "F.CrtYd") (width 0.05) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_line (start -2.98 -1.27) (end -2.98 1.25) (layer "F.CrtYd") (width 0.05) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(pad "" smd rect (at 1.2 0 90) (size 1.5 1.5) (layers "F.Mask") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(pad "" smd rect (at -1.2 0 90) (size 1.5 1.5) (layers "F.Mask") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(pad "1" smd custom (at -2 0 90) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 34 "Net-(U3-Pad2)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 1 0)
(xy 0.5 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(pad "2" smd custom (at 0 0 90) (size 0.3 0.3) (layers "F.Cu")
(net 1 "+2V5") (pinfunction "C") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 0.7 0)
(xy 1.2 0.75)
(xy -1.2 0.75)
(xy -0.7 0)
(xy -1.2 -0.75)
(xy 1.2 -0.75)
) (width 0) (fill yes))
) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(pad "3" smd custom (at 2 0 270) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 32 "Net-(R41-Pad2)") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 1 0)
(xy 0.5 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 15d15f84-00e2-4457-bc07-3c3f9fe15ba5)
(at 177.525 19 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/8e44d9c1-38c0-4119-8291-0183d1e02138")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.975 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2945ef08-a9d6-4b9e-9c96-51b63d98a1ea)
)
(fp_text value "Conn_01x03_Male" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3df8b357-b018-487a-ae22-4f8ced93a5ec)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d9e5dfa-7bfb-40bf-80f0-2802c6489285)
)
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 1743f401-b57b-405b-bab5-64061addd892))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 29644cdc-15cf-41cd-b4f7-94fa61fdc216))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 770f64e8-9837-43ab-b417-8fe44944aabf))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8538c470-07a5-4528-a3cd-83cd1bf95422))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp a4af80c5-c79f-4056-97c8-0caa5dbed7d8))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d783bf51-98c1-40a7-b876-7ff7b1f45442))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 4f2f5695-b410-4656-aa02-7b5368c394b4))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 67141347-f29e-4b4c-8d65-2672a50e7157))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bcfb0294-b63f-4e76-8fc2-f027e4b5586b))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e91babd9-f498-4bbe-9780-d42cc1e04745))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 1ceba87a-4f61-4cb4-9c7f-6846462efa6f))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 23e41ed9-bd06-4e7f-a18b-b2be1926fd0d))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp b4aed4fb-4ef6-48ce-9e07-51f3c1476eef))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp e836f637-b4ed-40f6-81d3-f70722a37c82))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp e84a613b-d7e8-480d-a48a-a2ab8850c402))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 71b8d374-193e-486e-ae0c-446351dcf880))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "Output4") (pinfunction "Pin_2") (pintype "passive") (tstamp 9f22d364-cc70-467a-840d-a733d144e51a))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp d2e3f6da-826b-4f51-8378-04bade49471e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 16ded395-a862-4198-b3af-ba8c7fb298bb)
(at 151.8 24.3)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C17408")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/186ce13b-d847-4644-8663-0ba8ac9a0876")
(attr smd)
(fp_text reference "R41" (at 3.2 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580)
)
(fp_text value "R_100" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 00e38d63-5436-49db-81f5-697421f168fc))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 3 "+5V") (pintype "passive") (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 32 "Net-(R41-Pad2)") (pintype "passive") (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
(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 "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
(tedit 5A64794F) (tstamp 18bc48c1-8ce3-4a8f-88c2-b69f2f89853f)
(at 144 37.5)
(descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/bd8e1a8f-7ba7-47f1-87ec-d13a13c1a0da")
(attr exclude_from_pos_files)
(fp_text reference "JP3" (at 2.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94a97d6e-7a59-4fa8-8624-7b96ee2e228d)
)
(fp_text value "Jumper_2_Open" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b2a241b-fc12-4ab8-82e8-64ebeea786de)
)
(fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 467227fa-90eb-4419-b1a9-c92aaf3d5e23))
(fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 4d1be3b5-50e9-4078-b133-376797efd877))
(fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 90c65a4b-ec6c-4d90-8684-2f8d9a819cd0))
(fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp e31a0b22-92dc-409c-9ac7-1af85bec5c4f))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 32fa2e3d-9aaa-4afa-b56a-711d1c734988))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 4196209e-9408-4767-91e4-229f47995006))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6fed3d91-e174-4c97-b0da-105903201f92))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp ed79e471-b868-4ebd-aa17-944252cf264a))
(pad "1" smd custom (at -0.725 0) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 1 "+2V5") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 1 0)
(xy 0.5 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp 5ffdab98-25c8-464d-94b7-9004b87eea3d))
(pad "2" smd custom (at 0.725 0) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 24 "Net-(JP3-Pad2)") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 0.5 0.75)
(xy -0.65 0.75)
(xy -0.15 0)
(xy -0.65 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp 75b2a2bd-ed82-4cfc-a2b2-b0c0ab678050))
)
(footprint "TestPoint:TestPoint_THTPad_2.5x2.5mm_Drill1.2mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 1e1d6ca2-8179-44a8-9514-fc0f04d42b1b)
(at 167.5 26 90)
(descr "THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm")
(tags "test point THT pad rectangle square")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/1847e5c0-ff57-4fe2-aa97-f258e04dd617")
(attr exclude_from_pos_files)
(fp_text reference "TP13" (at 0 -3.5 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b007908-c554-4acf-a300-8bc57829bcef)
)
(fp_text value "TestPoint" (at 0 2.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93832476-fee5-4082-b8ac-e1053dcd604c)
)
(fp_text user "${REFERENCE}" (at 0 -2.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5be86b27-86c3-4e31-b5b1-a87126d1e90f)
)
(fp_line (start -1.45 1.45) (end -1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 6878ddca-d3dc-4e72-9fec-287f16b98bc4))
(fp_line (start 1.45 -1.45) (end 1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp 6c5a581b-1086-4baa-9111-5e2df0eb62a7))
(fp_line (start -1.45 -1.45) (end 1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 8409a347-1dc7-4d81-9512-a787e370984a))
(fp_line (start 1.45 1.45) (end -1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp c90246d9-9727-44ce-b624-615c49905d93))
(fp_line (start 1.75 1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 58c756ca-0a79-47af-96b4-b71cbf51f40f))
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a7798780-00a0-4004-86dd-9b8d0490369f))
(fp_line (start 1.75 1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d08e815f-15c8-424d-b58c-96d4ffb553de))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d4396aa4-dfd9-46b8-b984-ad3841bdad84))
(pad "1" thru_hole rect (at 0 0 90) (size 2.5 2.5) (drill 1.2) (layers *.Cu *.Mask)
(net 40 "Net-(JP7-Pad2)") (pinfunction "1") (pintype "passive") (tstamp f4ed4e4f-e86e-4ace-b564-d261c51797ca))
)
(footprint "TestPoint:TestPoint_THTPad_2.5x2.5mm_Drill1.2mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 21650975-c7b5-4999-9447-af67922155dc)
(at 143 58.5 90)
(descr "THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm")
(tags "test point THT pad rectangle square")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/044844a7-677e-4814-a945-0433f2902254")
(attr exclude_from_pos_files)
(fp_text reference "TP4" (at 0 -2.148 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fe323b1-56a0-4b80-9c35-b5bc36c35c6b)
)
(fp_text value "TestPoint" (at 0 2.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99e45931-b7bb-48e7-8924-1108de78bd98)
)
(fp_text user "${REFERENCE}" (at 0 -2.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fd7fbb5-efcb-49fa-b153-f6c9cf0b5482)
)
(fp_line (start -1.45 1.45) (end -1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 55483f5c-a074-4737-ba81-0310344f7fa1))
(fp_line (start 1.45 1.45) (end -1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp 7a080f55-532d-471f-b620-13740b773cea))
(fp_line (start 1.45 -1.45) (end 1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp b96e16f1-51e9-4499-a571-46208e33e9da))
(fp_line (start -1.45 -1.45) (end 1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp fa8a86c5-3a09-4a0e-80b2-695a5e77fffe))
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5ad53278-0e65-4343-87b7-732f4bdd41f1))
(fp_line (start 1.75 1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b6c008e3-93ee-4def-9806-fdc23d59c90e))
(fp_line (start 1.75 1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d482f1a6-36ac-4a79-a36b-eaa3d2959f3d))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp ec402af3-61b4-4848-93b6-d02e5cce31e9))
(pad "1" thru_hole rect (at 0 0 90) (size 2.5 2.5) (drill 1.2) (layers *.Cu *.Mask)
(net 27 "Net-(R2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 3061d82a-f521-41df-a0fa-64593705f570))
)
(footprint "TestPoint:TestPoint_THTPad_2.5x2.5mm_Drill1.2mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 21bbe5b7-bff2-4e1c-9e04-5310c1a0166d)
(at 158 58.5 90)
(descr "THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm")
(tags "test point THT pad rectangle square")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/060976b3-6a5a-4244-bf3f-ceaabe493e6c")
(attr exclude_from_pos_files)
(fp_text reference "TP9" (at 0 -2.148 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47ea0c87-f1b5-402e-afa7-d3b3347712fb)
)
(fp_text value "TestPoint" (at 0 2.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a36f554-1840-498e-b514-a4da8fdb8930)
)
(fp_text user "${REFERENCE}" (at 0 -2.15 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abcbc764-1fff-41cf-8156-d978a3adcab8)
)
(fp_line (start 1.45 1.45) (end -1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp 084115df-1fbb-4d65-8255-cf1a7b1d93ae))
(fp_line (start 1.45 -1.45) (end 1.45 1.45) (layer "F.SilkS") (width 0.12) (tstamp 502ebcf0-c34a-4b01-8941-e9b804f8a703))
(fp_line (start -1.45 -1.45) (end 1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp c039b97f-8e29-45fa-a1be-3144cc1e03ae))
(fp_line (start -1.45 1.45) (end -1.45 -1.45) (layer "F.SilkS") (width 0.12) (tstamp fe8f88ee-67d7-47dd-8bb7-463ffab52b73))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3e8e9043-3836-4109-a948-227439954f2b))
(fp_line (start 1.75 1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 60cfdff1-cbd8-4a4f-844b-a8e1a7af0f90))
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 81c1716d-9448-4b7a-95bf-5ae0c1793a99))
(fp_line (start 1.75 1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b0e578dc-0f96-46ad-a9b3-04d67a598d0c))
(pad "1" thru_hole rect (at 0 0 90) (size 2.5 2.5) (drill 1.2) (layers *.Cu *.Mask)
(net 43 "Net-(R21-Pad1)") (pinfunction "1") (pintype "passive") (tstamp ea246d5a-29be-4817-a029-9ba614f93632))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 275a504e-c41c-4d8b-8f5b-49da767b1d97)
(at 168.5 22.5 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1671")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/db9a6eba-9995-447d-ae48-548f94c4fdc6")
(attr smd)
(fp_text reference "C10" (at 0 -3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7eb95a82-0d1a-4f3b-9929-dcc81150a962)
)
(fp_text value "C_47pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c2d30f8-473a-445f-85db-73c9493e342f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d6a889fc-311d-4ea8-bdf9-34e5f020f969)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 29ff7148-069c-4447-89ba-ab91b80cff74))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp d1a05460-c47c-4302-91de-7716b775ddbd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 04a15af6-e895-4d74-accb-36cfdb4ae05d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f9c4059-c5fa-4ac7-8238-840310255042))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 330ce927-c8ec-4155-8ffe-21084829b4a9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9a2e19af-da0e-449a-8020-368ba33f60ea))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 57a5e92e-5c3a-4bb9-bac4-313c1579ff05))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 856bb4ff-0a27-4d02-a217-58ffcb41e66b))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ab9cfc74-36b8-4747-98e1-f1e9410eb7c4))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp df10e64f-fe06-42e9-9446-a0012b3b7072))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 75dcdf96-68e0-4709-8394-44b7dedb2a68))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Output3") (pintype "passive") (tstamp 51e1f296-41db-4422-8ed8-f3a59c4baf80))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_2512_6332Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 30012559-9113-40ec-9513-f6831abe8f05)
(at 143 52.5 90)
(descr "Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C966223")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/c1ccc724-2014-461e-a791-e2a4dfb4f1d6")
(attr smd)
(fp_text reference "R2" (at 0 -2.62 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eff65a2d-c50b-4687-9883-373da907aeb0)
)
(fp_text value "R_1Mohm" (at 0 2.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1b4a929-bb86-475a-9d5a-70df6c8e5352)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7853ebee-8b6d-4621-8732-330ec76f8b76)
)
(fp_line (start -2.177064 1.71) (end 2.177064 1.71) (layer "F.SilkS") (width 0.12) (tstamp 3ddfcee7-9afc-456b-b44f-dd1598fc5bff))
(fp_line (start -2.177064 -1.71) (end 2.177064 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 9694e8ae-1d65-4df4-a577-8f6839a303ec))
(fp_line (start 3.82 -1.92) (end 3.82 1.92) (layer "F.CrtYd") (width 0.05) (tstamp 820f9c20-fd91-4ebf-b1c9-eab2b279f470))
(fp_line (start -3.82 1.92) (end -3.82 -1.92) (layer "F.CrtYd") (width 0.05) (tstamp 879c5491-37da-4ce1-88bf-a57389581b56))
(fp_line (start 3.82 1.92) (end -3.82 1.92) (layer "F.CrtYd") (width 0.05) (tstamp decfdcb1-4443-44e1-96fb-85aea637f6ce))
(fp_line (start -3.82 -1.92) (end 3.82 -1.92) (layer "F.CrtYd") (width 0.05) (tstamp e1c3e2bd-f101-41e2-8d50-32e00128b6f7))
(fp_line (start -3.15 1.6) (end -3.15 -1.6) (layer "F.Fab") (width 0.1) (tstamp 3bbad69e-378a-4350-80b6-8d1d68a7fad2))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6) (layer "F.Fab") (width 0.1) (tstamp 3cd8c328-f5f4-44d6-966a-89bd1945df10))
(fp_line (start 3.15 -1.6) (end 3.15 1.6) (layer "F.Fab") (width 0.1) (tstamp dc334147-102a-44b4-8619-8a71702920b7))
(fp_line (start 3.15 1.6) (end -3.15 1.6) (layer "F.Fab") (width 0.1) (tstamp e8492f72-7cc6-42eb-8278-9851f72f35d6))
(pad "1" smd roundrect (at -2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 27 "Net-(R2-Pad1)") (pintype "passive") (tstamp da1292ee-3b5a-43b9-ad5d-85c7e8442d5c))
(pad "2" smd roundrect (at 2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 28 "Net-(R13-Pad1)") (pintype "passive") (tstamp aac20bff-7235-45d1-abc6-1445463f07e2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_2512_6332Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 32455708-85f0-4f0a-81b2-1295e0cba77a)
(at 141 19 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/16bfcc71-81a0-42bf-93bc-38f665f9ba2e")
(attr through_hole)
(fp_text reference "J1" (at 3 3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6e262c3-d29c-4233-8cd1-0477c073b3d9)
)
(fp_text value "Conn_01x03_Male" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fbcc65e-a766-4b6f-95f9-c65697a5c516)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23c7d2b5-1a3b-43b1-969c-0d1c7c9d0ba5)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 371b6bd9-05d5-4613-9dcc-0a8d2108a274))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 3b8e2b70-4d87-4766-8b8e-f3af94398cc8))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 57fd7c29-375c-41dd-98f8-d356f4479303))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ce3e0d4b-a956-4127-8d18-2d4bbf239ef4))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d2963af2-40ca-4dbc-9265-52c3ea0d41ed))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e9fd2e0e-a4b1-4f52-a1d9-a06a5744be70))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1e375a52-5b94-435f-879d-8ff012685228))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 381ef7e8-de1e-4d38-91e0-358e8113c91f))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a283c1d2-b27e-4e7e-a66c-6081d8f75f13))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp f336e6f4-61d4-4f57-a7ea-9bddd424825f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 405ab64e-aec8-4f3d-b114-4e8295d6ac41))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 79bb5da5-8e1b-44ce-8df3-1143deadf06c))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 9f18c226-e749-457b-9fb5-e3c6a43c6adb))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a844a060-e560-4c5a-af7b-0b1046e597fb))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp e795e91d-332b-4ae6-9aae-cdba149fa3ae))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 54ec41b1-4342-4bfb-8ef7-16519e7d68d8))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Output1") (pinfunction "Pin_2") (pintype "passive") (tstamp 4b11d49e-b1d4-4fb7-a84e-232af8ae7698))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp e931bc10-704f-49d3-9588-d0294100fe28))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 331643c0-d7d6-4f31-8fe2-573231d9df1c)
(at 150.025 19 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/a37aa6bc-df52-4188-8df7-f7ba829e4094")
(attr through_hole)
(fp_text reference "J3" (at 3 4.025 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa9b944a-e640-4093-af74-b451e791548e)
)
(fp_text value "Conn_01x03_Male" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 803fb112-96a1-48b7-8cf7-dea7a38b7ae6)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 220ddded-d8bf-413d-9466-faa128aad384)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 2836dd7b-d3c6-493a-85e8-d6174536bdce))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5896f9e3-1e01-41c0-a6d2-c638f004cd01))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 658a5816-a0fa-419d-9116-14cb50ccca95))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 7e64e79f-718c-492e-bb03-f36fbc890cc6))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp aeb1a702-a024-46ce-b866-f3c8d7fd4f47))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e381654e-4321-4e97-bc0c-fd7ed81e0d5a))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 0a2590ae-f0bf-41ed-b84b-7000da37a004))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 3007ad7b-68cc-4826-8486-f17d4827be84))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3688f3c1-229c-4613-ad72-16cf45d5ab63))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 86ecd485-6b21-4990-840b-cbb745157942))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 289f4a79-450d-48a6-a83c-eba10a23873d))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3b4574ec-4f5d-4c1d-9c4f-3454ce98ab37))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 607a4fea-6cb3-41e7-ba6e-4208bb78aba4))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp a1699b4f-40ab-4a74-bbe6-55cb6c8699bf))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp a688d31b-cb2f-4311-8162-094f241be870))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 378f3401-2436-4991-9193-d1b6be383d1c))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "Output2") (pinfunction "Pin_2") (pintype "passive") (tstamp b592b496-a6ed-474c-9197-a2be3580248d))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp a2d4e7b0-e343-4323-81f1-90a8e1a76ea2))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_2512_6332Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 35b43323-1fdd-4e1c-8c17-d8b6a5515b64)
(at 128 52.5 90)
(descr "Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C966223")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/2dddd2aa-df28-4aeb-9026-71522388f087")
(attr smd)
(fp_text reference "R3" (at 0 -2.62 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e09da8e-ac05-48b1-ad70-ff3458094657)
)
(fp_text value "R_1Mohm" (at 0 2.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f86b416-44d9-4aba-bf6a-e550440affc6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0577348a-f9d6-4b4e-8d09-251b9a893d40)
)
(fp_line (start -2.177064 -1.71) (end 2.177064 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 3747a593-f1b5-41dc-bbbc-5b27d7bc242e))
(fp_line (start -2.177064 1.71) (end 2.177064 1.71) (layer "F.SilkS") (width 0.12) (tstamp 9294970f-ede1-41b2-b5e0-e4f0479740b2))
(fp_line (start 3.82 1.92) (end -3.82 1.92) (layer "F.CrtYd") (width 0.05) (tstamp 0d81759d-b1f6-4505-abbe-8a953f94ea4c))
(fp_line (start 3.82 -1.92) (end 3.82 1.92) (layer "F.CrtYd") (width 0.05) (tstamp 14f9bf88-6f7e-4741-95d0-a2b4330eb73b))
(fp_line (start -3.82 1.92) (end -3.82 -1.92) (layer "F.CrtYd") (width 0.05) (tstamp 3696826c-6b99-4d53-b1aa-3935e990c62a))
(fp_line (start -3.82 -1.92) (end 3.82 -1.92) (layer "F.CrtYd") (width 0.05) (tstamp e4619656-c2a8-40ba-b86b-02aff2524ca6))
(fp_line (start 3.15 1.6) (end -3.15 1.6) (layer "F.Fab") (width 0.1) (tstamp 7a2d11ec-786f-4d3f-964f-649d0c3a179f))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6) (layer "F.Fab") (width 0.1) (tstamp 82358425-e242-470a-9ba2-0edfb7f7af32))
(fp_line (start 3.15 -1.6) (end 3.15 1.6) (layer "F.Fab") (width 0.1) (tstamp 8f013771-d3bf-4495-92cd-46e0900bde64))
(fp_line (start -3.15 1.6) (end -3.15 -1.6) (layer "F.Fab") (width 0.1) (tstamp dfe1f489-b8fb-4f58-b012-6ba669e7822a))
(pad "1" smd roundrect (at -2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 8 "Net-(R3-Pad1)") (pintype "passive") (tstamp e8a973a3-1848-464f-bb87-c61c66651904))
(pad "2" smd roundrect (at 2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 6 "Net-(R1-Pad1)") (pintype "passive") (tstamp 5345d9db-8f7e-446d-9638-71d1bd3fb0e0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_2512_6332Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3694f4be-1128-49ed-a4ad-5de170e6f4eb)
(at 144.5 32.5)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25804")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/663bf6ea-78b5-4a74-a8db-965cdbf9fd28")
(attr smd)
(fp_text reference "R17" (at 3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39fc7e37-ae87-44fb-8241-628cebd73450)
)
(fp_text value "R_10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5450ec00-3d3d-43c9-a51e-fef5aca7aec5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9ad15a12-9235-4970-ace0-897b95fbe10c)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ca4afb63-4c38-4419-bfe3-6eddc21e413f))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d981ec98-a61b-450a-a7e8-481f3cfbba93))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 319aa975-efee-4d10-8291-9465e4976ade))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 36dafb9b-c6a0-453f-8e20-5668435ba417))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a946f2fa-c124-4f7a-819a-bb3d6f90911b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f724a793-5458-4ede-9f2a-7c763a509b4b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7d63434b-6923-460a-bd46-3a9ed434eb28))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b8bd794a-00d0-4289-b973-609a35b649ea))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fe2529cb-67a2-4a3a-afc1-a5aef9945c53))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fe82d493-0f75-412a-a1c4-2ee323aee817))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(R14-Pad2)") (pintype "passive") (tstamp beb353ab-691d-454e-aee5-4d0c026d4cb1))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(JP4-Pad1)") (pintype "passive") (tstamp 336f0534-757e-49ef-b07f-09e98ce0833b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3cfb721a-0e0b-44ce-96f4-d1fff7c0ca85)
(at 170.5 35.5)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C3016445")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/24a362e7-4788-4ada-b827-f767dc02580c")
(attr smd)
(fp_text reference "R30" (at 1 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4681b3e9-fcbf-45cc-ab5f-343c4426169b)
)
(fp_text value "R_40k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76ee13e5-e42d-430e-a386-1317d4b0313b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a3fad8dc-91bb-443f-a6aa-f39c5eae1c2f)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5a8d37f5-5910-4fdf-b357-a85278be769f))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp dc0879a1-1c40-448f-b3f9-cf64034356e7))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 164a74bf-0e6e-482e-9706-a2d7dc8608db))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2bca0c96-6775-4cc3-8425-2017bb49ab48))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2ce1aae5-cf16-408a-858e-f36a0f94eca2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 67277c4e-0f8e-4c0c-a320-a8bdd15a310f))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3fbfb851-c56a-4674-9758-001fe25870ba))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 67f1c37e-0adf-4c5a-858d-d2b7aca871f2))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e514206d-f6f0-4c32-bdf1-f67534ab3032))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f500cd85-0942-457b-b6cf-44ec856f2298))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+2V5") (pintype "passive") (tstamp c562d2dc-0567-4948-acff-6a857f9fea76))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(JP5-Pad2)") (pintype "passive") (tstamp 4a43978d-6026-462c-89a5-20634577db41))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3d95cdc0-4c13-47ae-8451-73bad53487cc)
(at 144.5 31 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C3016445")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/b6090c9a-7502-4052-a3bf-ae88ba5c2366")
(attr smd)
(fp_text reference "R18" (at -3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae078d5a-7664-4b01-942b-edb114d4f22c)
)
(fp_text value "R_40k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32c74752-5aad-42c6-afbe-ed617eb74d54)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f81133db-af6a-4be4-a73e-0748e6d36c5a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 358fc1b3-c19a-4e92-b8ab-c12e609fdb1d))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp afb562f0-4605-43ff-abe1-686af6593830))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 355a7274-b851-4a2c-bd0f-215957d176d9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6dc0d7c4-b6ca-446d-8715-61a730289215))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6e60cf24-cecf-478a-b8ee-744aa5904240))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 81858c55-de20-43c8-b5d0-7d30653c3021))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0381cb68-b8fc-4b6a-af75-4edba0b4548a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3591c99c-16c1-49ab-a322-f92732b997fe))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 790f16e1-0372-4288-b227-1f3f5ebfe94a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 98b87d6a-ff69-4012-9ac9-cedbe2cc3adf))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(JP4-Pad1)") (pintype "passive") (tstamp 0976c5be-d461-4f9a-8b5e-4c482d8b3962))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(JP4-Pad2)") (pintype "passive") (tstamp 2114dd0a-780f-4ceb-9906-ff04ab1074d1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 43b5bbed-a1cd-44cc-a397-226ffc983b2f)
(at 133.5 30)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C3016445")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/da030e29-c008-41e9-8643-7c6457325e19")
(attr smd)
(fp_text reference "R9" (at -2.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d62334d2-92a0-43d6-8a1a-03843f1dae0b)
)
(fp_text value "R_40k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d988441-608e-4012-97e4-8ae56f4c1850)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c6dba12b-4fd9-425a-adb3-d72ecb632ca2)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp bdb080c5-c30c-4523-9ffa-766fe6ddbf75))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp bf5a143a-de1a-4fa0-ba08-4dd37da751ae))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bd760abc-ff3f-4bd7-bb8c-a09e84f01515))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c45d6e3b-56a3-4278-b208-67596ada79f1))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e844aaab-5be2-4e99-8bf8-25799e06bfd7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f9780e19-5f5d-4181-80f0-50ebad3f434b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2b79f793-87f4-421f-a2e8-d3c74771095a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c0c79cf8-951b-41b7-a265-96cc35565c87))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d19511b2-5790-4240-a34e-353a5ea87d21))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e0efc4b6-60c4-49f6-9326-a8ccaf36beda))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(JP2-Pad1)") (pintype "passive") (tstamp fe2daf97-87e9-4f11-8362-d8e161d1aa7a))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(JP2-Pad2)") (pintype "passive") (tstamp 3c3fbb98-2e6b-4432-8203-04916cd843c3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
(tedit 5A64794F) (tstamp 45f42f59-2157-47b4-a511-221a1caa816e)
(at 137.5 37.5)
(descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "Diff_probe.kicad_sch")
(property "Sheetname" "")
(path "/7bf8dfee-aa36-4bb9-94c3-794e85655284")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at -3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 189cd1a5-fd8d-4626-bfd8-b61e0110ac06)
)
(fp_text value "Jumper_2_Open" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b037494-7211-478a-b4ea-af293b41bb28)
)
(fp_line (start -1.4 1) (end -1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 9d0d7fb0-e36f-45f8-b384-4a20964d8595))
(fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp a6fc4ebf-546f-4cb5-aaa3-7ff10c1847b5))
(fp_line (start 1.4 -1) (end 1.4 1) (layer "F.SilkS") (width 0.12) (tstamp d743a866-52dc-461a-b1a1-12f5d8d26a8b))