-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathlaser-drive.kicad_pcb
3498 lines (3462 loc) · 175 KB
/
laser-drive.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.1)
(pcbplotparams
(layerselection 0x0000030_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+12V")
(net 3 "Net-(Q1-B)")
(net 4 "Net-(R5-Pad2)")
(net 5 "/Hot")
(net 6 "/VRef")
(net 7 "/VSense")
(net 8 "Net-(J1-P2)")
(net 9 "Net-(Q2-D)")
(net 10 "/Laser-Anode")
(net 11 "/ControlOut")
(net 12 "/Laser-Cathode")
(footprint "Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005876b633)
(at 109.045087 62.698 90)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d4176c")
(attr through_hole)
(fp_text reference "P1" (at 0.341 6.651913 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2806b279-de6f-41d9-96d7-fa037a424995)
)
(fp_text value "LaserOut" (at 1.25 3.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3039d30-a7aa-4dd6-a4b0-f004ebcc9427)
)
(fp_text user "${REFERENCE}" (at 1.25 1.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e9a4574-09a5-437c-9407-dd220e811ce0)
)
(fp_line (start -2.91 0.11) (end -2.91 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81393e51-8f13-4e52-9cd1-b83b3e946a8e))
(fp_line (start -2.91 2.61) (end -0.41 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96f9bcc2-0203-44a6-bcb4-8aba3a3b4665))
(fp_line (start -2.61 -1.71) (end -2.61 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66c65b07-d8a3-4f3c-8d45-635fafc38023))
(fp_line (start -2.61 0) (end -2.11 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b48527f9-acb6-4bef-bd1f-a4280226cf2b))
(fp_line (start -2.61 0.81) (end -1.61 0.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd4236ee-4486-4f33-bdbf-7171b6135918))
(fp_line (start -2.61 2.31) (end 5.11 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c8ffdd2-e1f2-4bc9-bd2f-d4620b706e2e))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f25f6fc7-0643-490a-8dbc-b054b71b86d8))
(fp_line (start -2.11 0) (end -2.11 -1.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82fe1bcf-3b12-43ed-8133-60ee5c576eb3))
(fp_line (start -1.61 0.81) (end -1.61 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd5e6fe9-4b46-4e90-a1d1-8a0cd984007d))
(fp_line (start 4.11 0.81) (end 4.11 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64605328-ff7e-4644-b13b-efa2940e6aab))
(fp_line (start 4.61 -1.21) (end 4.61 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 586fa832-5584-4a0d-84b7-7b1cbeb80a13))
(fp_line (start 4.61 0) (end 5.11 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d2be793-3176-4992-b7bf-252efbab7763))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 023fc036-a92b-471b-a9cd-360477843bb0))
(fp_line (start 5.11 0.81) (end 4.11 0.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b598ce81-7d92-49b5-98c1-a948bd63f86d))
(fp_line (start 5.11 2.31) (end 5.11 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28de8458-e7c2-444e-9129-c5a416961102))
(fp_line (start -3 -2.1) (end -3 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d9136b1-307e-4e15-9c93-e61e1d72b381))
(fp_line (start -3 2.7) (end 5.5 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8df06112-61c3-4726-bf48-4dd7f2198fcf))
(fp_line (start 5.5 -2.1) (end -3 -2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfdafe6c-ec49-49a5-9bec-c66225c9276d))
(fp_line (start 5.5 2.7) (end 5.5 -2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f204e739-114c-462d-83a4-64c3ed8f3b45))
(fp_line (start -2.91 0.11) (end -2.91 2.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27c70f4e-c6a3-4b17-be4c-8255756653cc))
(fp_line (start -2.91 2.61) (end -0.41 2.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d86cb0c2-0514-4557-95f3-f8af81ad0907))
(fp_line (start -2.5 -1.6) (end -2.5 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09ae89f6-9889-41d0-974a-95951fb3529b))
(fp_line (start -2.5 2.2) (end 5 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3adf54b7-9604-453f-81a6-aff4d34a9d6a))
(fp_line (start 5 -1.6) (end -2.5 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c5393d0-d4c1-472c-9fe7-c0d1ae0ca37f))
(fp_line (start 5 2.2) (end 5 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdf9b4e0-8e89-4e49-9f78-cc4c11305680))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 12 "/Laser-Cathode") (pinfunction "P1") (pintype "passive") (tstamp d38fa1c7-9ca5-44fc-b2c2-03cc577f6401))
(pad "2" thru_hole oval (at 2.5 0 90) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/Laser-Anode") (pinfunction "P2") (pintype "passive") (tstamp e8b95bbc-79ef-4630-b972-b329cbf42801))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d7f2c6)
(at 96.345087 51.766951)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d86fb5")
(attr smd)
(fp_text reference "C11" (at -0.028287 1.115849 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.12) bold))
(tstamp 9faa0063-dd3c-4f2f-ba02-10aeda1a6717)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb8901c8-1c30-4422-92ae-6f950cd025d1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 82f3ebc5-a1a7-4717-8bd4-722c68941351)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 557aa24e-92e4-4482-baf8-0434a1469252))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d41c6b4-692f-4db4-bba4-7caa92ce048b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2c92556-34da-4248-afcb-11f2b2ea4932))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb28421f-8495-4e8a-bccd-b498bc7cbddb))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed2d520c-e931-4935-93e2-2c67f04c6fd0))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bcf1609-5aeb-4066-997b-d1c6af53c121))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eacde2e1-d0d3-49d9-9951-146b90d5c837))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93000e42-98dd-4ff2-af5e-ebcba7e39794))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp adcece6f-47ad-49b4-9204-ffbcb6ec7ec3))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66ecce8f-4db8-4751-b247-21c8cbdcd45a))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6aba2aaa-0d4d-4700-b5a0-4497e28180f5))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+12V") (pintype "passive") (tstamp 5b25a2cf-0e11-4037-a858-37c08a975a2b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d7f3a5)
(at 92.202 55.8292 -90)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d87731")
(attr exclude_from_pos_files)
(fp_text reference "TP2" (at -0.7112 2.4384) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6a39bb6b-d2c6-4dbd-942b-7ba6843f52d7)
)
(fp_text value "VSense" (at -1.093951 2.365087) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d2f247f-8b9b-4bb5-b499-a5ba0a69f0ca)
)
(fp_text user "${REFERENCE}" (at -1.093951 3.254087) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92212e27-9795-4559-bc93-b9a93d1bf9d4)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e86ca2fc-c975-4a6b-a5e5-4405ef6b7db9))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 70280ae8-7d4f-4669-8602-8363edfd9330))
(pad "1" smd circle (at 0 0 270) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 7 "/VSense") (pinfunction "1") (pintype "passive") (tstamp dba7d9fb-b46e-4324-9a0d-3c437a0398c8))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d7f42c)
(at 93.043087 52.528951 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41780")
(attr smd)
(fp_text reference "C1" (at 1.014249 1.399887 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a123be6b-8e00-4bee-95d4-46104f2f9307)
)
(fp_text value "100n" (at 0 1.43 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dc67188-32fb-4377-8848-ec9321ba3c6c)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp dc4c5a75-8d13-4dce-9410-764f5f7cb840)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebd9e5f5-ecb9-438b-b95a-afdd4ef4f688))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4995a6c3-69ab-490b-850f-4edaa0a8d991))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e185dbcd-acca-4f12-aa2d-4d3745b252fb))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 183c3e77-6ac3-4918-a53f-280146e3a569))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c89eae4-0434-44c9-8c08-40a42596aa46))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4682b95b-241d-4913-9e4d-57a30bf56257))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af57321d-c5cf-4cbe-8f1f-16f4d10d5686))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68de10c7-eb7a-4b24-a2a8-916f2026e6e7))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c06495f7-47aa-4a0e-8e47-a5b9d078392d))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e364040-82b6-4da6-9ed5-0774403b3d09))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/VRef") (pintype "passive") (tstamp 49de9be0-089a-4cef-bce2-efc4372c1580))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 9bbe3fbc-eaeb-462c-b527-c1c0203dcdad))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a830)
(at 107.013087 75.007951 -90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41788")
(attr smd)
(fp_text reference "C2" (at 0 -2.257713 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5afa8b3d-c693-4b85-9009-cb32c6ab5127)
)
(fp_text value "10u" (at 0 2.3 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b58f029c-b1ba-4805-a7cd-2fa3594be40a)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp c3ed1768-aa58-4fa5-a00c-a5ebad6cd30b)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f42a66fc-a9e4-42c5-9704-005e5a28292c))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b20c6780-c5f8-49f3-9543-a8a64b3f9b9e))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65c17612-9c2f-41b4-a171-9c68b8d23473))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16955031-2faa-4257-bab4-5e6628eafc7b))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c041709-400c-4472-aa30-5c288b77a577))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f70c688-b477-49bd-a9b9-ec6260d40c4b))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bc64656-90ff-4686-9215-6bc53948a6c7))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ab805de-54ef-4053-9862-c93a3b72864f))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36f95243-802c-4019-8d31-55689fe10a52))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19c1e829-8e63-4702-8bae-c86e21d9d18c))
(pad "1" smd roundrect (at -1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp 4cdf4368-2a5c-4165-90ab-74784b0e1063))
(pad "2" smd roundrect (at 1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp 92864051-aafc-4fa8-9021-d903f3122747))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a850)
(at 107.013087 69.927951 90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41787")
(attr smd)
(fp_text reference "C3" (at 0.027151 2.257713 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a13c71bf-856c-45e0-8366-6a2ba3130516)
)
(fp_text value "10u" (at 0 2.3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df47cd88-5683-45f2-9d2f-f7f319ec3609)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp b11bd0f1-5915-48e9-8880-0435c1b51fcc)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b2872c4-bc59-4d20-98f5-b3c64c972fe8))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 710e9056-8f6c-4bc1-8d00-279d52d19f5a))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d8bbf76-368d-4e16-8c09-de60cbd34679))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e28327af-89ca-463d-b2d9-2c0944b8ec1c))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10566e83-ce29-4283-ace9-f04a038800db))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16c3e98d-a7b7-4298-9435-cd571f1b82d0))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65e79ca5-2470-476f-8410-4365b6444990))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e747b29b-3fce-4c64-a6c3-84040a7d6e7f))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 582d6a7f-d540-4697-baa2-7326550426a4))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfd346f4-a4fe-49ef-b939-4245827490ec))
(pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp df6149a2-027b-40c1-ad56-9d685b04ca17))
(pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp d56c8b98-0edc-4ae5-81af-9f1aa9c770b7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a861)
(at 102.568087 75.007951 -90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41786")
(attr smd)
(fp_text reference "C4" (at -0.077951 -2.283113 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8dd8bf6-3865-4dc1-9569-db5a38d22406)
)
(fp_text value "10u" (at 0 2.3 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57db117a-073e-45a9-92ec-2f311b91334e)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp f321887f-8a91-405f-a20b-5aee0e39f203)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44c3c387-8e75-4bbe-acdf-f082e7a7d9d5))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b620497c-fe14-4276-94a6-4b72481ba046))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61adee5f-7f40-41c9-8887-8ea119df9f23))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7192b79-8d51-4ca4-84a0-00eb9843019d))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 104ec314-9ff5-401d-b3dd-f0160b2131d9))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33e90a44-0258-4eba-8224-7880d909a18c))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02095425-9aaa-4b3f-a905-089151edfd73))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ef73ee9-4e71-453c-8d9b-75e264251de9))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97c7647c-dd5c-40a0-8e13-b1cb1928ce22))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0ab94ca-dc6f-4f3c-bc23-c8c336bc4d7e))
(pad "1" smd roundrect (at -1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp 94035604-4a5b-4a85-a9ef-8e9221d40337))
(pad "2" smd roundrect (at 1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp a636445d-b252-4439-a29d-e02719ff35e1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a872)
(at 102.568087 69.927951 90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41785")
(attr smd)
(fp_text reference "C5" (at 0.027151 2.232313 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6010ed95-9b68-425c-9027-012faa094eea)
)
(fp_text value "10u" (at 0 2.3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 986f1ad0-26bb-4b4c-bbb7-7c33382530f0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 61bc9ea1-fcea-4719-b709-890d79dfebcb)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc30fc43-f560-4f2c-aae0-953f58a8084e))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdbb7411-295b-4508-80db-c1e815201772))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a221221a-cae5-49e3-92ef-a965e5fb9976))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04bbdecd-c95e-4984-9740-5951fa38b8ea))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac19bbcf-21cd-4c96-8ff2-c02a73eee829))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e71d9612-5bcc-4123-90ce-e28de9bdf692))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 547cc322-1715-4960-bbdd-499513297662))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e721f24-cb6a-4212-9993-69db77983291))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e505996e-6ca1-4afa-9f21-57683defa46f))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9eca6e4-180f-450a-9d77-eca2eff531af))
(pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp e75d81cd-5f11-44a4-8b8e-8e765b512816))
(pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp 0bef540b-bca3-4709-983f-2082d8cf135f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a883)
(at 98.123087 75.007951 -90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41784")
(attr smd)
(fp_text reference "C6" (at -0.027151 -2.257713 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62cf02cb-3f34-4074-a0e3-20f3a8ec939b)
)
(fp_text value "10u" (at 0 2.3 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db1f7e9c-e745-4018-ab72-7f449e3eb958)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a7ff8584-b05c-4875-9db3-5d53be2676c5)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e94d3215-abe3-48e0-8ff9-fc74e18b2625))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 186e69d1-e11e-4d07-99e6-4fec10e79bec))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fb8cde6-0e36-4113-bfea-d36fb2a1e26e))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d6953d6-f155-4666-a1f3-f90520ff0199))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 192d458a-4310-4264-9be6-ba6cc42f83ad))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 773e1eb8-32bc-4101-90f0-62af4c19897e))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 472ab1fd-56f3-4584-9d8d-7c7e5ca5b415))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15fb2e86-90ca-4f88-86d9-c43069c78c87))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b6fce03-4b10-43c6-8842-920e415f6757))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd3560dd-26c8-4925-b9fd-5f2390a82e8c))
(pad "1" smd roundrect (at -1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp 38fa4ecd-8ee4-4c68-85b6-d4e70602e743))
(pad "2" smd roundrect (at 1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp 060399f8-b890-4c8c-b93c-e519c8be576f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a894)
(at 98.123087 69.927951 90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41783")
(attr smd)
(fp_text reference "C7" (at 0.027151 2.257713 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53aa4c06-1c98-412b-a39d-744febecb336)
)
(fp_text value "10u" (at 0 2.3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1d9c536-22b7-44c8-860e-21b23754ff98)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 467d09b8-b6bf-4549-87b2-68a81f3a4074)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cbff6d9-d490-436a-a331-d6754b92d065))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f19ecff3-f4ac-47e2-bdc7-592433ce8adc))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8d083eb-f0f8-4e07-942d-952884274940))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 312bbbfe-1c83-4913-82d8-9e65e6c27148))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 066197bd-3801-49f7-b7ec-ea9bdba15c4c))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a462b089-ac14-414c-ae33-9cbb05666e2a))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9eb5027d-771d-4ff0-a0a8-d0487b986d48))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9068ca7-45b9-420d-be01-d62a1fb0601e))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a18c8f48-cc3d-4fdc-94f9-b7812f47a71d))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 775f197a-0c08-453e-86a6-ed8e64b45387))
(pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp 79b51bd4-bc8e-4703-8a6b-c3c8b2208640))
(pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp 2a9f6e7f-ea6c-4889-894b-602d3e1d3379))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a8a5)
(at 93.678087 69.927951 90)
(descr "Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41772")
(attr smd)
(fp_text reference "C8" (at 0.077951 2.232313 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5a6ade6-c2aa-4be9-8757-b972ee1274a1)
)
(fp_text value "10u" (at 0 2.3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a437146f-f01d-481e-8e3e-e3d686558947)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp f1cd91d0-28cf-4ff7-aa15-0370596c8432)
)
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a674e8a1-17e0-406b-b2af-6946e11cbdc0))
(fp_line (start -0.711252 1.36) (end 0.711252 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 120332d1-af72-43f1-bd47-5640493488f2))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db88c9be-9218-42ae-91e3-841909ca212a))
(fp_line (start -2.3 1.6) (end -2.3 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25b5f84e-3fa5-499d-9d99-3f65ea50ef1a))
(fp_line (start 2.3 -1.6) (end 2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ac99ced-2dd7-42ae-9f07-e49bb5dc696b))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 874967d1-a931-4960-bb3a-39dc994a65d1))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2c7723c-2f94-4d49-b511-4c4a2e4d4be2))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d61e3df-2612-48f0-9f95-58203206edd4))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bbf08f2-566b-44e9-8a8a-878b3bc99a5b))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93bd07eb-2729-4715-9926-672ab80ba8c1))
(pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+12V") (pintype "passive") (tstamp bad19bef-cd96-4c2a-9a35-648b4f9f496f))
(pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp fb21a4ee-48bc-431c-86c1-2dfe071a04ab))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a8b6)
(at 93.678087 75.007951 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d41773")
(attr smd)
(fp_text reference "C9" (at 0 -1.68 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 380a54b2-8156-4f36-8838-70ccc6cd3d16)
)
(fp_text value "100n" (at 0 1.68 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02fab5df-8329-4258-99ac-1168ed575311)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9e2165a0-8622-445b-855b-9dd435cef666)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05bb7253-a452-4923-9b61-e32e69686b6a))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3d4dc8c-e139-4643-8f29-cab01f439596))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ec0a7c6-ef57-49ba-b324-f18a155b276f))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1442a1d-af5e-471e-ad56-ee929536fc5f))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c64579a-808e-46dc-956a-0f8545d1b9f4))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b29a3a9a-f286-4602-9934-9a0119750643))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40762430-d296-4962-be48-5f5055e507b7))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36f80d1b-89fe-43b2-a066-6347c4280012))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d6bfaaa-8625-4f9c-bbb9-8439e2f69e29))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d4d6218-abac-46f1-83bf-919ffcadcb98))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+12V") (pintype "passive") (tstamp bdfb2f07-91f6-420e-9886-be5d1e6bdd4c))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 92bcf4ab-b9dc-450e-bd06-d457d9c63ee8))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a8f2)
(at 98.250087 61.672951 -90)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d4176e")
(attr smd)
(fp_text reference "Q1" (at 3.224049 -2.968913 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1df75af0-2422-4ddd-87fc-c8eec0c30a27)
)
(fp_text value "BCP5616Q" (at 0 4.5 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e65c4bc7-dccd-4cfe-9970-32ec08600b12)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e3b8623b-0b1a-4161-84a3-09a5575076f0)
)
(fp_line (start -4.1 -3.41) (end 1.91 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80d401e9-b817-4889-a97e-b5cacbcb20d1))
(fp_line (start -1.85 3.41) (end 1.91 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d912bf5-8379-4902-9988-bd7ebcdcf8e6))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e570a43-0e08-40c5-aca4-56612a8045b7))
(fp_line (start 1.91 3.41) (end 1.91 2.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19384f21-6041-48d1-9ff0-51dcd243e1ac))
(fp_line (start -4.4 -3.6) (end -4.4 3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f1b6014-fac1-443b-9191-23e1e0d2621b))
(fp_line (start -4.4 3.6) (end 4.4 3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3cbf1b21-fb1f-4b2f-95f9-f0e7a1293a16))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d00bfe6d-26b8-4bb0-8389-ae9430a534c9))
(fp_line (start 4.4 3.6) (end 4.4 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40064f1e-bb80-4de7-8bfa-ae23dd1da6ce))
(fp_line (start -1.85 -2.35) (end -1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 301e7fbf-b279-465c-ab42-4f5cc4c24d80))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff398378-ecbb-4db7-b52f-e29bffa0fd74))
(fp_line (start -1.85 3.35) (end 1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e442b8d8-593f-4ea4-bbcb-69f23f34c6cd))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b08249c5-00a5-46b8-9450-352b88cb9113))
(fp_line (start 1.85 -3.35) (end 1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77f03e78-0384-4d6b-97f5-45e9103ea770))
(pad "1" smd rect (at -3.15 -2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(Q1-B)") (pinfunction "B") (pintype "input") (tstamp a6583468-39e6-4fd9-ac5e-efab474abd23))
(pad "2" smd rect (at -3.15 0 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/Laser-Cathode") (pinfunction "C") (pintype "passive") (tstamp bbe0e84e-25bf-47ab-a9ed-c700ee7364f0))
(pad "2" smd rect (at 3.15 0 270) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/Laser-Cathode") (pinfunction "C") (pintype "passive") (tstamp 8dbd5041-c9d1-45bb-9027-d7b7192033dc))
(pad "3" smd rect (at -3.15 2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/VSense") (pinfunction "E") (pintype "passive") (tstamp 15dfb86f-25f6-4b5e-8143-a0610ecbad76))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_2512_6332Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a907)
(at 104.521 61.672951 90)
(descr "Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Power" "1W")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d47be9")
(attr smd)
(fp_text reference "R1" (at 4.675351 0.1778 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 864735e4-c9c9-46dc-af22-b69ffbb93cd4)
)
(fp_text value "6R2" (at 0 2.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21dd8d11-2283-417d-9719-6c2fd2d458ab)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d373023-ba66-4f22-a450-cff09d820502)
)
(fp_line (start -2.177064 -1.71) (end 2.177064 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 156c1fe0-dca8-4443-9d76-c2f9c712bd53))
(fp_line (start -2.177064 1.71) (end 2.177064 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44a3858b-3c83-45e4-8dec-0db62b4f0641))
(fp_line (start -3.82 -1.92) (end 3.82 -1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45f9fbe0-99e1-45a1-bf17-82f7b3fed3db))
(fp_line (start -3.82 1.92) (end -3.82 -1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fa3a2bb-6ead-44bf-83fc-781207ea4c83))
(fp_line (start 3.82 -1.92) (end 3.82 1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 143aebac-3046-498d-8cef-51f986d61468))
(fp_line (start 3.82 1.92) (end -3.82 1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 534aa16e-7d3c-4cce-83e7-f82cc9199405))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f99aa54-1531-40a6-b371-87388459bab5))
(fp_line (start -3.15 1.6) (end -3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a678fc64-23bb-4c5e-aae2-5ca924090606))
(fp_line (start 3.15 -1.6) (end 3.15 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d773cb7-c3f0-499b-8128-382297865db0))
(fp_line (start 3.15 1.6) (end -3.15 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d97f2589-94b6-44c1-80d0-52f8840b6e26))
(pad "1" smd roundrect (at -2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 2 "+12V") (pintype "passive") (tstamp feb92796-1eb1-4ced-9ec9-46a33e3e9631))
(pad "2" smd roundrect (at 2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 10 "/Laser-Anode") (pintype "passive") (tstamp 72103dd9-0250-434f-bc81-da9da05082fb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_2512_6332Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a917)
(at 100.167087 56.007 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d4958f")
(attr smd)
(fp_text reference "R3" (at 2.173887 -0.4318 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.12) bold))
(tstamp b6627254-fdd9-40dd-9838-ffae9b5c5143)
)
(fp_text value "470" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d4723c7-c003-41c0-8988-6481f71ce642)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5a9ef732-3678-48cf-9401-627e59946266)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4c5b93d-a66c-487d-b8b2-3ea56f3585d5))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8ef210d-a87f-400c-b2c7-13c42c1a2ebc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b1a78a8-68c7-4a50-97eb-37028bf600a7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5c94146-7938-4882-b5dc-586d62400c1d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b69688a-638c-4e02-a370-0e3ff37c5b67))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d508c630-621d-4bc9-ac7e-431367eceed2))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b29deb7-76be-4895-9e11-9b1625240e03))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 722119d8-0891-4adf-bddf-e897bba96580))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22291101-6b52-4f34-af8b-454a783e2cb7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7de0a3b-0168-4ee6-8119-4636715f3af8))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(Q1-B)") (pintype "passive") (tstamp 91289f8d-4458-431f-90aa-600c2c74c8b0))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/ControlOut") (pintype "passive") (tstamp 1a396a50-ebbe-4ca8-9a8a-645b5b23a854))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_2512_6332Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a937)
(at 92.027087 61.672951 90)
(descr "Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Power" "1W")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d4176a")
(attr smd)
(fp_text reference "R5" (at 1.474951 -2.619087 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1edb86f1-5658-4049-bfdf-1a809285bc14)
)
(fp_text value "6R2" (at 0 2.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d1c58a2-2bea-4149-b1ac-410bbe45e9c0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cfb2037-1cfe-45c4-90a8-11f32be77d2a)
)
(fp_line (start -2.177064 -1.71) (end 2.177064 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac937d93-bd06-4d9e-b229-4b541dd05027))
(fp_line (start -2.177064 1.71) (end 2.177064 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 174bced1-269c-47b5-8969-22828608ecf3))
(fp_line (start -3.82 -1.92) (end 3.82 -1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3ba4788-eb01-4941-8b80-828cd180bb0d))
(fp_line (start -3.82 1.92) (end -3.82 -1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba00b980-2912-48b1-a828-0340b634532b))
(fp_line (start 3.82 -1.92) (end 3.82 1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3686896f-9491-40e7-8888-1a1a71ff390e))
(fp_line (start 3.82 1.92) (end -3.82 1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f7e1cde2-6d21-470b-9377-35c111b4fecd))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b54619ba-3e68-4d3a-b02e-95eefcf7eac5))
(fp_line (start -3.15 1.6) (end -3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae48ee2e-4804-4d91-926d-c3739757f500))
(fp_line (start 3.15 -1.6) (end 3.15 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97a2daa8-e6d1-482d-a674-2b250f7c2095))
(fp_line (start 3.15 1.6) (end -3.15 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46d35597-fb7e-4e8a-bdb6-372fac301d2a))
(pad "1" smd roundrect (at -2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 7 "/VSense") (pintype "passive") (tstamp 706dad69-dd0b-4298-a1b9-1c21242f4dae))
(pad "2" smd roundrect (at 2.9625 0 90) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 4 "Net-(R5-Pad2)") (pintype "passive") (tstamp cf8ea67c-d042-4e0a-9820-9fdbf732bb05))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_2512_6332Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a947)
(at 89.995087 66.498951 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d4176b")
(attr smd)
(fp_text reference "R6" (at 0 -1.43 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 603420b9-be78-4e46-830d-3a79a87985dd)
)
(fp_text value "680" (at 0 1.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e63b5c2-2441-4676-a4dd-5c1537bf42ad)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0f7e90f9-e7de-47c7-a031-52299d5f1c7a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37ff49d7-8569-4a44-a34b-9de636283b7b))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40e47219-0b17-4851-881d-c7b320787570))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1239f70-3656-4854-aaea-200a992ce36c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 041d3dbe-d0dc-494a-8c73-9d88556cb282))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7765bd7b-54dd-4845-9b81-647d56ed319d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d6eccb5-c593-46d5-894b-aac1c466347f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d89d494-2e69-4be5-b643-789d8c6f4859))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 326c6d3d-1362-4b95-b916-5beadb8908ad))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b621e85d-1822-49c7-9648-a8d80dfd9d84))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0ac2df0-25a5-4ae8-bb52-73ac5510931b))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/VSense") (pintype "passive") (tstamp db78fbc4-a0f4-4a7a-80b5-d5ed3e3ec876))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 24ae1bad-fc48-4af6-884e-188da1786c2b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_2512_6332Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000058d9a967)
(at 86.820087 61.672951 -90)
(descr "Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Power" "1W")
(property "Sheetfile" "/home/hzeller/src/my/ldgraphy/pcb/laser-drive/laser-drive.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058d469e9")
(attr smd)
(fp_text reference "R7" (at -1.601951 2.619087 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8f50a51-27df-4ca6-b7b6-7c3c51835a19)
)
(fp_text value "6R2" (at 0 2.62 -90) (layer "F.Fab")