-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLED_amplifier.kicad_pcb
More file actions
3557 lines (3522 loc) · 181 KB
/
LED_amplifier.kicad_pcb
File metadata and controls
3557 lines (3522 loc) · 181 KB
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" power)
(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 "HAL lead-free")
(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 "../../kicad/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(D1-Pad2)")
(net 3 "Net-(D2-Pad2)")
(net 4 "/O0")
(net 5 "/O1")
(net 6 "Net-(D5-Pad2)")
(net 7 "Net-(D6-Pad2)")
(net 8 "/O2")
(net 9 "/O3")
(net 10 "/I0")
(net 11 "/I1")
(net 12 "/I2")
(net 13 "/I3")
(net 14 "+12V")
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294F11) (tstamp 0f27f0d9-c272-461b-a43f-545f517438cb)
(at 145 55 180)
(descr "Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm")
(property "MPN" "1711725")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/586d86b6-983f-4621-993a-20c80b62f6cb")
(attr through_hole)
(fp_text reference "J2" (at 2.54 -6.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a9d18d4-8daa-4760-b15b-27d5fb779267)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 6.36) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7998b78c-9e21-4867-a7a6-204561320f0e)
)
(fp_text user "${REFERENCE}" (at 2.54 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d79d6c9d-0feb-442c-acc3-697b094eb30f)
)
(fp_line (start 4.073 1.274) (end 3.693 1.654) (layer "F.SilkS") (width 0.12) (tstamp 01687d87-0d74-420f-aa9c-8c0272de2a1a))
(fp_line (start 6.734 -1.388) (end 6.339 -0.992) (layer "F.SilkS") (width 0.12) (tstamp 0c085e30-6e42-4a6f-bf14-186d16dfc159))
(fp_line (start 3.822 0.992) (end 3.427 1.388) (layer "F.SilkS") (width 0.12) (tstamp 13a53bff-8aad-4a9f-92a3-3174487441f7))
(fp_line (start -2.6 5.36) (end 7.68 5.36) (layer "F.SilkS") (width 0.12) (tstamp 1b56fb18-ca7b-4e77-abd9-0b5959b08006))
(fp_line (start -2.6 -5.96) (end 7.68 -5.96) (layer "F.SilkS") (width 0.12) (tstamp 42718928-b384-45f3-a80b-102bfc73250c))
(fp_line (start -2.84 4.86) (end -2.84 5.6) (layer "F.SilkS") (width 0.12) (tstamp 6710bd67-78a3-4742-a7fe-f30744313a83))
(fp_line (start -2.6 -5.96) (end -2.6 5.36) (layer "F.SilkS") (width 0.12) (tstamp 69694667-c72c-448f-8063-844736e4bb40))
(fp_line (start -2.6 -3.9) (end 7.68 -3.9) (layer "F.SilkS") (width 0.12) (tstamp 6d27297e-b30b-446b-9ab0-79371a87d353))
(fp_line (start -2.6 4.8) (end 7.68 4.8) (layer "F.SilkS") (width 0.12) (tstamp 6f11ae9f-57d1-4bf4-b8ec-26d56f79864c))
(fp_line (start 6.468 -1.654) (end 6.088 -1.274) (layer "F.SilkS") (width 0.12) (tstamp 7c3519a8-4ddd-4eb7-b07c-64515e148295))
(fp_line (start -1.548 1.281) (end -1.654 1.388) (layer "F.SilkS") (width 0.12) (tstamp 8a800d1e-6ed0-4f33-bfde-6fd83d948a73))
(fp_line (start 1.654 -1.388) (end 1.547 -1.281) (layer "F.SilkS") (width 0.12) (tstamp a1d3fadc-18b8-48a0-af7a-d86798294c97))
(fp_line (start -2.84 5.6) (end -2.34 5.6) (layer "F.SilkS") (width 0.12) (tstamp a365f796-7c1e-49f2-a6c8-863909b3bc98))
(fp_line (start -2.6 2.3) (end 7.68 2.3) (layer "F.SilkS") (width 0.12) (tstamp be0b70fc-3a80-4b93-8907-cb359e959511))
(fp_line (start -1.282 1.547) (end -1.388 1.654) (layer "F.SilkS") (width 0.12) (tstamp c1ccb2cf-59ab-4828-b961-6901319a2f51))
(fp_line (start 7.68 -5.96) (end 7.68 5.36) (layer "F.SilkS") (width 0.12) (tstamp e2583943-b36f-46ca-9ad8-0096696ae56f))
(fp_line (start 1.388 -1.654) (end 1.281 -1.547) (layer "F.SilkS") (width 0.12) (tstamp f37ab809-ecef-4947-9feb-2485e955b194))
(fp_circle (center 0 0) (end 2.18 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 23466065-0cc3-4f89-acc0-2402d5a31fb4))
(fp_circle (center 5.08 0) (end 7.26 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 68d0f57e-2be2-406b-a29f-258b8ef0debb))
(fp_line (start -3.04 -6.4) (end -3.04 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 6e22376d-c8b4-4132-94af-3f37b0f830c2))
(fp_line (start -3.04 5.8) (end 8.13 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 8a2e93f3-5261-4a00-b7ee-46ff1720f842))
(fp_line (start 8.13 -6.4) (end -3.04 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp a82995fb-b48d-4c9f-89bf-d82d4016f0f3))
(fp_line (start 8.13 5.8) (end 8.13 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp b2826590-3d53-4936-a902-7c6e778dae52))
(fp_line (start 7.62 -5.9) (end 7.62 5.3) (layer "F.Fab") (width 0.1) (tstamp 0a258505-a9db-4d12-97c9-41f978875b51))
(fp_line (start -2.54 -5.9) (end 7.62 -5.9) (layer "F.Fab") (width 0.1) (tstamp 431d4e0d-e555-463c-b8b8-310d7104ab84))
(fp_line (start -2.54 -3.9) (end 7.62 -3.9) (layer "F.Fab") (width 0.1) (tstamp 797624fd-3e55-4e7b-a32c-14db55d72a3b))
(fp_line (start 7.62 5.3) (end -2.04 5.3) (layer "F.Fab") (width 0.1) (tstamp 7aef1262-1bf2-4008-8af8-7dd3a37aa9ff))
(fp_line (start -2.54 2.3) (end 7.62 2.3) (layer "F.Fab") (width 0.1) (tstamp 7f912726-f2ec-43fc-9e23-1703cf460f43))
(fp_line (start 6.597 -1.273) (end 3.808 1.517) (layer "F.Fab") (width 0.1) (tstamp 84d93a35-858b-4b7a-8930-46eb61f274f4))
(fp_line (start 1.517 -1.273) (end -1.273 1.517) (layer "F.Fab") (width 0.1) (tstamp 91975126-020e-4e41-b4ca-0adf96dc396d))
(fp_line (start 1.273 -1.517) (end -1.517 1.273) (layer "F.Fab") (width 0.1) (tstamp ae529635-ccde-4d9f-bf43-fb6bc4152694))
(fp_line (start 6.353 -1.517) (end 3.564 1.273) (layer "F.Fab") (width 0.1) (tstamp b286f65b-0afd-4340-bedc-71567ad9a1cf))
(fp_line (start -2.54 4.8) (end -2.54 -5.9) (layer "F.Fab") (width 0.1) (tstamp d1ac83f3-1458-4802-9ceb-df880440571f))
(fp_line (start -2.54 4.8) (end 7.62 4.8) (layer "F.Fab") (width 0.1) (tstamp d52f6ada-097d-4116-9948-12bce72faf40))
(fp_line (start -2.04 5.3) (end -2.54 4.8) (layer "F.Fab") (width 0.1) (tstamp fa2fddfc-7e3b-49ad-a3a7-27a2d36af706))
(fp_circle (center 5.08 0) (end 7.08 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 61812114-e13e-49c7-95b5-437111358d43))
(fp_circle (center 0 0) (end 2 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 98171b06-dba6-446f-b1f9-5f2f8b9dc1ee))
(pad "1" thru_hole rect (at 0 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 14 "+12V") (pinfunction "Pin_1") (pintype "passive") (tstamp 9541b1c0-ffa1-4e76-a40b-be8bc929fa7d))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp cc6cd33d-e943-4861-b0bc-7e1b086fb79c))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tedit 5AC8BA0D) (tstamp 1a9d0d9c-0fc6-484d-a048-6d705cc1c1db)
(at 122.5 87.46 -90)
(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" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/ff42ebe4-8d66-4cb0-bae6-e2eb5594bd6f")
(attr through_hole)
(fp_text reference "Q3" (at 2.54 2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd026848-9df3-4845-ab1d-bc1b4a0276db)
)
(fp_text value "IRLB8748PBF" (at 2.54 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7366559a-503b-4b23-a516-a9875f0e3490)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dee126fe-a59d-431c-aeda-8b5b23be5bbd)
)
(fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer "F.SilkS") (width 0.12) (tstamp 02183fc0-e5c1-4611-989b-39a5e4d94f52))
(fp_line (start -2.58 1.371) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 23616dcc-16f9-4b3e-9689-9693b0361670))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 677b6292-61aa-4781-a549-3e98e9d4e136))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 7d4d8eb9-000a-4a4c-afb7-f65752161b34))
(fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer "F.SilkS") (width 0.12) (tstamp 8b113113-5fcd-4e1f-ba28-d001ac2de39f))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer "F.SilkS") (width 0.12) (tstamp bc71152c-f3dc-453a-97bd-de7ab5fc1cb9))
(fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp f3345145-d20a-4413-9ab9-e268e58131f6))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 5087ebd9-1ded-4695-9bdf-4f28a0f456ad))
(fp_line (start -2.71 1.51) (end 7.79 1.51) (layer "F.CrtYd") (width 0.05) (tstamp af135aa3-a45e-4a30-b57a-63a453fc1e3c))
(fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp d6fd15cc-5c42-43ac-abe7-4f3cf93f00bc))
(fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer "F.CrtYd") (width 0.05) (tstamp e43a4e80-f86b-4e52-9bce-2426c8999248))
(fp_line (start -2.46 1.25) (end 7.54 1.25) (layer "F.Fab") (width 0.1) (tstamp 18148738-0ae0-401b-abed-4c1fc0b570b2))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer "F.Fab") (width 0.1) (tstamp 22fa7325-ab76-4c5f-be06-64fbfba46281))
(fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer "F.Fab") (width 0.1) (tstamp 6056a1a3-efbb-4187-a816-bf6f17ed66ca))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer "F.Fab") (width 0.1) (tstamp 753b8c4b-4893-46c2-a080-d6a5e7109f1c))
(fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer "F.Fab") (width 0.1) (tstamp 8c73e20d-9826-4261-b928-62e731a00c58))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer "F.Fab") (width 0.1) (tstamp 935b13f1-11b9-4885-a60e-54911db464a3))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer "F.Fab") (width 0.1) (tstamp af67d701-5e32-4319-b56e-d56396005bce))
(pad "1" thru_hole rect (at 0 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 6 "Net-(D5-Pad2)") (pinfunction "G") (pintype "input") (tstamp 496ac5a1-ba56-4c54-915a-a1d781ab31d5))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 8 "/O2") (pinfunction "D") (pintype "passive") (tstamp 6c425728-cd4d-4f60-8a4b-206d73c6f366))
(pad "3" thru_hole oval (at 5.08 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "S") (pintype "passive") (tstamp dbd36904-0102-4c71-9dd8-61671c2c33ae))
(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_SMD:R_1210_3225Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2186464c-df4c-4a95-a680-2fcdb88be085)
(at 110 75 -90)
(descr "Resistor SMD 1210 (3225 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 "MPN" "CRCW121010K0FKEA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/39948520-da0c-4a78-918e-f849fb62df13")
(attr smd)
(fp_text reference "R4" (at 0 -2.28 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 260d8ba1-81b4-4c5d-830b-385cc525b1d3)
)
(fp_text value "10K" (at 0 2.28 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 749fa643-f40c-4fd9-b21c-c87b8d24e89c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 5bf0e82b-039b-472d-8dbc-f415a8e79acd)
)
(fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) (layer "F.SilkS") (width 0.12) (tstamp 19558025-f002-4726-94b5-1505c5e61901))
(fp_line (start -0.723737 1.355) (end 0.723737 1.355) (layer "F.SilkS") (width 0.12) (tstamp 1b7d1fe8-fd23-4b0a-a549-fefd5afc9e73))
(fp_line (start -2.28 1.58) (end -2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp 41175a10-8b29-40b4-a8ce-e2189e6a9ca5))
(fp_line (start 2.28 -1.58) (end 2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp b7d291b1-b4c0-4b16-95cc-b4491d4bdbea))
(fp_line (start 2.28 1.58) (end -2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp b89694f8-9e97-4119-8412-757d57dc50e4))
(fp_line (start -2.28 -1.58) (end 2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp f1f97992-f4bf-471b-bc07-c155850d37a6))
(fp_line (start 1.6 -1.245) (end 1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp 27296429-7360-4085-b6c4-fe52cd3bc10e))
(fp_line (start -1.6 1.245) (end -1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp 8bbee838-dcc9-4d67-af4d-c637040286cc))
(fp_line (start 1.6 1.245) (end -1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp 9f103104-d457-4d27-832e-df17f860e797))
(fp_line (start -1.6 -1.245) (end 1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp da75f95f-8524-4ca0-a0fc-81ea2df26f48))
(pad "1" smd roundrect (at -1.4625 0 270) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 3 "Net-(D2-Pad2)") (pintype "passive") (tstamp 2935e8d1-eec4-47d1-9f4f-d573dd9c07c9))
(pad "2" smd roundrect (at 1.4625 0 270) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 1 "GND") (pintype "passive") (tstamp 1d0d08dc-b5a1-4c2a-90bd-28aa40df2d0e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-3-4-5.08_1x04_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294F11) (tstamp 41850257-a5b0-43e5-bc90-706c83dfb631)
(at 150.3 105.12 90)
(descr "Terminal Block Phoenix MKDS-3-4-5.08, 4 pins, pitch 5.08mm, size 20.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-3-4-5.08 pitch 5.08mm size 20.3x11.2mm^2 drill 1.3mm pad 2.6mm")
(property "MPN" "1712805")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/74fe5384-c2dd-4f72-a7f1-ce485de0e28e")
(attr through_hole)
(fp_text reference "J4" (at 7.62 -6.96 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2efca206-5d4e-4487-a9e0-069a2050ccf8)
)
(fp_text value "Screw_Terminal_01x04" (at 7.62 6.36 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16a6f75e-9e65-4609-9ba9-ef87a175e7bb)
)
(fp_text user "${REFERENCE}" (at 7.62 3.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c86bfa3f-d7f7-48cb-8995-1cd134037e45)
)
(fp_line (start 14.233 1.274) (end 13.853 1.654) (layer "F.SilkS") (width 0.12) (tstamp 054a8b84-6c1b-497f-af7f-b5498bf08880))
(fp_line (start 11.548 -1.654) (end 11.168 -1.274) (layer "F.SilkS") (width 0.12) (tstamp 0a08c6db-54b5-4140-aeba-40e72d9190b0))
(fp_line (start -2.84 5.6) (end -2.34 5.6) (layer "F.SilkS") (width 0.12) (tstamp 1264721f-5df6-4027-bb9f-32a740220c08))
(fp_line (start -2.84 4.86) (end -2.84 5.6) (layer "F.SilkS") (width 0.12) (tstamp 167b3354-93ad-4097-80b7-07b669485cae))
(fp_line (start -2.6 5.36) (end 17.84 5.36) (layer "F.SilkS") (width 0.12) (tstamp 1a46b328-817d-4193-a993-71342ebe9a92))
(fp_line (start 3.822 0.992) (end 3.427 1.388) (layer "F.SilkS") (width 0.12) (tstamp 1ecf7a55-17c7-48d7-812e-5c3b121b63b2))
(fp_line (start -2.6 -3.9) (end 17.84 -3.9) (layer "F.SilkS") (width 0.12) (tstamp 1f4e001f-6d03-4d19-9a5c-6ca7b8c2975b))
(fp_line (start -2.6 -5.96) (end 17.84 -5.96) (layer "F.SilkS") (width 0.12) (tstamp 211ac402-737f-4e8e-ac30-3d4ee470fa22))
(fp_line (start -2.6 4.8) (end 17.84 4.8) (layer "F.SilkS") (width 0.12) (tstamp 220dc1ac-72f9-40a8-a434-1f04319c23f2))
(fp_line (start 11.814 -1.388) (end 11.419 -0.992) (layer "F.SilkS") (width 0.12) (tstamp 2b8f0ea4-c6fa-41fa-b02e-a5fca43f4627))
(fp_line (start 16.628 -1.654) (end 16.248 -1.274) (layer "F.SilkS") (width 0.12) (tstamp 369c23a7-b13a-4e29-8f65-13fd7337fd28))
(fp_line (start 1.654 -1.388) (end 1.547 -1.281) (layer "F.SilkS") (width 0.12) (tstamp 50c79189-fcdd-4baa-bff8-458425a8aa46))
(fp_line (start 6.734 -1.388) (end 6.339 -0.992) (layer "F.SilkS") (width 0.12) (tstamp 609b88c7-5869-4269-99f7-e986fcfb7027))
(fp_line (start -2.6 2.3) (end 17.84 2.3) (layer "F.SilkS") (width 0.12) (tstamp 737cf012-ebf5-4774-b53c-db3af0dcd530))
(fp_line (start 9.153 1.274) (end 8.773 1.654) (layer "F.SilkS") (width 0.12) (tstamp 874160f0-0b8f-4055-a2b6-fa9f22e78175))
(fp_line (start -1.548 1.281) (end -1.654 1.388) (layer "F.SilkS") (width 0.12) (tstamp 9801815c-144e-4ea5-9234-e1f37c7ff02d))
(fp_line (start -1.282 1.547) (end -1.388 1.654) (layer "F.SilkS") (width 0.12) (tstamp a5a9ea3d-0527-4802-a52e-5872e01708d0))
(fp_line (start 16.894 -1.388) (end 16.499 -0.992) (layer "F.SilkS") (width 0.12) (tstamp abb42db1-b46a-4f06-ad3d-84699eed4308))
(fp_line (start 13.982 0.992) (end 13.587 1.388) (layer "F.SilkS") (width 0.12) (tstamp bbb04002-7976-47ee-b57c-544ec97b6e42))
(fp_line (start 17.84 -5.96) (end 17.84 5.36) (layer "F.SilkS") (width 0.12) (tstamp c03be570-6942-4841-ad23-dd1d55dc9ac0))
(fp_line (start -2.6 -5.96) (end -2.6 5.36) (layer "F.SilkS") (width 0.12) (tstamp cd4de251-8b7b-4b43-a6b9-c2a4c414850c))
(fp_line (start 6.468 -1.654) (end 6.088 -1.274) (layer "F.SilkS") (width 0.12) (tstamp e1199247-a81d-436b-b7c4-2d4995fbf286))
(fp_line (start 8.902 0.992) (end 8.507 1.388) (layer "F.SilkS") (width 0.12) (tstamp f3323ec8-363f-48e9-979f-84e8f695942e))
(fp_line (start 1.388 -1.654) (end 1.281 -1.547) (layer "F.SilkS") (width 0.12) (tstamp f6eba7df-1673-4954-bca2-8ed988729a72))
(fp_line (start 4.073 1.274) (end 3.693 1.654) (layer "F.SilkS") (width 0.12) (tstamp ffed5d5e-b49f-4e45-908e-038bcf194b0f))
(fp_circle (center 5.08 0) (end 7.26 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 1a14860d-c0a7-4acd-8092-b7b05643993b))
(fp_circle (center 15.24 0) (end 17.42 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3d056040-6f59-453c-b761-910fbaf4165b))
(fp_circle (center 0 0) (end 2.18 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 9c780079-653e-4b8c-9672-a68caeca1d96))
(fp_circle (center 10.16 0) (end 12.34 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp cb470993-5faa-4c19-90f4-406a37a22782))
(fp_line (start -3.04 -6.4) (end -3.04 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 43c12f69-f0d8-49dc-9484-b8e881beb915))
(fp_line (start -3.04 5.8) (end 18.28 5.8) (layer "F.CrtYd") (width 0.05) (tstamp a2130e42-adcf-4bbd-8d44-5b0f984fd729))
(fp_line (start 18.28 -6.4) (end -3.04 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp aa76e67e-2960-48b9-8ee3-5608753ac82a))
(fp_line (start 18.28 5.8) (end 18.28 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp d00d4db9-dcd5-49d4-91a6-56ce605626e1))
(fp_line (start 16.757 -1.273) (end 13.968 1.517) (layer "F.Fab") (width 0.1) (tstamp 067cffe3-8caf-42f2-9977-e8c0149e98d8))
(fp_line (start -2.54 -3.9) (end 17.78 -3.9) (layer "F.Fab") (width 0.1) (tstamp 0d88ebcb-7431-4746-9591-7d023da9fab4))
(fp_line (start 6.353 -1.517) (end 3.564 1.273) (layer "F.Fab") (width 0.1) (tstamp 2bf1feed-d071-4fce-ba7b-66c00558eba3))
(fp_line (start 1.273 -1.517) (end -1.517 1.273) (layer "F.Fab") (width 0.1) (tstamp 4661851b-c14c-4dc9-8e19-c65528e85912))
(fp_line (start -2.54 4.8) (end 17.78 4.8) (layer "F.Fab") (width 0.1) (tstamp 4be80184-34e0-4da4-8a49-268f3bb04935))
(fp_line (start -2.54 -5.9) (end 17.78 -5.9) (layer "F.Fab") (width 0.1) (tstamp 6167f31e-90eb-4287-a42d-33db26ed2d85))
(fp_line (start 11.433 -1.517) (end 8.644 1.273) (layer "F.Fab") (width 0.1) (tstamp 6f46a081-f6b4-46b3-8184-5079bbaac38e))
(fp_line (start 11.677 -1.273) (end 8.888 1.517) (layer "F.Fab") (width 0.1) (tstamp 724a4f1d-99b2-420c-b0bb-fc82b21a0efb))
(fp_line (start 17.78 -5.9) (end 17.78 5.3) (layer "F.Fab") (width 0.1) (tstamp 81af6605-a26c-4121-933b-ed490bd6664f))
(fp_line (start 6.597 -1.273) (end 3.808 1.517) (layer "F.Fab") (width 0.1) (tstamp 8ab0fb73-c4a7-43e1-a708-016ad08b12d3))
(fp_line (start 16.513 -1.517) (end 13.724 1.273) (layer "F.Fab") (width 0.1) (tstamp 8eeb2c92-0df2-4933-9733-c8870a71e7dc))
(fp_line (start 17.78 5.3) (end -2.04 5.3) (layer "F.Fab") (width 0.1) (tstamp 92660336-ae19-4dbc-985c-3f3341a7c7d4))
(fp_line (start -2.04 5.3) (end -2.54 4.8) (layer "F.Fab") (width 0.1) (tstamp a7b469a7-93f5-4fcb-83bc-8bffbd07e124))
(fp_line (start -2.54 2.3) (end 17.78 2.3) (layer "F.Fab") (width 0.1) (tstamp d33001b7-6725-4abb-a564-b936c16e8f10))
(fp_line (start -2.54 4.8) (end -2.54 -5.9) (layer "F.Fab") (width 0.1) (tstamp d3316736-1607-4dde-b585-9b2359596095))
(fp_line (start 1.517 -1.273) (end -1.273 1.517) (layer "F.Fab") (width 0.1) (tstamp fbf52b16-b3a9-4bb4-9b64-6d6f364a31a0))
(fp_circle (center 15.24 0) (end 17.24 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 23dab9b8-47c8-4dc0-958a-d28134958234))
(fp_circle (center 0 0) (end 2 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 5d7e9150-3bb7-4d9e-86d6-3479dbe47d6e))
(fp_circle (center 5.08 0) (end 7.08 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 630528e7-7fe6-4ae7-963e-a6bca646c5ab))
(fp_circle (center 10.16 0) (end 12.16 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp df60f8e9-ac77-4abc-be7f-d14df4a40da1))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 9 "/O3") (pinfunction "Pin_1") (pintype "passive") (tstamp 306b77f1-4838-4677-b21c-0c2cb84593b4))
(pad "2" thru_hole circle (at 5.08 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 8 "/O2") (pinfunction "Pin_2") (pintype "passive") (tstamp 1f448d8e-2354-4fad-aba6-1e905402c08c))
(pad "3" thru_hole circle (at 10.16 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 5 "/O1") (pinfunction "Pin_3") (pintype "passive") (tstamp 21eee435-5561-48af-8615-1afed32856df))
(pad "4" thru_hole circle (at 15.24 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 4 "/O0") (pinfunction "Pin_4") (pintype "passive") (tstamp 711443ed-ba98-4213-b895-35971a2a9a01))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-3-4-5.08_1x04_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tedit 5AC8BA0D) (tstamp 53394b3d-deb5-49d5-94b6-8a24b3a13a1d)
(at 122.5 57.5 -90)
(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" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/f12d5fc3-e253-4a63-b423-84fd3feee936")
(attr through_hole)
(fp_text reference "Q1" (at 2.54 2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa1a3571-57bc-48f6-85dc-5de539e578b8)
)
(fp_text value "IRLB8748PBF" (at 2.54 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d436128b-f162-4b7d-aa78-cb5349f8138d)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb779bbb-1b4f-457a-95bd-8ce150f8b2ab)
)
(fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 18b347c5-64b4-410c-8e12-5c990ce6d208))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 1cd12648-6556-4430-9a5e-7be92384c071))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 298eae3f-13c6-44f5-861a-66e41e1b0403))
(fp_line (start -2.58 1.371) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 7116358d-893c-406d-9548-d00aec7afb57))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer "F.SilkS") (width 0.12) (tstamp 92bf78c0-12cb-4d23-950b-f97c14a34b26))
(fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer "F.SilkS") (width 0.12) (tstamp 97d02fda-0cc6-46d1-bd77-e15ac8d91b9e))
(fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp f0524a4c-20cf-41d1-ad4e-0c9c0748b441))
(fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 0c4b340c-0495-4dbc-a272-fe512fa9113e))
(fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 218f5ec3-ddd5-412e-a5e2-67799b62b3c6))
(fp_line (start -2.71 1.51) (end 7.79 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 4328b458-c3c3-4aa4-bd85-bd8846596dd5))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp c0a3d1db-1074-4dab-baf5-d6748d380ac7))
(fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer "F.Fab") (width 0.1) (tstamp 450764e2-7ceb-4b31-9999-b01b1ded3bac))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer "F.Fab") (width 0.1) (tstamp 9a48838d-9d50-464b-b243-7339666aa3e3))
(fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer "F.Fab") (width 0.1) (tstamp b3c272a7-8fda-4b95-b1b7-23c958364870))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer "F.Fab") (width 0.1) (tstamp b63251e4-8281-4c41-9e61-952287116fc6))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer "F.Fab") (width 0.1) (tstamp bb47621e-209b-4918-b9cd-972132ec6804))
(fp_line (start -2.46 1.25) (end 7.54 1.25) (layer "F.Fab") (width 0.1) (tstamp c4938313-70b1-459f-acd0-1de6dc298581))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer "F.Fab") (width 0.1) (tstamp e80c3389-495b-4ffb-8f36-4225967d152e))
(pad "1" thru_hole rect (at 0 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad2)") (pinfunction "G") (pintype "input") (tstamp 894e238c-3bad-482a-8453-88dbc13f5633))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "/O0") (pinfunction "D") (pintype "passive") (tstamp 5492dbfc-0b4a-44af-a5a1-95fb6ab9a54e))
(pad "3" thru_hole oval (at 5.08 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "S") (pintype "passive") (tstamp 7d4c533e-21b4-459f-a123-9168c44c5e86))
(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 "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 594eb02e-785a-483d-a2e8-e12fc5b3dab0)
(at 155 112.5)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/d1b327f2-a9fc-4b65-a034-42fdae5ab35a")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 17.5 2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6497efdb-6d11-432e-b420-e4d7afad9e6f)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b174fd97-2664-4189-9432-f8319cf4ad01)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bae3306-a296-4f50-9074-c9b182872edd)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp c9606eee-8088-427d-adec-8780e2c47d7e))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7d489d63-6e60-410d-b95b-0229f13a5d90))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp 09226b36-13fd-4cd9-8344-39e0bb377904))
)
(footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5b6ace95-23ec-4110-95fb-cb6c7d145890)
(at 105 85)
(descr "Resistor SMD 1210 (3225 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 "MPN" "CRCW1210100RFKEA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/a5ce8cad-0d7a-4ba2-9f6a-e5aef263f9a8")
(attr smd)
(fp_text reference "R5" (at 0 -2.28) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38c2f3b9-2514-4a0f-a87c-aa85571c3074)
)
(fp_text value "100" (at 0 2.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2f5850f-ffb6-469f-ad19-da8134e2cb9f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 0bc0b3c9-ce0a-47fc-94e5-74795c3a449b)
)
(fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) (layer "F.SilkS") (width 0.12) (tstamp 2926e50c-8822-43bd-8112-5d5509d944e5))
(fp_line (start -0.723737 1.355) (end 0.723737 1.355) (layer "F.SilkS") (width 0.12) (tstamp 3cf23eba-655c-402c-9d6d-4a3663d0dbe3))
(fp_line (start 2.28 -1.58) (end 2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp 2eea7b32-7d70-4dc9-a0c6-ac5e29629285))
(fp_line (start 2.28 1.58) (end -2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp a4148cc4-f2cc-47e0-a156-4b2190140462))
(fp_line (start -2.28 -1.58) (end 2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp c32fc65a-a7a1-4ca1-b33a-67ea8a68c084))
(fp_line (start -2.28 1.58) (end -2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp cf3a4dc5-e091-477f-ad26-569b763f924c))
(fp_line (start -1.6 -1.245) (end 1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp 72a1164e-c04f-4bd5-a099-ce6a449aaf3e))
(fp_line (start 1.6 1.245) (end -1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp db0de083-dc51-4c12-a5f7-3f46b203d4b8))
(fp_line (start 1.6 -1.245) (end 1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp e7ed1271-ce1f-4fd0-92ce-89d32e1aa68b))
(fp_line (start -1.6 1.245) (end -1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp fc0cd1ef-454a-4b2e-b229-f399b95769fb))
(pad "1" smd roundrect (at -1.4625 0) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 12 "/I2") (pintype "passive") (tstamp c72b9ef9-b091-4730-b378-cdbd0a70989c))
(pad "2" smd roundrect (at 1.4625 0) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 6 "Net-(D5-Pad2)") (pintype "passive") (tstamp 8439260e-c7a6-4ceb-8e98-2d7811479bb8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 62f6ea2f-d258-4ede-b3ec-f7d63cf1ef64)
(at 95 112.5)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/f1fbd9cd-aa2a-4e79-9baf-eb0bc9cd5a7f")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at -5 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8cdf768-8856-45e5-9066-8e9f611d7244)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp faaf89f7-f7e5-49ec-9be6-0f5563b1d4f6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 213bfe79-a6fe-4fd5-8b1a-eb17da35ab36)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 942c1051-fbb1-4c89-9baf-7aecf3450790))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 37972f3a-d548-458a-9bb2-6ae6a4ae108a))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp 0f12838e-d382-44c5-80b8-56a62fefe259))
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tedit 5AC8BA0D) (tstamp 6e44ac8f-5f56-4417-973e-eb4c99fa0353)
(at 122.5 102.46 -90)
(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" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/22e1a37f-bc22-45ac-90c3-c8252644e32e")
(attr through_hole)
(fp_text reference "Q4" (at 2.54 2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f604cd59-34ea-437e-922f-3e2a72c1e1c7)
)
(fp_text value "IRLB8748PBF" (at 2.54 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df69fe42-9b41-4dc9-af0e-9eef7ddfc105)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95303c7a-48b2-4190-a419-c8d5637d257d)
)
(fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 3d25f94d-a3fe-47e6-9086-5fc8e4b9ce07))
(fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer "F.SilkS") (width 0.12) (tstamp 3dcfd5e4-8b59-4f46-bb1e-db9e185f38a8))
(fp_line (start -2.58 1.371) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 43b565ce-ab7f-4a2d-a008-1bbee2617e14))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 639df7c8-9dcb-4f58-b2e7-eed200fceafb))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 8618759f-c721-4396-a84c-ee99cb5d4364))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 86d45c36-fa41-4d69-a65f-fc225c465a8e))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer "F.SilkS") (width 0.12) (tstamp a797c693-a2be-403d-b7c3-5a59a0f12faf))
(fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 1ee067c5-46cc-41ab-8b77-9c39d4b50034))
(fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 6d1a4ab3-8071-4988-9a66-6e2f16256708))
(fp_line (start -2.71 1.51) (end 7.79 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 9d151295-22c2-4ff9-a4ba-59187ec22fc5))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp c4455af3-4220-4a22-b4fc-93bacd2a3f56))
(fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer "F.Fab") (width 0.1) (tstamp 01ce5086-3057-427d-afd6-7859543c2581))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer "F.Fab") (width 0.1) (tstamp 0c8d820f-f6c1-4b12-81a6-3121728a0d42))
(fp_line (start -2.46 1.25) (end 7.54 1.25) (layer "F.Fab") (width 0.1) (tstamp 2acd49c6-2540-46aa-8783-68fc947fc2b3))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer "F.Fab") (width 0.1) (tstamp 2cd1d49c-8f59-4a70-8f95-4f955c6191b7))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer "F.Fab") (width 0.1) (tstamp 6373c1dc-f502-4fac-9597-f172ef8fcba5))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer "F.Fab") (width 0.1) (tstamp 6b619d5d-45aa-4086-b8c2-fed4b1bbfb2b))
(fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer "F.Fab") (width 0.1) (tstamp 969d099d-402a-43ca-8e8d-f60f21bd31a7))
(pad "1" thru_hole rect (at 0 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 7 "Net-(D6-Pad2)") (pinfunction "G") (pintype "input") (tstamp b5dde719-033f-49d4-9b99-8eb2b871b3d8))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 9 "/O3") (pinfunction "D") (pintype "passive") (tstamp 07b5548e-3856-4b17-9e20-03e27d6dbd6b))
(pad "3" thru_hole oval (at 5.08 0 270) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "S") (pintype "passive") (tstamp cc3d31e3-8829-4e8d-80eb-a61811ba363b))
(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 "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 75d78924-8a14-4a12-8394-b037d391c213)
(at 132.5 62.5 90)
(descr "SOD-123")
(tags "SOD-123")
(property "MPN" "SMF12CA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/83b4213a-fdca-45da-8b05-ddc7fee58d30")
(attr smd)
(fp_text reference "D3" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9988e773-b015-4483-9df3-2cd62dbf3292)
)
(fp_text value "D_TVS" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73def2f0-8af0-4e2b-b858-0116a04e05ff)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ce7d17d-300d-407d-a449-13b8dadca541)
)
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp 6492814f-dca9-45c9-b30a-55191611f8f6))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 6ab481c4-53da-4497-9529-78c36e45cf7c))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 7cb7dc80-a9f3-4174-b6fb-e81b5e715d2a))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 1c694c88-6f27-4c58-9e72-e94e09ac5c30))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 251ab43f-d66a-4ce2-bc7f-872ba1b3c187))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 3c33c4d1-8a42-4077-9140-199ad06f5c06))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp e109643e-f144-4020-a5ed-745aa2839b23))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 17a2f178-deee-4f27-a1de-b169ce905c79))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 2aa1b810-395c-4fba-bfb3-f1bdbe101da6))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 3ebebfa7-05d1-4f8f-89eb-ecdbdd6d767f))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 5a2580b9-ed2b-49d3-9f1b-8c59f7a716f2))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 7f12ec1b-0954-437e-a909-26ed47267e14))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 8c7b8ef6-6f97-4bcb-86ca-d63810d7524f))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp b6aa601b-5321-4750-9fc4-b2f73d1363a0))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp b7e76f4c-d31d-4c37-8e5b-78d453cc48aa))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp bef8bf24-0c1b-48a8-b9fe-ea0715da5024))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp f6c2a2e9-ac8c-4042-97e1-aba040193ddc))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp f823d8ae-4d88-40ac-b37d-4cf55f16f321))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A1") (pintype "passive") (tstamp 11827847-ad17-4575-9a0f-8e6e52562729))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/O0") (pinfunction "A2") (pintype "passive") (tstamp aa9334ad-5ff5-48c2-8150-e53543bbdc9a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 7c795cc7-bd3b-4916-83fe-034d6d36225d)
(at 155 50)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/272d1bcb-1060-4b21-89e2-9d22799a0d53")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 10 12.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f3cd879-ffb5-493c-8707-1ca27f555322)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e5b5730-dff5-439e-b1f4-bc915e787ac7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8bd50a31-0a3a-4c25-a240-7e4fc73540ff)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 1a624de9-bc98-4c99-9567-550c258570a6))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b832958e-6e15-4470-bb3d-49362423c7ed))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp 5422f6b7-3f5f-4905-8849-81c191a700d1))
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 84e1dee4-77c8-46a7-a4e2-51b612af2bf8)
(at 132.5 77.5 90)
(descr "SOD-123")
(tags "SOD-123")
(property "MPN" "SMF12CA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/4ba6571b-7211-45ee-932f-6399b3f49c2e")
(attr smd)
(fp_text reference "D4" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 235d9137-57f7-4387-8de0-5756d9d3708d)
)
(fp_text value "D_TVS" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d17d8c99-037d-4a7b-8ccb-a2f6e2ca144c)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fbf4e3f-47e2-46c1-ae5d-395d85185873)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 442f4c25-1162-4190-a8d2-adcde9d3d3a4))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 8d97b9dc-03ba-4140-ad58-ed359d686876))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp cb05c0fe-14d4-4f2b-b813-6dcd011f64c2))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0d73baff-345b-4b11-a6cc-ad908defaa6a))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 65077441-cf86-4e25-9ed8-e11b8f490275))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 904cf7d3-76c4-4bd8-8f54-254a77c23889))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp f19502bb-576d-4121-92b4-d8297061e77a))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 161179af-a2cb-4eb7-b411-ad9f4f25cefb))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 1bbc08b2-e870-4804-917e-6e2743910613))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 491b670a-7625-4c9d-b878-46c7b66e675d))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 5f1ab0fa-506d-41d4-9d73-1d4525f3639f))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 846317bb-2058-4706-b243-fea7749145fc))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp bb6580e0-e19f-4efa-8a21-cd6fdb405e7c))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp cd9090e1-4efc-4f48-a258-28d64774e362))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp d1c66a49-627d-4c25-b6ee-a2e1498e7d53))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp f3a3539d-3962-4a89-806d-e2854851f1ac))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp f7fbefa7-74bc-421e-a7bd-f20939ed4907))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp ffc162c0-238b-4ee6-b3ed-d294f6396ecf))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A1") (pintype "passive") (tstamp 0f681c03-8729-4431-9242-4f03b630888c))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/O1") (pinfunction "A2") (pintype "passive") (tstamp a6b606b5-19c8-472d-9664-d575006bb6be))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8a191988-2cc0-469f-841b-00669a8e49e3)
(at 105 55)
(descr "Resistor SMD 1210 (3225 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 "MPN" "CRCW1210100RFKEA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/0096563a-689a-46fe-96ab-dd5e9ab37672")
(attr smd)
(fp_text reference "R1" (at 0 -2.28) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a078ecf7-0989-43ac-9f0a-84974f50e440)
)
(fp_text value "100" (at 0 2.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ec360dc-cc7b-4484-b9fa-25876d7f9c1c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp da570fd5-6bdd-4187-bd30-163db9da25a5)
)
(fp_line (start -0.723737 1.355) (end 0.723737 1.355) (layer "F.SilkS") (width 0.12) (tstamp 607ff2a4-20bd-41f4-b18c-bfc46e578cf6))
(fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) (layer "F.SilkS") (width 0.12) (tstamp ae0cb995-7056-4ed8-9d1d-da3233ebb209))
(fp_line (start 2.28 -1.58) (end 2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp 5005d416-403a-471d-ada4-324667b3d1d3))
(fp_line (start -2.28 1.58) (end -2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp 6198c8cb-6922-4a96-9a8f-e23700162a1f))
(fp_line (start -2.28 -1.58) (end 2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp c6438b6b-306e-4135-b569-ff1fa52aa7a9))
(fp_line (start 2.28 1.58) (end -2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp d5559160-fc40-4a7d-ae0e-b2f44a92574d))
(fp_line (start -1.6 1.245) (end -1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp 18bc1b8f-4c30-4dc0-84b2-5f5c71f159e2))
(fp_line (start -1.6 -1.245) (end 1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp 455d94f2-36a7-4d5f-8544-d3c8795d3b1b))
(fp_line (start 1.6 1.245) (end -1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp d9b637b2-0497-45c4-9ea5-56af67ad784c))
(fp_line (start 1.6 -1.245) (end 1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp dd74b3f8-abac-4b76-b9d1-f05dfdb84e7a))
(pad "1" smd roundrect (at -1.4625 0) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 10 "/I0") (pintype "passive") (tstamp 53892d6e-c5d1-4d65-92f9-4493d11ff032))
(pad "2" smd roundrect (at 1.4625 0) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 2 "Net-(D1-Pad2)") (pintype "passive") (tstamp 7297fec4-394b-4989-86e1-cd62c7a82604))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9fdd49c3-fc7d-4de8-8e05-6371c816c7a2)
(at 105 70)
(descr "Resistor SMD 1210 (3225 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 "MPN" "CRCW1210100RFKEA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/4bf3cd25-c976-446b-8cdc-27667ec1ef6a")
(attr smd)
(fp_text reference "R2" (at 0 -2.28) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d169475f-fd45-48f4-80f6-20ea3271e704)
)
(fp_text value "100" (at 0 2.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9b1bfbe-a743-439b-8ebc-1dc2e30defb7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1beb3110-058c-418d-8e1b-b181756d2036)
)
(fp_line (start -0.723737 1.355) (end 0.723737 1.355) (layer "F.SilkS") (width 0.12) (tstamp 6a821480-289a-4267-9b6c-e9a18f8283a0))
(fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) (layer "F.SilkS") (width 0.12) (tstamp 8a44e9de-8524-48c8-85a0-991c75664e90))
(fp_line (start -2.28 1.58) (end -2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp 5a1bfc35-e6ac-4471-a5bb-d85107e201be))
(fp_line (start -2.28 -1.58) (end 2.28 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp 820970ad-17fd-47e2-9947-6ba975c07333))
(fp_line (start 2.28 1.58) (end -2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp c81afaf2-c9c0-4906-9ed3-825ddcade9cf))
(fp_line (start 2.28 -1.58) (end 2.28 1.58) (layer "F.CrtYd") (width 0.05) (tstamp f2d994bb-773e-4339-ab9e-3edc166c8a6a))
(fp_line (start 1.6 -1.245) (end 1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp 48ba9170-e779-4de7-a1a8-0ec3e69992a9))
(fp_line (start -1.6 1.245) (end -1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp 546c0ccd-97bf-4104-ba5d-ebd3391cdb5c))
(fp_line (start 1.6 1.245) (end -1.6 1.245) (layer "F.Fab") (width 0.1) (tstamp 64e8e72e-4a58-4a35-8e1f-47def8a67a06))
(fp_line (start -1.6 -1.245) (end 1.6 -1.245) (layer "F.Fab") (width 0.1) (tstamp e5834d59-9c08-40bd-9544-475e46b5b47b))
(pad "1" smd roundrect (at -1.4625 0) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 11 "/I1") (pintype "passive") (tstamp 7899b4f3-faaa-4123-a5b7-20b92b047dc3))
(pad "2" smd roundrect (at 1.4625 0) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 3 "Net-(D2-Pad2)") (pintype "passive") (tstamp ad3078c0-fd72-434a-b6e7-66488c0d3658))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp a44ac41d-00f5-47e5-8189-ed1b0091e8a3)
(at 132.5 107.5 90)
(descr "SOD-123")
(tags "SOD-123")
(property "MPN" "SMF12CA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/54c7f655-62a6-4f21-bee0-d759e43db7ed")
(attr smd)
(fp_text reference "D8" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efdaa45b-d5db-4438-8a8e-6b9743bc84be)
)
(fp_text value "D_TVS" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0df6fad-da60-40c7-9201-7db91d870091)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1da2647-07ee-4611-9abd-a125ff770d8f)
)
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp 4d19a50f-9687-49cf-adcc-d3e257c5e753))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 63e8c244-089b-40b6-b92b-7d71bb02c85a))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp ae35fd3d-a10e-4d5a-b66e-04f3a66c2d72))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 18314507-c170-4df8-91c2-8007729daf71))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 40d2e24c-35ac-4202-94a4-aa6b3061e75e))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 6bc6f398-f198-464f-9c46-f4e52ab3f8c9))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp c4f30a1e-beb7-4544-9619-b6ffde6d3ef0))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 02934db4-68c7-49ac-80d6-e1e7c92b092b))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 0530906d-036c-4bc0-89f1-01ca6d01a3d3))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 0f1f8679-21f2-4d25-a46b-41592beada81))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 1cf47894-745d-4da1-87dd-18ae6446ee6d))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 3879e643-4108-4f58-b772-bc5f515867a9))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 4e45a801-a8d2-488e-8a50-4c9412df7d68))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 7b4c6b6b-8545-400d-8a6c-3a258e60c920))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 86376e2a-8642-42df-b47a-592cc90461bc))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 9c139c4a-dac4-4b93-8bc9-1b75ea4c372d))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp df26f35e-4081-4c59-b3c7-10785c263601))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp e37ced39-91b6-474d-b4fe-4b265d492c68))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A1") (pintype "passive") (tstamp f42dd958-3ade-449a-ae80-2d66bb80374d))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/O3") (pinfunction "A2") (pintype "passive") (tstamp 63730f22-fe11-45da-86de-8589782eb519))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp a91b44cb-4322-4598-867c-a099dfb57a06)
(at 115 60 90)
(descr "SOD-123")
(tags "SOD-123")
(property "MPN" "SMF5.0CA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/7969bbe6-e1a9-4f79-acc0-553f72ebba2f")
(attr smd)
(fp_text reference "D1" (at 0 2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7daac4a-07f8-45a3-9be9-966b2522b9ed)
)
(fp_text value "D_TVS" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d7b4b9d-6dbc-443d-9792-edb7d9b0b7b9)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 057c5b05-88d6-4263-bf0b-0a16114a06a9)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 13aac426-ccbb-4b77-9c5a-85bb319a8be9))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp 1fbc85d5-f6b9-4564-9e74-19e2a5c60050))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp dcd8d70f-c971-4272-a881-5c6ebaf8ea5d))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0d04238b-ee35-4848-adae-49361ff3fb7b))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 380b1230-af85-4fce-acbb-366c3d7ac977))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 39e790e9-5373-4768-b9eb-719054c6aeba))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 46ba72db-ce86-43b6-aaa5-9d8583bcdc5c))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 07665b0e-a7bd-41a7-9fff-203f5f264fef))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 15225d59-333b-4668-b598-11e47f9254c4))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1fa0d3a6-4112-4068-9e20-f1e96b6cfe43))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 734d4314-65a2-410e-95e4-1355ee7a3b36))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp a0e20357-6d08-4f68-b868-34389a05a9fd))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp a276586d-7f3f-42dd-ab26-8961818a066c))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp b2ce1cb9-6016-44e3-87fd-cb444be4129d))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp b80614c2-7c9e-43f0-9fdb-5ad98d82327e))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp bfefc1af-2513-49bc-9033-1a78377859b8))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp d231d6f4-c913-45ee-a2ec-87d03fe03f27))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp e71ab42f-de1e-4979-8bc5-7b898785902b))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A1") (pintype "passive") (tstamp 9d044485-1f7c-4f74-b509-8ec20520c336))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(D1-Pad2)") (pinfunction "A2") (pintype "passive") (tstamp 7a150248-6e58-4192-944d-da5d9244dcc9))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp b7255114-bc58-4987-83bf-cc85fc720e61)
(at 115 90 90)
(descr "SOD-123")
(tags "SOD-123")
(property "MPN" "SMF5.0CA")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/e4aa1f7f-fa7b-4698-8c18-8077713bf079")
(attr smd)
(fp_text reference "D5" (at -0.3 2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4ebfc40-a51b-4683-968f-eabbe3707b43)
)
(fp_text value "D_TVS" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7effa0bd-1518-46ad-ae8e-318fa0fd9791)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f7ccc7d-f081-4a3d-8f3d-3d89ad485f58)
)
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp 1f36223e-7bdf-4416-b417-0e62ff559b4c))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 61311b09-dafc-4db6-8e37-b689348eb98d))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp fb27ef4c-ad45-46da-afaa-c9f43694a219))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 00c8ea2b-5618-4cc7-8a6a-c809e35ed4b5))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 07e68879-29f6-45dd-9043-93ba435b8d73))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 23082c60-4ff0-4b7f-94a3-579e77a39861))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp d0edb078-7926-4ad2-85f0-1f674b98e479))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 01b23f28-b64e-498b-9642-828e3b096dd9))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 1c317f54-0447-40ca-b9e6-902ce2b14103))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 51f0e041-6eb7-4b39-8c44-bef21dc1f541))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 70eceaa5-582a-4e48-ba2a-0698665e20aa))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 798684b0-669e-4123-a9cf-7322b9460e91))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 7fb3f8c7-2283-4c63-abe6-623517da141e))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 84f73b41-40eb-4b62-a9c9-d80039e9a819))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 8b5c09ab-2a48-48ac-bb1b-a6615918568c))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 912283b7-5db7-4212-9dc6-8137234c1ac2))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp c87911ef-ce70-4d9c-a9a3-24ffd8f81d24))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp dfd55e3a-1f19-49cc-9cf9-38bff44d4f2b))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A1") (pintype "passive") (tstamp 40963d4b-1903-451d-afc3-78f1227bb3df))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(D5-Pad2)") (pinfunction "A2") (pintype "passive") (tstamp b67d05e4-18eb-4e36-b3e7-25faad6f528a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294F11) (tstamp c31a4191-833b-4d75-94ae-14af4f05a86c)
(at 150 80.08 90)
(descr "Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm")
(property "MPN" "1711725")
(property "Sheetfile" "led_amplifier.kicad_sch")
(property "Sheetname" "")
(path "/49187681-ce47-4097-98f2-7cf24c8b2a91")
(attr through_hole)
(fp_text reference "J3" (at 2.54 -6.96 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc2f912f-946c-4b07-b2cf-a802aacecbab)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 6.36 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6ef71f5-16e0-42ed-ad81-045aa1ada383)
)
(fp_text user "${REFERENCE}" (at 2.54 3.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e1c5b99-3a6b-4899-8c3a-86bc8ab025fc)
)
(fp_line (start -2.84 5.6) (end -2.34 5.6) (layer "F.SilkS") (width 0.12) (tstamp 1ba4526f-d250-4793-a709-1b7b2a146626))
(fp_line (start -2.6 4.8) (end 7.68 4.8) (layer "F.SilkS") (width 0.12) (tstamp 2d7bf9eb-92e1-4428-9564-3c0975ce509c))
(fp_line (start 1.388 -1.654) (end 1.281 -1.547) (layer "F.SilkS") (width 0.12) (tstamp 35859109-73cd-4a9d-8556-2692a1032f28))
(fp_line (start 6.734 -1.388) (end 6.339 -0.992) (layer "F.SilkS") (width 0.12) (tstamp 46531a12-437f-4c02-a102-a823110823bc))
(fp_line (start -2.84 4.86) (end -2.84 5.6) (layer "F.SilkS") (width 0.12) (tstamp 52774942-27a5-4c16-bd07-b67ef47246e9))
(fp_line (start 1.654 -1.388) (end 1.547 -1.281) (layer "F.SilkS") (width 0.12) (tstamp 56b51314-f1c7-43cf-bbe2-50fa4c11aaf3))
(fp_line (start -2.6 -5.96) (end 7.68 -5.96) (layer "F.SilkS") (width 0.12) (tstamp 602764e6-d2bc-4ec1-aa43-25422fdecc63))
(fp_line (start -1.548 1.281) (end -1.654 1.388) (layer "F.SilkS") (width 0.12) (tstamp 755f7cd3-9d80-4065-8af5-5426af90ea5a))
(fp_line (start 7.68 -5.96) (end 7.68 5.36) (layer "F.SilkS") (width 0.12) (tstamp 7b81c9d5-5baf-4e2c-aac7-8b538ccefc87))
(fp_line (start -2.6 5.36) (end 7.68 5.36) (layer "F.SilkS") (width 0.12) (tstamp 7da8d1ca-2caa-49d1-a305-f6d98a1aef4e))
(fp_line (start -1.282 1.547) (end -1.388 1.654) (layer "F.SilkS") (width 0.12) (tstamp a71aa724-a98a-43cb-b70f-acf7eee04206))
(fp_line (start 4.073 1.274) (end 3.693 1.654) (layer "F.SilkS") (width 0.12) (tstamp a7df6270-3725-4746-a8a0-fe74894ce0b5))
(fp_line (start 6.468 -1.654) (end 6.088 -1.274) (layer "F.SilkS") (width 0.12) (tstamp c923fa3b-f048-456e-816c-0146c026de3d))
(fp_line (start -2.6 -5.96) (end -2.6 5.36) (layer "F.SilkS") (width 0.12) (tstamp ced0e1a5-109e-42b4-bc25-8fbe565f6b64))
(fp_line (start -2.6 2.3) (end 7.68 2.3) (layer "F.SilkS") (width 0.12) (tstamp d7712a3b-23cb-4775-8b69-870124644357))
(fp_line (start -2.6 -3.9) (end 7.68 -3.9) (layer "F.SilkS") (width 0.12) (tstamp eee26079-f5fb-4bbb-beca-bdd4fd543a2a))
(fp_line (start 3.822 0.992) (end 3.427 1.388) (layer "F.SilkS") (width 0.12) (tstamp f9484e20-6a01-4fd1-a5ce-4b3776c15005))
(fp_circle (center 5.08 0) (end 7.26 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 44def156-462d-4a98-be11-fce5c2ebbc0c))
(fp_circle (center 0 0) (end 2.18 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4b845c1e-10d3-4f29-b9b7-931a1c809280))
(fp_line (start -3.04 -6.4) (end -3.04 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 0d927349-8c2f-4733-b94a-ab6d4a316805))
(fp_line (start 8.13 5.8) (end 8.13 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp 1356b743-9d3c-4598-9e81-c29e8806edd6))
(fp_line (start -3.04 5.8) (end 8.13 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 4c0274d8-8ede-4c05-8a18-caacfe061e45))
(fp_line (start 8.13 -6.4) (end -3.04 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp c55e11b4-bceb-47f0-aac1-f0ffe4645306))
(fp_line (start 6.353 -1.517) (end 3.564 1.273) (layer "F.Fab") (width 0.1) (tstamp 07460f81-9ff0-45e7-a167-562909ab2400))
(fp_line (start 6.597 -1.273) (end 3.808 1.517) (layer "F.Fab") (width 0.1) (tstamp 26b246e7-ee59-4e24-b748-7584c929faf4))
(fp_line (start 7.62 -5.9) (end 7.62 5.3) (layer "F.Fab") (width 0.1) (tstamp 35ee02b3-4014-451b-bb2c-8b49825abd61))
(fp_line (start -2.04 5.3) (end -2.54 4.8) (layer "F.Fab") (width 0.1) (tstamp 407b2638-ab76-4663-8142-572de70a90dc))
(fp_line (start 7.62 5.3) (end -2.04 5.3) (layer "F.Fab") (width 0.1) (tstamp 5d3d139e-86c4-457f-91b0-e5bf34047288))
(fp_line (start -2.54 -3.9) (end 7.62 -3.9) (layer "F.Fab") (width 0.1) (tstamp 6a6cb2bd-3bee-4fb0-9e50-4d381a63bee4))
(fp_line (start -2.54 -5.9) (end 7.62 -5.9) (layer "F.Fab") (width 0.1) (tstamp 77f7de02-b3e2-45ff-a71f-c32c32818ba3))
(fp_line (start -2.54 4.8) (end -2.54 -5.9) (layer "F.Fab") (width 0.1) (tstamp adb5fa6e-a966-4438-8aa0-c113b0e82c1d))
(fp_line (start 1.273 -1.517) (end -1.517 1.273) (layer "F.Fab") (width 0.1) (tstamp bdd42ce4-964f-488e-940b-1e3d24174a5e))
(fp_line (start -2.54 4.8) (end 7.62 4.8) (layer "F.Fab") (width 0.1) (tstamp e59dcc5d-17df-40ec-b043-fb549211e5ce))
(fp_line (start -2.54 2.3) (end 7.62 2.3) (layer "F.Fab") (width 0.1) (tstamp f8afc4d0-2ea8-4f7a-a006-21608e5271a1))
(fp_line (start 1.517 -1.273) (end -1.273 1.517) (layer "F.Fab") (width 0.1) (tstamp fd6e1867-0948-490f-95e3-aa924494278b))
(fp_circle (center 0 0) (end 2 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 158ccf3c-5b79-4e65-8863-e141a736144c))
(fp_circle (center 5.08 0) (end 7.08 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 250cfeb0-8028-41bb-94b9-8314a4d77b94))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 14 "+12V") (pinfunction "Pin_1") (pintype "passive") (tstamp 4f03b417-fab2-4ac3-943e-9672207df6ca))
(pad "2" thru_hole circle (at 5.08 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 14 "+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp fdc51f4b-4c3a-4978-8b17-c03a3c134fbc))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp c6ac6e2e-f194-435c-b07a-5a3dc0c2d105)
(at 132.5 92.5 90)
(descr "SOD-123")