-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdouble-electronic-load.kicad_pcb
9385 lines (9341 loc) · 384 KB
/
double-electronic-load.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)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "Net-(C2-Pad2)")
(net 4 "Net-(C3-Pad1)")
(net 5 "Net-(C3-Pad2)")
(net 6 "Net-(C4-Pad2)")
(net 7 "Net-(C5-Pad1)")
(net 8 "Net-(C5-Pad2)")
(net 9 "/LOAD1_P")
(net 10 "/LOAD2_P")
(net 11 "Net-(Q1-Pad1)")
(net 12 "Net-(Q2-Pad1)")
(net 13 "Net-(R2-Pad1)")
(net 14 "Net-(R2-Pad2)")
(net 15 "Net-(R4-Pad2)")
(net 16 "Net-(R5-Pad2)")
(net 17 "Net-(R12-Pad1)")
(net 18 "Net-(R12-Pad2)")
(net 19 "Net-(R14-Pad2)")
(net 20 "Net-(R15-Pad2)")
(net 21 "Net-(Q1-Pad3)")
(net 22 "Net-(Q2-Pad3)")
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tedit 5AC8BA0D) (tstamp 02b61d02-cd0c-4d4b-9445-09b169816f8d)
(at 106.68 50.729)
(descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Vertical RM 2.54mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/b6ce3826-c22b-4604-8682-9f19e6f480aa")
(attr through_hole)
(fp_text reference "Q2" (at 2.54 -4.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14b0e2f7-32a1-4a82-85c0-fee40245d971)
)
(fp_text value "SFP50N06" (at 2.413 -2.469) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 222f48c7-bb18-4400-8b62-d9584ce6e4e5)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f5604e5-30a7-48e6-9480-5b75f39015e4)
)
(fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer "F.SilkS") (width 0.12) (tstamp 4e279d04-c2c7-4fb4-a99d-74741f93485e))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 7f6a753d-8b10-4965-b2d1-a5e7652eadea))
(fp_line (start -2.58 1.371) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 9d6e64db-735c-44e1-8371-e873ef0435be))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer "F.SilkS") (width 0.12) (tstamp a670fe7a-0e22-4ddb-bee1-64221fdead48))
(fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp bb499243-d2f2-4ff8-8511-b7f279d6db17))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer "F.SilkS") (width 0.12) (tstamp e363aa49-466f-49af-9521-2fc8a4a79861))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer "F.SilkS") (width 0.12) (tstamp e5c96f76-9e88-40d1-8bc9-e56ae25c9f71))
(fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 45156fa4-b770-4e84-a7b9-0e31eb0da4cb))
(fp_line (start -2.71 1.51) (end 7.79 1.51) (layer "F.CrtYd") (width 0.05) (tstamp ced3c876-bddf-45df-854b-1f16edb0e7c6))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp d7adf49b-b1e2-4667-8df4-fcbb4d2f354e))
(fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer "F.CrtYd") (width 0.05) (tstamp ec9d4201-6f68-483a-9a77-646ad6add477))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer "F.Fab") (width 0.1) (tstamp 017cfd78-54d6-416a-85fc-88ea153dd6a8))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer "F.Fab") (width 0.1) (tstamp 01f17dde-191f-4e9c-abad-a3fe1870e005))
(fp_line (start -2.46 1.25) (end 7.54 1.25) (layer "F.Fab") (width 0.1) (tstamp 186a112c-8668-4cf4-9963-d9ebb6bfd3e2))
(fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer "F.Fab") (width 0.1) (tstamp 60f6f5cd-0b1a-4027-a57c-2e65df5f4171))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer "F.Fab") (width 0.1) (tstamp 7db9fb57-0587-46b3-b776-e1e98ebe6060))
(fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer "F.Fab") (width 0.1) (tstamp a199ab82-0e82-4f2f-9c70-af302ba6183d))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer "F.Fab") (width 0.1) (tstamp a1c25119-3bac-4b3b-972c-c5c977ce510a))
(pad "1" thru_hole rect (at 0 0) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 12 "Net-(Q2-Pad1)") (pinfunction "G") (pintype "input") (tstamp cb48c85c-59fd-49be-a24c-85e13e8fd0a9))
(pad "2" thru_hole oval (at 2.54 0) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 10 "/LOAD2_P") (pinfunction "D") (pintype "passive") (tstamp c5ae5c28-e354-41e1-b55b-188e0c8e47bc))
(pad "3" thru_hole oval (at 5.08 0) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 22 "Net-(Q2-Pad3)") (pinfunction "S") (pintype "passive") (tstamp a1591726-25cf-4a9b-b36c-dac787aac554))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 20fdfebc-64fe-4997-af28-3881ecd4688f)
(at 114.3 61.468 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/8bd201bb-a8ed-4f09-b612-d66293f1e80f")
(attr through_hole)
(fp_text reference "R19" (at 9.144 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46182ec1-9687-4d8d-acf2-ab641f7b76e3)
)
(fp_text value "4k7" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c40368eb-1348-4b28-843a-d5785a11910b)
)
(fp_text user "${REFERENCE}" (at 9.144 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc6e5bc3-ea1f-4d93-88a1-93e33a6f8e11)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 01b709f8-5008-4ffb-af59-24db208db21d))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 03a24abe-5d3b-480d-9ba1-b2c09fcd7016))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4684fb28-ddc1-4fc9-aff5-da52d99bce4c))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 46867d9f-846a-4624-9c81-877650082278))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 799298d8-c090-492b-b347-51015a3fa655))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c9453576-4063-44dc-bbff-3691cda46af4))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 08f6b950-5c91-4779-9f17-25f07f843b7c))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 293807a4-f9be-41c8-a2a6-869d55e05010))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 84c3847e-3f7b-41d2-b46a-cf5cd376efc0))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9435a93e-4694-47e1-b54f-bf5f6dbba35c))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 156bf6d2-7e3b-4b19-a3d8-ac7cef9e619e))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 2dbf6a32-6418-4e17-b230-1dcbbcde4438))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 3ea44d39-a77d-4b3a-8e83-ef460943f9c6))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 65a42fb6-8447-477d-a40e-ea529dc50778))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 7cba2310-3d00-4ec8-aec6-f87fdf62df08))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 84d4b41c-e7ff-45fe-a5e9-b1236fe80b29))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp b7f435f0-c002-4874-9c29-662512fc4b7a))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 964654a4-a2cf-429d-b287-3ab1849b37d9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 32be4dca-0e9f-471c-9d42-1cd4ff21bc04)
(at 91.48 77.724 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/befdd90f-3b7c-4a73-a5e5-5c5dc85f4276")
(attr through_hole)
(fp_text reference "R3" (at 9.184 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5767958-85c1-4160-943c-6cfbcfc9a5e2)
)
(fp_text value "10k" (at 3.596 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5be4af39-1e24-449a-bc18-a4b2ad142408)
)
(fp_text user "${REFERENCE}" (at 9.184 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bab601e9-30c4-45e5-870c-b9440f70de8a)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 326d05b9-ac92-4c91-84c9-e12eb87a81a4))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 337f90a9-8a44-490a-a5a1-e0f24b742a93))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b2768c93-ddfd-4bda-abe3-da54171b2533))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp d1d4094a-9094-4f2a-b6ae-2196ffcdf30b))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e04499aa-4999-484c-beca-ad988ee5b58a))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp e37ea79c-4578-45cd-94be-914c1e1332ea))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 155ff763-ebb0-43a3-a819-28d91910805b))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2c57e005-507e-4925-8cb1-f7bd8efd4178))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b937ac90-5746-4bc8-a9fb-4d78e371f5cd))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d4dec22a-8a17-418f-ac26-fb63caf0e2ed))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 42148891-95b4-4aec-a2f1-43871ad95219))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 781356a2-5de2-4e59-8e69-f6241a5eba0c))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 964f4472-c029-430b-a45d-1c5932836104))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp b2f5a958-9f5f-4171-9872-b48875c16754))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp c0c7bc1a-d556-4587-b599-7724f59de1c2))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp c66f267a-d4b9-47cb-9143-39ad22561ea1))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(R2-Pad2)") (pintype "passive") (tstamp a02961b2-08c3-498a-8360-6a0aaddad773))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad2)") (pintype "passive") (tstamp 243be61f-d9a4-42aa-8cd8-f4ae9de18f01))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 3fc82fde-4817-4e0e-959c-88e3cfd91670)
(at 83.86 74.676)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/42721e08-d2f8-44c3-94a7-807a53b43723")
(attr through_hole)
(fp_text reference "R2" (at -1.564 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b66dff21-1f52-4a4e-bce6-d5a0f50745fc)
)
(fp_text value "1k" (at 3.77 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 501a01a6-d961-47bc-8ff2-46c8ba5952c0)
)
(fp_text user "${REFERENCE}" (at -1.564 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1741cd43-f83e-4bdd-910e-aa2db2530414)
)
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2d3af00b-dd66-4dfc-b549-518c7903bb39))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 68a0f3dd-346d-4f94-a9e7-7cb2fab9c683))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 9a1ac194-3fc0-4671-b01a-568737ca90d0))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp a6d91e76-e31f-4019-ac5c-21625c3e981a))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp dc9a789a-5c3e-4bd5-be0d-1daa7148ce04))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp f5324080-b43d-41aa-966d-492eae74492b))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1bb998a8-5fc1-4baf-8b18-e03b7b827b83))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 30c3259c-8f59-411e-beab-cff6a2f65f45))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4a0db47b-f627-4c5d-b7bf-43a59270621f))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c147d912-e2fa-4d1b-8e4e-58400318c44d))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 12b2a46c-8b36-4cd8-972f-66d5a42b1241))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3412eb6c-da68-4d65-bc78-cfa7d2b4a3cf))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 3e2ce6b5-7640-40cd-8891-2ad552fe84a9))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 450c9702-04cd-40f3-9d16-1984e6453dee))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 4b5137b0-3fb9-4c98-8669-29b70bd8dcca))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 9ba8a4cf-0242-4ab2-ab36-787e53eae3b5))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(R2-Pad1)") (pintype "passive") (tstamp 288d89e6-0751-439b-b69c-29d5aaf13689))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(R2-Pad2)") (pintype "passive") (tstamp 6e0a95e7-58fa-4100-8048-1e1f9da6a146))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Custom_Footprints:Lianzhe_LZ128_D-508_2" (layer "F.Cu")
(tedit 0) (tstamp 44c0af43-95e3-49b6-8939-4b9d9bf6b361)
(at 96.5454 88.8238)
(descr "Lianzhe Electronics LZ128 2-pin terminal block, pitch 5.08mm")
(tags "terminal block lianzhe")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/91fcd537-d3e6-4941-a9e6-675810d06017")
(attr through_hole)
(fp_text reference "J1" (at 2.52 -7.0358 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e1e42d6-4a76-4993-aa05-64e87a3f9368)
)
(fp_text value "Screw_Terminal_01x02" (at 6.604 7.112 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd18ea84-6dc1-4834-af81-a88a00f2a64f)
)
(fp_text user "${REFERENCE}" (at 2.5654 1.0922 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25227f56-d991-48ab-9131-addd2470bdcf)
)
(fp_line (start -1.02 -4) (end -1.27 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 0c1e070f-478a-47f2-97d0-26e9350defe9))
(fp_line (start -1.27 6.18) (end -1.27 3.64) (layer "F.SilkS") (width 0.12) (tstamp 0c9683c1-526c-4864-bf7e-a7abe7b53ae2))
(fp_line (start 4.06 -4) (end 3.81 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 34b2b0a9-919c-4646-8371-5bc6b3f3e8ca))
(fp_line (start -2.52 -2.86) (end 7.56 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 359ecc29-7ec8-488a-9f13-d5181449d841))
(fp_line (start 6.1 -4) (end 6.35 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 7c196941-2407-4bef-ae13-62849a663413))
(fp_line (start 1.02 -4) (end 1.27 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 8f550329-fcb1-4367-8eaf-1d8f24a843aa))
(fp_line (start 3.81 3.64) (end 6.35 3.64) (layer "F.SilkS") (width 0.12) (tstamp a5c46814-c9a8-429b-acd7-49f46349a9d3))
(fp_line (start 3.81 6.18) (end 3.81 3.64) (layer "F.SilkS") (width 0.12) (tstamp ac83995b-1e95-47ac-a737-7904764a5f0d))
(fp_line (start 1.27 3.64) (end 1.27 6.18) (layer "F.SilkS") (width 0.12) (tstamp addcd8c1-1ead-43fe-955d-900bcfdccf2d))
(fp_line (start 6.35 3.64) (end 6.35 6.18) (layer "F.SilkS") (width 0.12) (tstamp ca727076-00ed-4f7d-82b4-c7358ec3ec3c))
(fp_line (start -1.27 3.64) (end 1.27 3.64) (layer "F.SilkS") (width 0.12) (tstamp dd85f86f-1758-4da0-bdf0-a56546b79bd1))
(fp_rect (start -2.52 -4) (end 7.56 6.18) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3b5c1997-2c5d-4193-a22f-b474a8402600))
(fp_rect (start -2.794 -4.2672) (end 7.8232 6.4516) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2ebdf135-cec5-4389-8432-9c7b1814b339))
(fp_line (start 3.81 3.6576) (end 6.35 3.6576) (layer "F.Fab") (width 0.1) (tstamp 3564665b-a084-46a4-8ce1-16d3af50451e))
(fp_line (start -1.27 6.096) (end -1.27 3.6576) (layer "F.Fab") (width 0.1) (tstamp 4aa60df4-d6d4-4341-8c54-3bde34e5a343))
(fp_line (start 6.35 3.6576) (end 6.35 6.096) (layer "F.Fab") (width 0.1) (tstamp 8d8e6d09-7a19-45d6-9059-e61f39a19f50))
(fp_line (start 1.27 3.6576) (end 1.27 6.096) (layer "F.Fab") (width 0.1) (tstamp a942743e-5bb3-4f28-8a86-d09fac729c53))
(fp_line (start 3.81 6.096) (end 3.81 3.6576) (layer "F.Fab") (width 0.1) (tstamp c3ae2c2c-36e8-41b5-b210-ee7f89f0913d))
(fp_line (start -2.4892 -2.8448) (end 7.5184 -2.8448) (layer "F.Fab") (width 0.1) (tstamp cd40321e-5015-47c4-9c41-681fc422eca0))
(fp_line (start -1.27 3.6576) (end 1.27 3.6576) (layer "F.Fab") (width 0.1) (tstamp e12f088d-bf57-4ac6-ac6d-2cd34d6110f6))
(fp_rect (start -2.4892 -3.9624) (end 7.5184 6.1468) (layer "F.Fab") (width 0.1) (fill none) (tstamp d56ea14c-7b4a-4c89-be0b-73979ca79bb6))
(pad "1" thru_hole rect (at 0 0) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp a4e3967a-5fc6-4319-8d7c-c10d420fcca1))
(pad "2" thru_hole circle (at 5.08 0) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp bee45f5e-42e5-4188-8783-dce5a1e06176))
(group "" (id 0199b954-75ba-4756-9d3b-cde4de82f753)
(members
0c9683c1-526c-4864-bf7e-a7abe7b53ae2
addcd8c1-1ead-43fe-955d-900bcfdccf2d
dd85f86f-1758-4da0-bdf0-a56546b79bd1
)
)
(group "" (id 10a58073-aeb4-4c7e-9ab5-3257c758c9f1)
(members
34b2b0a9-919c-4646-8371-5bc6b3f3e8ca
7c196941-2407-4bef-ae13-62849a663413
)
)
(group "" (id 4cd6bf34-53cc-4c3f-8bfb-f67af3f5ca97)
(members
0c1e070f-478a-47f2-97d0-26e9350defe9
8f550329-fcb1-4367-8eaf-1d8f24a843aa
)
)
(group "" (id 5c8cfe60-2a0f-4e6e-a2b0-0a9da1c46cfe)
(members
a5c46814-c9a8-429b-acd7-49f46349a9d3
ac83995b-1e95-47ac-a737-7904764a5f0d
ca727076-00ed-4f7d-82b4-c7358ec3ec3c
)
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 4f294e7e-b000-4e1a-89a8-beee495aa184)
(at 114.3 55.372 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/31900e83-aaef-48d1-8475-bde25627f1c7")
(attr through_hole)
(fp_text reference "R18" (at 9.144 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f78101b-84a3-4d54-9dd9-044903c80bb7)
)
(fp_text value "1k" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2131e111-f34f-481b-a2df-71283f2633ae)
)
(fp_text user "${REFERENCE}" (at 9.144 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abbcd6e3-1bc3-4e57-89df-bdba33b12b91)
)
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 04273428-b177-41b3-8a69-aed8453f47f4))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0523a223-12a0-431c-a0b0-512efba1624b))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0e28cb09-169a-4af5-95c7-910cfd3c9a9a))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 76d829e5-ebf9-4196-a081-bd2d922cd719))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 99d878ce-2199-40af-bf36-98c7b5288d47))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp dac9596a-1a22-4afe-8cfa-fd413553e3f2))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0c96d434-1d1d-4342-aac0-4b52bd896b88))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2e9ee90f-1b13-4870-bb08-749c49f076aa))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6f733a7c-bba4-4a64-bc20-19c0b017e8d8))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8caa1ff7-2cc3-40c8-8566-42ba36e5bc54))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1d8a93ce-4f97-42d3-9fb7-67842cf65752))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3857954b-0a60-456a-8178-0816b6babde3))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 74309ee7-5188-4b7b-bf1a-7b03884ab94d))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 7b3732c9-b132-49e7-88d1-6ce41cbcc5e9))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 8d5374bc-8f30-43b0-955a-9aff94d1c23d))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp a4d1183e-8d9c-4406-831c-6da3fc8a07d2))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C5-Pad2)") (pintype "passive") (tstamp 8931db33-95bf-41d0-8c6f-71a2f7961350))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 235d8418-f021-4973-b040-6f4f1f726f29))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 55fedfaf-ce8a-4345-a955-0ccc9a70d5e2)
(at 91.44 55.372 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/c6de061b-6287-4a93-9451-d137a7e9e2d6")
(attr through_hole)
(fp_text reference "R8" (at 9.144 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2e37869-41e9-4503-aa24-d08a594a1c2a)
)
(fp_text value "1k" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b9cee7b-f696-4aeb-9ff5-f007dac394a1)
)
(fp_text user "${REFERENCE}" (at 9.144 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41898f63-5720-40e4-99b2-c59fa6e73e07)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 049d4cd6-ab60-4cc3-aa8b-5f530475c90e))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 2c34bdb2-292a-425e-a4c8-9c9a50e1f731))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 450f216b-0a21-4959-8f76-4b1e5fa34d1b))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 540246d7-ed27-4fdd-ae8f-467c036ea89e))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5a6d4caa-8fb0-43a4-868d-6d2e526ac828))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9830d5e8-c2b2-4b97-9480-badad14bb1cb))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 11b73982-9748-44c0-8a02-a75d38145f00))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 138fb617-ae52-4c5e-8bd1-65033c1eecc5))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bdb6e1d0-dc2c-47a0-84ca-d4f8ae47052c))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e8662c23-e63b-441b-a3ff-ab56cf1c951b))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0866b6b0-e8a1-43ae-9090-44b76492b144))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 0f374852-2a13-4d6b-856f-075f82340300))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 1147982c-f231-4fcf-bbf3-f60df31f75d3))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 1b563c72-d35c-4af9-9d33-3f627f86168e))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 5144297f-703a-4d0f-b717-20a700217c65))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp e253ac41-900f-4259-879b-67dd4d7ab8ef))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad2)") (pintype "passive") (tstamp 1efdd77e-cea9-4acd-bdb6-f5ed9f3684b0))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 9f147fa0-1e88-4c73-9d00-cc0dc3a5c8c3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.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 5cc5a3bd-bc05-48ab-a08c-a011d906ad43)
(at 78.74 91.948)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/5e449207-59b4-4535-96f1-889ce742d90e")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1126afb7-dc30-4cf9-8aed-07238b30e295)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14de4774-b27d-4943-ace1-3d1b6d57d334)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3e2ad31-cd09-47bc-b5b0-220e702f96ae)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e4dd9832-c900-4c01-b8c5-f6697eb9b93e))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 115af5dd-1ebe-44a9-9820-100c79bfba9e))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers F&B.Cu *.Mask)
(clearance 2) (tstamp 7dc81883-e5c6-45fa-ac68-01a0b1d5859a))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 622b6080-23c3-4510-b38d-9772f2762ee6)
(at 91.44 61.468 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/8c86ffbe-83d8-412b-afa3-c212971b84a5")
(attr through_hole)
(fp_text reference "R9" (at 9.144 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8bdee72e-499d-4348-87e1-99de77bd4e80)
)
(fp_text value "4k7" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b037390e-917f-48be-8d4b-68ffd1cf0350)
)
(fp_text user "${REFERENCE}" (at 9.144 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e066ed1d-22fc-46e0-929b-26a77dedaaf4)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0bedbe2e-9cd8-4096-848e-65812d537494))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 272b7d36-1eb2-47aa-b741-12737bccd124))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 43e27229-cb9d-456c-85c2-2e04cef94b90))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 4522a26c-7660-404d-8004-a48cad93e63e))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp ccea372e-550e-44bf-9929-ab95d749d708))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp e102a7dc-e00b-40a6-9b7d-5624625258ec))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 85267f13-79cd-4e0b-aceb-3b71553718c3))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 86d6a059-ec21-4441-bcec-ade6578dc468))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9d1d9d1b-996e-4f7b-8373-3fa38117a4e1))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp aebd7b2b-5d57-48a2-a0b3-4f97d310d55c))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 236b2f9e-3d86-490b-9fda-2fed0653cc6a))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 58a485b5-54ae-4fad-a104-5552196bd2d1))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 5c93280d-00bf-4c84-88fc-c1423efd80de))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 648ff7e3-4151-4b38-b4d5-2632b73d4850))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp cc7d1216-063d-4a99-989a-d5a0e2e5d5d4))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp f84b9e85-17f7-4c49-b34b-f0200c5c2a69))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 26fd309a-af78-47fc-9dc8-0e2443458245))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 6960c793-d678-46d5-bf5f-db9c724339bb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.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 63b1b598-e373-43e0-b1e5-4675d4c546cc)
(at 78.74 79.756 -90)
(descr "Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf")
(tags "Potentiometer vertical Bourns 3296W")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/436e0113-c595-4110-bdbc-026b89a30e7c")
(attr through_hole)
(fp_text reference "R4" (at 3.556 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bb09d89-4900-455a-b228-4c4e93ee298f)
)
(fp_text value "2k" (at -2.413 -1.651 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ae28fe5-7162-4d5f-b4b9-87c9020d4fc6)
)
(fp_text user "${REFERENCE}" (at 3.556 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93ff3420-c48b-4ea8-8394-f9f61cb0ecc8)
)
(fp_line (start -7.425 -2.53) (end -7.425 2.54) (layer "F.SilkS") (width 0.12) (tstamp 615d4d1c-9312-4469-b26c-5ed644e48990))
(fp_line (start 2.345 -2.53) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp 68975c12-0da2-4e25-9b12-de7b8641f0fd))
(fp_line (start -7.425 2.54) (end 2.345 2.54) (layer "F.SilkS") (width 0.12) (tstamp 8792e67e-0dd3-441f-9189-cdd84722d99a))
(fp_line (start -7.425 -2.53) (end 2.345 -2.53) (layer "F.SilkS") (width 0.12) (tstamp 8d917931-a6f8-4f6f-be4b-110395db3386))
(fp_line (start -7.6 2.7) (end 2.5 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 044e281e-c69a-4b55-8d08-e4906dfaf2f5))
(fp_line (start -7.6 -2.7) (end -7.6 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 2e96cdca-b216-48c2-a8c2-5f31e8a32e0e))
(fp_line (start 2.5 -2.7) (end -7.6 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 8c820ce3-f8db-4a31-999c-9e4f731bba64))
(fp_line (start 2.5 2.7) (end 2.5 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp b70d4fe1-fa3b-4593-b7ae-b9083e314619))
(fp_line (start -7.305 -2.41) (end -7.305 2.42) (layer "F.Fab") (width 0.1) (tstamp 321ec950-6445-41d0-a2d9-6a580426b13d))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp 4a6a9453-8e5c-49de-8bc2-3a88b272ff56))
(fp_line (start -7.305 2.42) (end 2.225 2.42) (layer "F.Fab") (width 0.1) (tstamp 7d4e0a70-b93c-4407-b366-90ab7fd8212b))
(fp_line (start 0.955 2.235) (end 0.956 0.066) (layer "F.Fab") (width 0.1) (tstamp bf0deec9-27e8-4cef-948e-ae5cc54ad1a1))
(fp_line (start 2.225 -2.41) (end -7.305 -2.41) (layer "F.Fab") (width 0.1) (tstamp c3a19517-e629-4be0-9d31-1ffa8b111b5f))
(fp_line (start 2.225 2.42) (end 2.225 -2.41) (layer "F.Fab") (width 0.1) (tstamp dfa84221-ecae-4c28-9079-8f70cc1aa798))
(fp_circle (center 0.955 1.15) (end 2.05 1.15) (layer "F.Fab") (width 0.1) (fill none) (tstamp c1019774-eb1b-43b4-b11f-d6f932d9d215))
(pad "1" thru_hole circle (at 0 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(R2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 41017397-52cd-432d-90cf-eee5e917a5c1))
(pad "2" thru_hole circle (at -2.54 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(R4-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 81bccb23-60f9-43b4-ae85-3123ac967003))
(pad "3" thru_hole circle (at -5.08 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "3") (pintype "passive") (tstamp 64314935-75b5-46cd-942b-40a1f27a52b5))
(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 "Capacitor_THT:C_Disc_D5.1mm_W3.2mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 6a37d366-dd9a-4b62-9762-74f3e41e94b9)
(at 107.99 68.072)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/ef03b60b-1783-4460-95a0-88f880ea40a9")
(attr through_hole)
(fp_text reference "C5" (at 2.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1de31dc1-c2ee-4687-aa6a-8e685b0c978d)
)
(fp_text value "1n" (at -1.945 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c7f44aa-a6d1-42c1-a66b-35594cdcbebd)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f535f310-9927-4822-9663-545dd26edfa1)
)
(fp_line (start -0.17 1.721) (end 5.17 1.721) (layer "F.SilkS") (width 0.12) (tstamp 118bea81-023a-47d5-bdd4-4638510ff12b))
(fp_line (start 5.17 1.055) (end 5.17 1.721) (layer "F.SilkS") (width 0.12) (tstamp 45997857-f4e2-4983-bd97-977b2b945a16))
(fp_line (start 5.17 -1.721) (end 5.17 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 82cef682-3603-4937-b1ec-d14153b22aad))
(fp_line (start -0.17 -1.721) (end -0.17 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 92e66f8e-4f6d-49fa-94bc-bba73e01aedf))
(fp_line (start -0.17 -1.721) (end 5.17 -1.721) (layer "F.SilkS") (width 0.12) (tstamp f1627aa8-110f-4e77-8615-a8c2134c2526))
(fp_line (start -0.17 1.055) (end -0.17 1.721) (layer "F.SilkS") (width 0.12) (tstamp fa43fe9d-064a-461c-b1eb-da2af3682d44))
(fp_line (start -1.05 1.85) (end 6.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 151320ac-88e7-429b-8b8f-8a7ab2086958))
(fp_line (start 6.05 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 1adc6c00-4a61-4ce8-b976-eb644fb0043c))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 33ad1685-ae78-4e0e-863b-d45d8498a8f8))
(fp_line (start 6.05 1.85) (end 6.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 7eba71b9-4eab-4cea-96c6-5229edf9a2a2))
(fp_line (start -0.05 -1.6) (end -0.05 1.6) (layer "F.Fab") (width 0.1) (tstamp 03c787b3-6f3d-4e58-84f2-2d553bf912a1))
(fp_line (start 5.05 1.6) (end 5.05 -1.6) (layer "F.Fab") (width 0.1) (tstamp 6629d39b-0147-4c88-a982-c1bf10b57c58))
(fp_line (start -0.05 1.6) (end 5.05 1.6) (layer "F.Fab") (width 0.1) (tstamp 72c58f4b-27ff-4966-b346-213b82709dd9))
(fp_line (start 5.05 -1.6) (end -0.05 -1.6) (layer "F.Fab") (width 0.1) (tstamp f023a81c-9798-4e33-8377-a2d2e1e324f5))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C5-Pad1)") (pintype "passive") (tstamp 00c78c30-bd9c-4cf7-a824-fc9d732558fb))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C5-Pad2)") (pintype "passive") (tstamp 38c1df5b-7ea6-451a-99c7-904a0235529c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.1mm_W3.2mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 7066de21-779a-4cec-8ad2-0c5e6dda013e)
(at 106.68 58.42)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/a7a202ce-c3bf-4b6e-915e-0c8f51283706")
(attr through_hole)
(fp_text reference "R16" (at -1.524 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a615a0f-0cc4-4a12-a21b-99c10b72bd0c)
)
(fp_text value "220k" (at 3.937 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9aa2f762-d58b-4891-b0e2-04e1a0ea823a)
)
(fp_text user "${REFERENCE}" (at -1.524 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a047b1c0-5db7-480d-b118-bc33976259e6)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 00af3c9b-9b56-45d6-a90f-b56fd67d4039))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0f1487b2-b2a5-41fb-be3e-4a01e3533971))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 10f118cb-639e-4f6a-ae5f-005d9871707e))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 47a41861-6f44-43c3-8718-2eddf33aa33a))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 6486c5ea-964f-4a1f-a9f5-10f7c4ad2181))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7226d780-8849-4107-8b07-aab664e5b242))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6a4ec1cd-305e-4b95-8841-0394b3c01209))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 78241044-9b84-4011-a8a3-d62c41b15080))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d7d64283-f984-4cca-a92d-d1ea0adcf23d))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f8fe5564-a396-4125-a4b0-504be287e96f))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 49fadcce-8b1d-4f4c-a8e4-980b61ea936d))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 63df0c63-c816-444b-9633-02421318b40d))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp a0841d72-7f75-487d-89d0-3cc39f4342d9))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp a6082edf-9358-4298-8d67-7d8756f1626c))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp ac3d6758-2ce2-49d6-aef6-965d12ed8871))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp cea952ff-1140-48e2-a015-8a2d60e7a42f))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C5-Pad1)") (pintype "passive") (tstamp 9bfb575c-beaa-46df-a5f7-de8465fe5758))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C5-Pad2)") (pintype "passive") (tstamp ea875e80-1b59-449d-839c-b29155b0b348))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 75288996-7f2b-4994-a5b0-d585286d8998)
(at 91.48 80.772 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/9c58bf49-96e3-4639-8885-040ae784f3b8")
(attr through_hole)
(fp_text reference "R1" (at 9.184 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 005b790d-499c-484b-a419-05109741d983)
)
(fp_text value "1k" (at 3.85 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7673a32-f3a5-42c2-9191-de13dceecb2d)
)
(fp_text user "${REFERENCE}" (at 9.184 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f5d24b0-f090-4d39-9db6-b51835e3a6be)
)
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 5f54655c-0d81-4c8c-9796-b6a04784c2fd))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6e101356-c7b1-4af7-a29e-bd2a4f5996ba))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b38a62de-6742-4451-b139-76df721e54d0))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp e64134c6-7c44-4069-9bed-1f49606e2b77))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f41f9eca-ea29-45a6-b921-f0d5ab70a706))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp face18d1-3149-448a-b1b1-18dee30ea858))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 82db0c0a-51f7-4fa1-b85e-0078bba13f5a))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c7d3cf9c-49f3-438e-9cf6-6e7224d3e1a9))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp caaa20c1-1b88-4f56-8368-920edd5e6f89))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp df874f25-4262-4887-b425-976a216201e4))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 02f45178-2bd7-4b11-ac79-b865ad93aefa))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 17c80840-b614-4f91-bf4a-69ede8f7018c))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 43699e3c-7048-44c5-9ffb-f03c5798f142))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 59a1a466-ac46-4100-bf70-a2c2d3e2acb5))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp bbfa9b06-212b-4f66-8535-3ae589235f2c))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp be417836-e93a-445b-946e-f5bad6788a12))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "VCC") (pintype "passive") (tstamp 4b96572b-6637-4ebb-8ea5-eddad6f2464e))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad2)") (pintype "passive") (tstamp d2934ce2-832d-4139-94fa-f7e534fef2cf))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 7c0e93bc-b813-4d61-ac8d-ffdc82380659)
(at 83.86 71.628)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/cbbb411d-886e-41be-9e80-40daf2c88a96")
(attr through_hole)
(fp_text reference "R5" (at -1.564 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cd8bac5-813b-4547-9509-345ceb97c064)
)
(fp_text value "1k" (at 3.77 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee7cc210-5280-4b98-a9ea-afc5dc7db906)
)
(fp_text user "${REFERENCE}" (at -1.564 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d9d6d5a-76ad-4e25-9068-6c608fcded55)
)
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 06d11dee-1f85-49d1-aae9-7ae792b045f3))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 16d907aa-cb20-4713-8eb1-a451d931a2a9))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6f0a2b0a-0600-42b5-a2a0-7b20fef9c9c2))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 9299d3d0-cf6e-4b98-a086-97f4b989e8e4))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9ac766fd-518a-4280-b6ed-dbeaf1a1dcaa))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c600996d-a002-4978-8832-8fa6c9942e7d))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 442ee14e-51e4-446e-92d0-13dd319e1442))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6f1bfa77-dcca-488a-bf20-6d17c4711465))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cc2b7a0d-987a-4e7b-aec6-b188d5e03cdc))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp dc438755-da6c-4333-8657-da49a8c3e164))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 1bcf043f-9723-4f1d-be1e-4f9493fd9639))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 8dfbc97b-9a68-433a-ad86-bc72bbc664fd))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 928d9c0c-0687-4fb2-9510-768197749b5e))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 94394812-b017-4536-a161-ae8e0d84eb6b))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp c9a57cc8-7b12-45e7-a069-6d9c81b69d81))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp ee5f5470-0cd4-4df2-ae4a-bc8739668b95))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(R4-Pad2)") (pintype "passive") (tstamp a4fd5979-27e3-44e6-8616-22d6dfad6b2f))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R5-Pad2)") (pintype "passive") (tstamp 74e14688-f1b9-4c43-8b66-07a8ae3d9484))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 7cc2c171-e5dc-40f8-8594-18d27a294876)
(at 114.3 71.628 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/163b8d09-67af-45d9-bb45-718ea138b6e3")
(attr through_hole)
(fp_text reference "R15" (at 9.144 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe224ade-b97a-4885-a511-108e51336f30)
)
(fp_text value "1k" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2aeaa303-bbae-4d76-9655-568fcd23159e)
)
(fp_text user "${REFERENCE}" (at 9.144 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78989433-71af-4908-9d4f-6e3653f56daa)
)
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2e66342c-0722-48ad-87dc-20589ab54bc0))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 52fac775-b1a9-401b-b006-454de559b0d7))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp b0a16dfe-4bdd-49cf-9b7f-a0c182a8fc4d))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp db8b4f44-571e-4f28-bf19-6a8cc9ffad51))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp ef4dae85-0988-44b0-a706-114d1d955d0f))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp f78ae4b9-f981-4ff9-b144-55339fdb4823))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 17473ddf-c1f5-42e9-aa0a-6cb30860583e))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 219ef13b-c07e-4193-8737-332cc4eddde6))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3769d654-0835-491c-99b3-47a0635675f2))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e82e2f4d-41a6-487b-81f4-e8ac597e79b7))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 4ba190c5-60bc-4a7a-8857-086c85555bd0))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 56592e9d-298c-4a7f-89d5-8b53ed0a0c6c))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 608aa9a0-e6a4-44ca-b67e-51c88085b3ab))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 6b1592b9-648e-4065-beeb-4bfd23b14838))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 8969fc15-ca7d-4a55-b428-3c801c67234b))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp ad8a6568-ae77-4391-b298-6a179f47f55c))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(R14-Pad2)") (pintype "passive") (tstamp 940f6138-df6b-42d2-a8aa-bb249e2b35dd))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(R15-Pad2)") (pintype "passive") (tstamp fd94a7a6-2347-41db-ba0a-fc6c70d4c446))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Box_L14.0mm_W5.0mm_P9.00mm" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 804de0e7-b6ab-410e-baed-4c32acf507a0)
(at 119.38 65.46 90)
(descr "Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf")
(tags "Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/ef2cc9ac-6bef-432f-a1db-b7d6184f8dcd")
(attr through_hole)
(fp_text reference "R20" (at -3.628 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7bd99d1-ec5e-4654-b920-130b888e574b)
)
(fp_text value "0.22R 5W" (at 4.5 1.651 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c131f7b-2115-46b2-ade0-e1ab9a93662e)
)
(fp_text user "${REFERENCE}" (at -3.628 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 351171d1-a2e1-4793-8255-5c99851d6458)
)
(fp_line (start -2.62 -2.62) (end -2.62 2.62) (layer "F.SilkS") (width 0.12) (tstamp 0bd56adf-8590-4eb8-a4e6-82f31acc450a))
(fp_line (start -2.62 2.62) (end 11.62 2.62) (layer "F.SilkS") (width 0.12) (tstamp 36eec543-9989-4d2d-9428-130222aa7747))
(fp_line (start -2.62 -2.62) (end 11.62 -2.62) (layer "F.SilkS") (width 0.12) (tstamp 7a275eed-cced-4bfe-a543-4b20fc0c0b7c))
(fp_line (start 11.62 -2.62) (end 11.62 2.62) (layer "F.SilkS") (width 0.12) (tstamp b38088d3-b69d-460d-aef9-996d99b24679))
(fp_line (start -2.75 2.75) (end 11.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 4da23de5-95c0-4cdd-bea4-4de931569d9a))
(fp_line (start 11.75 2.75) (end 11.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 8034881c-cadb-470a-9f83-eaa22e74c885))
(fp_line (start -2.75 -2.75) (end -2.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 9215793a-dbbf-457a-80f9-f88babbbe587))
(fp_line (start 11.75 -2.75) (end -2.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp f3f28f1d-8c4a-46ae-ae0b-ff41a77dc4ab))
(fp_line (start 11.5 -2.5) (end -2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 43b25708-12ba-40cc-883f-876fe3156dec))
(fp_line (start 11.5 2.5) (end 11.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 48acbfb5-bde2-4b8b-afa3-faf30460a1c5))
(fp_line (start -2.5 2.5) (end 11.5 2.5) (layer "F.Fab") (width 0.1) (tstamp e9c0a74d-dd20-46dc-9437-38c4c05bc32a))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp f4dbc523-7fd0-42fa-9303-87e891670fa5))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp b5b5f146-9326-4173-a3ef-c6a56ed4eb89))
(pad "2" thru_hole circle (at 9 0 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 22 "Net-(Q2-Pad3)") (pintype "passive") (tstamp ba78c0e6-38e4-45a6-a03d-34b643318369))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Box_L14.0mm_W5.0mm_P9.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 814df0ef-d8b9-44cb-8291-89120fc76191)
(at 114.3 74.676 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/d134a89b-85e4-40fc-bba6-dd0ad1077bd7")
(attr through_hole)
(fp_text reference "R12" (at 9.144 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3055a1e-5471-4c2c-95e6-3d60bb37763d)
)
(fp_text value "1k" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 140d54d6-f44f-4579-96c0-2fe0b837f6e3)
)
(fp_text user "${REFERENCE}" (at 9.144 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9866cdd9-bf6b-4121-92b3-bcee48276340)
)
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 3d229a85-5dfb-473e-af44-fbb041fdd7c7))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 6081f10a-a25a-4775-a095-3d6a36e7968e))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8339a81d-874a-4de8-9a44-57b7b113c060))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp a78bd0f0-7aa6-4276-a9f2-7653c31daa1d))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp ccc5e1db-55d8-4fef-8743-300e36febaf5))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e119ae81-80ec-4a6d-9db9-fb0d6d77b5fd))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7db05425-4169-43c4-91e5-0fe777bd5ec2))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 970f850c-5223-4e52-bf94-abb6377e6092))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a851b4b2-6e32-4ef3-9f41-0170eac75c6d))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cb634b11-735d-4134-84d0-94c910428efe))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 282a63dc-a7e3-440f-82e3-d5b9874adeb1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 759d523c-e1c2-46a7-a68b-cc919e7fbd6a))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp c2c17c0b-d370-4875-93d0-f2d872cea326))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp c81a90f7-51ae-46a3-b5fc-040b6403ad4d))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp f6957943-d4a5-4cb8-aeb6-25f5ef87c474))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp fd95b915-2293-4650-b557-d223ead2f16a))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(R12-Pad1)") (pintype "passive") (tstamp 786d6e31-f9b0-40f2-b6cb-9bafded18e11))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(R12-Pad2)") (pintype "passive") (tstamp b80889f3-5dc4-40a0-af86-a8c5bad24fcd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Custom_Footprints:Lianzhe_LZ128_D-508_2" (layer "F.Cu")
(tedit 0) (tstamp 83afda8a-51eb-488a-8967-cb981b244092)
(at 106.68 88.8238)
(descr "Lianzhe Electronics LZ128 2-pin terminal block, pitch 5.08mm")
(tags "terminal block lianzhe")
(property "Sheetfile" "double-electronic-load.kicad_sch")
(property "Sheetname" "")
(path "/384f4a3d-2644-460b-8bfa-a1d26fabd713")
(attr through_hole)
(fp_text reference "J3" (at 8.89 -3.3528 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cb3288c-61b7-425a-9bbe-9e996d1b7ac8)
)
(fp_text value "Screw_Terminal_01x02" (at 6.604 7.112 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a683d3b-7a82-49d9-83f9-4b6ff7f6599a)
)
(fp_text user "${REFERENCE}" (at 2.4892 1.0922 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbec222b-2ef2-4dd9-9933-436eba9cf323)
)
(fp_line (start 3.81 6.18) (end 3.81 3.64) (layer "F.SilkS") (width 0.12) (tstamp 0a41bdd6-b5c3-486f-8c7e-78e5ae0475ef))
(fp_line (start 4.06 -4) (end 3.81 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 2b08f15c-491e-4c2a-a48a-2f3d8ec9fab2))
(fp_line (start 6.1 -4) (end 6.35 -2.86) (layer "F.SilkS") (width 0.12) (tstamp 4131ecff-67f8-4490-a789-dcbe4654a693))
(fp_line (start 6.35 3.64) (end 6.35 6.18) (layer "F.SilkS") (width 0.12) (tstamp 49addf2b-8689-4d4e-a3be-c509ebcfc507))
(fp_line (start 1.27 3.64) (end 1.27 6.18) (layer "F.SilkS") (width 0.12) (tstamp 804ce27f-0a56-40e8-a86b-fa8d24426445))
(fp_line (start 3.81 3.64) (end 6.35 3.64) (layer "F.SilkS") (width 0.12) (tstamp 8b3f6315-2cf4-4a8e-a33b-703a86f1d469))
(fp_line (start -1.27 3.64) (end 1.27 3.64) (layer "F.SilkS") (width 0.12) (tstamp 90def7f8-99c1-4371-b821-16777dc45777))
(fp_line (start -1.27 6.18) (end -1.27 3.64) (layer "F.SilkS") (width 0.12) (tstamp a800bc94-cbf6-424a-83b0-7d2ff4ed85d8))
(fp_line (start -1.02 -4) (end -1.27 -2.86) (layer "F.SilkS") (width 0.12) (tstamp abe698ed-9a52-41d0-ad72-3f44e79aacb9))
(fp_line (start -2.52 -2.86) (end 7.56 -2.86) (layer "F.SilkS") (width 0.12) (tstamp c67063c0-840b-40a0-b942-e82c02ac3940))
(fp_line (start 1.02 -4) (end 1.27 -2.86) (layer "F.SilkS") (width 0.12) (tstamp e8cd86bc-bb05-4e6d-afde-28307093f035))
(fp_rect (start -2.52 -4) (end 7.56 6.18) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 1d67adbb-c163-4fc2-bca8-091937852f25))
(fp_rect (start -2.794 -4.2672) (end 7.8232 6.4516) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 05f32a4d-7236-44b5-8d84-e8d44acc1288))
(fp_line (start -1.27 3.6576) (end 1.27 3.6576) (layer "F.Fab") (width 0.1) (tstamp 17a46b63-d2f0-49e8-97ac-c14ebbad358f))
(fp_line (start 6.35 3.6576) (end 6.35 6.096) (layer "F.Fab") (width 0.1) (tstamp 495d43cd-a015-4f11-aee0-533fdbb10aec))
(fp_line (start -2.4892 -2.8448) (end 7.5184 -2.8448) (layer "F.Fab") (width 0.1) (tstamp 63ce02a9-70d2-44c9-be16-eab564295d91))
(fp_line (start 1.27 3.6576) (end 1.27 6.096) (layer "F.Fab") (width 0.1) (tstamp 64952e2b-a262-455c-820b-5556706b43bb))
(fp_line (start -1.27 6.096) (end -1.27 3.6576) (layer "F.Fab") (width 0.1) (tstamp 687b0779-82f3-434f-a5fc-1af4e72ed340))
(fp_line (start 3.81 6.096) (end 3.81 3.6576) (layer "F.Fab") (width 0.1) (tstamp 7bd721bc-ea21-492d-bcef-dff7436a46f9))
(fp_line (start 3.81 3.6576) (end 6.35 3.6576) (layer "F.Fab") (width 0.1) (tstamp 7dcabc58-46c2-4382-8821-6eb99ee6625a))
(fp_rect (start -2.4892 -3.9624) (end 7.5184 6.1468) (layer "F.Fab") (width 0.1) (fill none) (tstamp 219e4851-b3ed-487f-903f-e085d9f87ec3))
(pad "1" thru_hole rect (at 0 0) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 10 "/LOAD2_P") (pinfunction "Pin_1") (pintype "passive") (tstamp 909d1f60-f168-434f-97ac-c0c52b59fb9e))
(pad "2" thru_hole circle (at 5.08 0) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 0c5a68e5-0532-4ac3-9e21-96a4356125c2))
(group "" (id 4d59224b-5271-49e7-b2c6-ad42db2a1bd2)
(members
2b08f15c-491e-4c2a-a48a-2f3d8ec9fab2
4131ecff-67f8-4490-a789-dcbe4654a693
)
)
(group "" (id 8b1362ef-d4fa-405f-af3c-4fedc70392d4)
(members
0a41bdd6-b5c3-486f-8c7e-78e5ae0475ef
49addf2b-8689-4d4e-a3be-c509ebcfc507
8b3f6315-2cf4-4a8e-a33b-703a86f1d469
)
)
(group "" (id b7b07856-bd9f-40d4-9889-3f4072e6a270)
(members
804ce27f-0a56-40e8-a86b-fa8d24426445
90def7f8-99c1-4371-b821-16777dc45777
a800bc94-cbf6-424a-83b0-7d2ff4ed85d8
)
)
(group "" (id eeaee8cb-d6e0-4eaf-bb01-18b7e5dfa059)