-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPower Supply Board Ground Systems V1.1.kicad_pcb
4334 lines (4295 loc) · 194 KB
/
Power Supply Board Ground Systems V1.1.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" 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 "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerb/")
)
)
(net 0 "")
(net 1 "OUT1")
(net 2 "Net-(D1-A)")
(net 3 "OUT2")
(net 4 "Net-(D2-A)")
(net 5 "OUT3")
(net 6 "Net-(D3-A)")
(net 7 "OUT4")
(net 8 "Net-(D4-A)")
(net 9 "POW IN")
(net 10 "GND")
(net 11 "Net-(D5-A)")
(net 12 "Net-(D6-A)")
(net 13 "Net-(D7-A)")
(net 14 "Net-(D8-A)")
(net 15 "Net-(D9-A)")
(net 16 "OUT8")
(net 17 "OUT7")
(net 18 "OUT6")
(net 19 "OUT5")
(net 20 "unconnected-(SW1-A-Pad1)")
(net 21 "unconnected-(SW2-A-Pad1)")
(net 22 "unconnected-(SW3-A-Pad1)")
(net 23 "unconnected-(SW4-A-Pad1)")
(net 24 "unconnected-(SW5-A-Pad1)")
(net 25 "unconnected-(SW6-A-Pad1)")
(net 26 "unconnected-(SW7-A-Pad1)")
(net 27 "unconnected-(SW8-A-Pad1)")
(footprint "E_Switch:100SP1T1B1M2QEH" (layer "F.Cu")
(tstamp 07e84829-d200-4ea0-b974-62efad8f3386)
(at 47.330916 47.2898)
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Switch, single pole double throw")
(property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
(path "/03c001c1-562a-4e05-b824-bd90ccba0ae7")
(attr through_hole)
(fp_text reference "SW2" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07fa9771-94db-450a-9ead-8f792803a925)
)
(fp_text value "SW_SPDT" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d222f22-8889-424a-94ba-d77bb49652b6)
)
(fp_text user "1" (at 2.55 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3bc7567e-4924-4180-a89b-482f4b3b97ec)
)
(fp_text user "2" (at 2.55 4.725 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45363103-8c48-4c79-a736-6bb6828b06da)
)
(fp_text user "3" (at 2.55 9.45 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61dd9a75-b269-4b8e-bd4f-73e463434191)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01a64d2d-3449-41eb-97d6-c3dbc3d5f0a6)
)
(fp_rect (start -3.43 -1.65) (end 3.43 11.05)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 219c86b9-3d8c-45ff-8297-cc0a7a76b573))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(SW2-A-Pad1)") (pinfunction "A") (pintype "passive+no_connect") (tstamp e1811010-cd82-4111-86c1-1ba3c09f109d))
(pad "2" thru_hole rect (at 0 4.7) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 3 "OUT2") (pinfunction "B") (pintype "passive") (tstamp 323ff3af-ab68-419e-baf0-d275e7ad1b69))
(pad "3" thru_hole rect (at 0 9.4) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 9 "POW IN") (pinfunction "C") (pintype "passive") (tstamp 0643c5ac-a4c7-4537-acac-031aa0e552b6))
)
(footprint "E_Switch:100SP1T1B1M2QEH" (layer "F.Cu")
(tstamp 10720241-91f4-406d-88a8-fa5d5154b062)
(at 78.086684 47.2898)
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Switch, single pole double throw")
(property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
(path "/a2f200d4-f43e-42af-a29d-cc1c2ba9d1fa")
(attr through_hole)
(fp_text reference "SW6" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be503c53-0b58-4cb0-9642-eda55ae0b89c)
)
(fp_text value "SW_SPDT" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc224a08-f025-4c48-bc65-7a1009b98e08)
)
(fp_text user "3" (at 2.55 9.45 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 029085a7-d260-4311-b7cc-ec4067b6cc3e)
)
(fp_text user "1" (at 2.55 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12217418-e483-49bf-9abe-621ca9da4bab)
)
(fp_text user "2" (at 2.55 4.725 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aacd6ef3-0dc5-481e-9904-2056e43dc83e)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f94112e-7641-416f-b06b-b41c7883991d)
)
(fp_rect (start -3.43 -1.65) (end 3.43 11.05)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 95546fa1-d05e-49d4-8a18-54cc0e070b0a))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(SW6-A-Pad1)") (pinfunction "A") (pintype "passive+no_connect") (tstamp e766ade5-e7b4-4b79-848e-1f10572efc42))
(pad "2" thru_hole rect (at 0 4.7) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 18 "OUT6") (pinfunction "B") (pintype "passive") (tstamp c0d59b04-ec95-4b04-a112-2dd835084ecf))
(pad "3" thru_hole rect (at 0 9.4) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 9 "POW IN") (pinfunction "C") (pintype "passive") (tstamp d0fac55a-32f8-490f-8b89-7d6fbd4417ca))
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 1d46796d-6834-423f-9469-8659e8b0397b)
(at 63.066513 40.336 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/a9acdabf-c037-4c5e-ac4f-b0bbc405f736")
(attr smd)
(fp_text reference "D5" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 941f46a8-9ead-406f-bc9d-e9e251e0a0e4)
)
(fp_text value "LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fdadf1f-7e14-4b3e-9f03-ed6e8db6c04e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c8e77779-fa16-472f-a3e6-5271f334c6b4)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41ed611e-ccbc-4fb9-a796-370ef07d6f6e))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd744c84-b277-4b46-bf17-84e8f552dd1c))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8a83c60-e72e-4a22-97dd-4707d49ec57f))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7a1b4bc-984e-4577-99cb-6c846e1820d3))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d799da7-b6bc-477b-b9a5-76e50b1dd759))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4afcd0aa-f726-4a94-a93c-12d561179230))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8c3070d-ce70-4352-aaf0-267f6c960202))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f75a30aa-4758-44d9-8ac8-99c412811e3c))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8f020d7-792c-431e-a10c-f67b2970f533))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ad7a5c8-f26c-4f40-8de1-5de0159c49b6))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b37cc300-9ba6-43b8-9611-d34219b8ad40))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5887df00-3e29-4823-8e16-20bc7c7eb33c))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "K") (pintype "passive") (tstamp 14feb113-7e11-4b22-b72d-0cfebe41e75b))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (tstamp de07e2f1-3115-45db-bc17-9822a7759386))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.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 223b6526-14ee-4b97-9f86-4b4d7f85ec22)
(at 96.326 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/2d1d89c3-c529-490d-9143-81a326ba89d3")
(attr smd)
(fp_text reference "R9" (at -0.0032 0 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 093da95f-4b0a-4a53-b851-89c2491205fc)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66aa15cd-2244-4d94-9c0c-945cb66b2ce9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7002121e-f887-4d38-8c63-2e78db4b9a63)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46bdf9ce-73f9-483b-99a7-f9411b7b2071))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a3d2f72-c924-4870-897f-50584b6db065))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fad8a611-0f8a-4c56-a35f-d1a72b573014))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37cdcfc1-2ab1-476c-b0f2-e80350c475be))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09066532-3197-4750-9f21-aa5a97637669))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dab566a-b910-40ba-ab77-9878b947eb08))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 667a9545-fe6a-4eeb-88aa-b692450d84b0))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c12edf11-941b-4719-b37d-88b4695ac80f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 350b8853-f75f-4f13-8e0a-c9292459d750))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 780ed619-dc7a-4fbc-afda-645f493cf2b2))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(D9-A)") (pintype "passive") (tstamp 44f7083d-1b6e-486a-aabf-49cd96b2746a))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "OUT8") (pintype "passive") (tstamp a07dacf0-8d39-4db6-abd0-1c6b75c255ba))
(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 "E_Switch:100SP1T1B1M2QEH" (layer "F.Cu")
(tstamp 34af96ca-1d0c-482d-8805-b8daffcdabdb)
(at 55.019858 47.2898)
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Switch, single pole double throw")
(property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
(path "/f05cc9ae-95ee-4467-a6b0-7aed27d02895")
(attr through_hole)
(fp_text reference "SW3" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b60a164a-5423-48f9-b879-367e9724c2d8)
)
(fp_text value "SW_SPDT" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76b2b075-0343-4e37-a846-fc58cd1abfcd)
)
(fp_text user "3" (at 2.55 9.45 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95b9a2d0-60df-4e7c-a60d-112dcdaf5533)
)
(fp_text user "1" (at 2.55 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed442b37-7a22-452f-8840-bd4a94c6f4e0)
)
(fp_text user "2" (at 2.55 4.725 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4ce35a4-cee3-446e-ac15-08e8511dd7f5)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b93a11d-e08e-4d5a-86e8-607889115b61)
)
(fp_rect (start -3.43 -1.65) (end 3.43 11.05)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 588a3947-8bb2-4945-97f5-ffdb75268562))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(SW3-A-Pad1)") (pinfunction "A") (pintype "passive+no_connect") (tstamp 9b37a668-353e-4d8c-a796-f70e445f53e0))
(pad "2" thru_hole rect (at 0 4.7) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 5 "OUT3") (pinfunction "B") (pintype "passive") (tstamp d473af54-9581-4056-97b7-f6a78bdf1fe1))
(pad "3" thru_hole rect (at 0 9.4) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 9 "POW IN") (pinfunction "C") (pintype "passive") (tstamp d356a4b0-e005-4cd5-8a5b-4b6a52d72042))
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 384ace80-2767-4dcd-861c-d1ad2f63e222)
(at 86.144226 40.336 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/f126791a-b05b-49af-b9e8-313d17660f2f")
(attr smd)
(fp_text reference "D8" (at 0 0.0064) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 925d436e-1798-4788-9306-9476689e42a0)
)
(fp_text value "LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68ecbe0f-c74a-4f80-9b15-9f2cec969f50)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a12667b4-ab8e-4d6f-b1c0-9e9c84740dc1)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9523a79-cf10-48db-a98f-d17dd0e9d55a))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 903c06ec-a054-415f-84a9-46d35e3a7751))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87239370-3ee1-4aa1-8509-e5b34bd10a1c))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f0bbba9-935b-45b9-aa28-5f5684550994))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18ff3459-c8e3-4883-aeb0-e36c5cf18fce))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3636e5d-e341-43ec-aae3-7775e5877747))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02349fc2-76b5-4d76-a3c9-42adefc35d70))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 917191f6-afee-400e-9c96-f677449ffb41))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46605b0d-6640-4cd9-b1c8-d63497f1b8c1))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 693084a4-7127-41bd-8a5a-ae44c905381f))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fdeb36ed-02eb-42f9-acef-377b5c45754a))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 095987d3-7065-482c-93ba-60180b49d41b))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "K") (pintype "passive") (tstamp 02b35e6b-6507-42d7-a2a7-08056d609aa2))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(D8-A)") (pinfunction "A") (pintype "passive") (tstamp b20c0086-6b79-4428-aaf4-8b473c53cbe3))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "E_Switch:100SP1T1B1M2QEH" (layer "F.Cu")
(tstamp 385313dc-adbf-4d32-ae2e-4d9eb18f07d4)
(at 39.641974 47.2898)
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Switch, single pole double throw")
(property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
(path "/330a390c-06aa-481e-9001-e535a1301943")
(attr through_hole)
(fp_text reference "SW1" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 610c54f6-cab6-4377-a5d7-b062ae3fdcf3)
)
(fp_text value "SW_SPDT" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9443fb5-b478-405c-83a0-cc91f2e040cc)
)
(fp_text user "3" (at 2.55 9.45 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09a69980-f0e6-46ff-8ee5-601734a4c06d)
)
(fp_text user "1" (at 2.55 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8385a60c-8eab-4aef-8eec-bd3603a6faaa)
)
(fp_text user "2" (at 2.55 4.725 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dadcacdc-91d0-44c6-b1fa-1468f0be7769)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d738cfc1-d572-4658-8172-575477fb3384)
)
(fp_rect (start -3.43 -1.65) (end 3.43 11.05)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 1a9de600-bd31-4699-8dcc-b8bca7ad8b8c))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(SW1-A-Pad1)") (pinfunction "A") (pintype "passive+no_connect") (tstamp d2010f93-7959-4c18-9778-4ccd05793e02))
(pad "2" thru_hole rect (at 0 4.7) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 1 "OUT1") (pinfunction "B") (pintype "passive") (tstamp 6ea97544-1851-4c9e-9bcd-f780e10cbb4e))
(pad "3" thru_hole rect (at 0 9.4) (size 3 3) (drill 1.85) (layers "*.Cu" "*.Mask")
(net 9 "POW IN") (pinfunction "C") (pintype "passive") (tstamp 53b44342-5873-4c46-b4d7-6fe62d25bc40))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 3b6944f3-5d77-42ac-8349-c704b262fa97)
(at 80.9336 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/c9262c53-6fb8-436d-8c2a-66a278150987")
(attr smd)
(fp_text reference "R7" (at -0.0032 0.0046 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 44c357ec-cc3b-4de6-8aee-0101a498d29f)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fca753ef-d47f-426e-b7c4-056ce0561dc5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d5884bb7-9fa0-4669-8044-80b2e10c34fb)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98439cb6-1aee-44ea-ad52-70ec4f2ca20c))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0417a269-173e-42f7-adf0-9d00146e5b2f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83478181-a875-472b-9d4a-708f5a4a9e8b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07bfb44d-f0ed-4318-a71d-8a9fb4086043))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1439be3a-f396-42af-90db-a72e7083f1b0))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fde8e003-0d82-4dea-a1ec-e102b1c627b8))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68ec968c-892c-40de-893f-b5ce637f4381))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3bac128-cdd6-44c1-ad4b-367c868aa251))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7ef394e-f0c5-4de5-a3f9-5413bf1d9df7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48113898-e4ba-4018-9ad3-371e9ea5a79c))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(D7-A)") (pintype "passive") (tstamp 871a4f3b-5032-49ef-a1ba-5cf6fd3f4879))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "OUT6") (pintype "passive") (tstamp 4642787a-7bc1-4b32-a8ea-e88ea6a1cc09))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 48732dc8-ba78-4649-98c8-e5a84bc1054f)
(at 65.5412 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/018f2042-a4b3-43e7-abe9-b9ad0a13dcd1")
(attr smd)
(fp_text reference "R5" (at 0 -0.005 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp d5aec21d-c4ae-486a-af78-dadd08cfb879)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69b672fc-209b-49b3-bdb2-3f0606d37005)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 428b570b-1dac-4f9c-b0e7-b66b4250f7a7)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 869a3cf8-f795-489c-9483-c2207c399504))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 013e4de6-f16d-4baa-89bf-d865e3facd98))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d92a4237-92ae-414b-998d-e11d4ecbc321))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58edca99-566c-4ef5-a450-6457fb80024b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0af9894-06bd-4245-bbab-8a3922e64537))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0f2283a-8694-4fb5-8af9-95adf5d4409b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 893f8eef-2354-4560-8d91-c8f9b2fcff40))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d1fedfc-0f17-49c9-92b8-c50ac868e64e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abd7bd5f-11af-4a70-8a17-388d0a984018))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8691dbd-edf9-4c42-9c9a-4cceb787ed01))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D5-A)") (pintype "passive") (tstamp 1ce6f9a7-f6f8-4be2-9beb-980a2920fe3b))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "OUT4") (pintype "passive") (tstamp 89e07bd1-8f28-4fb4-9ffb-d9d4790df0d2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4f86b19f-5bea-4e68-95d5-8f61a6757b61)
(at 50.1488 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/c7377935-b746-4121-aece-d0dccaa8cecb")
(attr smd)
(fp_text reference "R3" (at 0.02 0.01 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp bef846c6-0d40-40fb-924c-769db8cc7e96)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef905b5a-8d7d-4c24-a6af-bfe1fc00a365)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fa721fc6-7ff0-4fb5-8276-310dc41d8966)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41f15969-bd58-409d-b424-ce45522eeadb))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1b8aa7f-ec1f-4629-a653-6f795ce23272))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 419645ba-8b4f-4ab1-af3d-dce6570fc920))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53e4faee-d4fa-4411-a88f-6255649d6031))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0aa29424-514b-483a-9e39-1d684cbc193f))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d203259f-4a0c-4ebc-a811-25c23e978106))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd0629eb-068c-4b43-a163-1e7c678a92e4))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ed634ca-1825-4f8c-adc4-b36031dc49fd))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01f68fad-e738-4cc4-b37d-cc4439ca87c1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6da6896b-12ba-4d9e-8556-92ebaec0b1c3))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D3-A)") (pintype "passive") (tstamp 28a32f4d-1001-45a7-8905-4c7cb80326bf))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "OUT2") (pintype "passive") (tstamp ecc0fe25-1538-471d-9f5d-2f4e8544118b))
(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 "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 53507c0e-7c1d-4c35-ac7c-54a8b8304623)
(at 47.681371 40.336 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/85131fdc-738e-40a3-bc70-8704fbb1f9fd")
(attr smd)
(fp_text reference "D3" (at -0.01 0.01) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.15)))
(tstamp fe2635b6-a5a4-4bd9-852c-9d64eff92278)
)
(fp_text value "LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfb5c32b-16db-40d9-a626-2e8e5056224d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 72d09763-2042-4a9d-b3e3-b15bb163f9f4)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9870a8d-5ffa-4b8b-b5b1-480943a12ec8))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31a7db4f-14e1-46bb-9778-ce5467e0b151))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a664fec-e375-4e1a-9d82-aa800da1b31a))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1f0c284-e68d-4d37-be1c-f2c883add1c5))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e176fb3-0996-456e-aa61-ee602da32c1f))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12328a18-8305-44cf-b78e-21f7afc10d71))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09f3e529-8493-4879-8251-dd389f438f04))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77331e3c-4f6c-4dbd-b8bd-82e21e5f83a7))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d52ab1e7-a626-491b-b9ba-be453b64c551))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76e1e6e5-6a60-4a29-ad47-acccf337e63c))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a1c0b6f-5875-4aae-a238-f67553bef8b4))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cfef688-afe8-4de1-a724-e21c93229de3))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "K") (pintype "passive") (tstamp 0f12c139-cd0d-4b6a-b2cd-4ef079a74b7e))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp c7b07169-d412-4241-8c9f-a6bfcdeaaf30))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.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 68522534-b75a-4d26-bdc7-037dbac7b8b0)
(at 57.845 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/49691f5a-d750-4c2c-9bb5-76b9fc97c33f")
(attr smd)
(fp_text reference "R4" (at -0.005 0.0254 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp a9ff3225-ffe6-4a95-a8e1-e26f8588e9ae)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f21b9b01-2d7b-4a62-bde4-cef288de9a68)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d09b650e-9697-4191-abc2-1a4b192cf890)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55ff86a5-b5c6-48c2-950c-bddb66d98e54))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b101869-1be8-48b2-99f7-705dd0c51a98))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 486dea8e-5486-4e67-af0c-77e8bf94a1fd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e278df95-f786-4ec3-94e5-5284db49bf19))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93707e8c-8f0a-4943-8817-fdc56fdf4ee3))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ea4d99f-baa0-453d-be98-4f7631ebd64b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 030b4685-b7e0-427b-b6fc-cfa54307119d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19ed38bc-51ab-4344-8b42-a5c8521628d0))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d069e29-28b7-4147-94bd-5617caa6c295))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1539a16-bc35-406c-a854-e7c511277342))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D4-A)") (pintype "passive") (tstamp 4468afa5-de23-4698-aea8-ca194eacdf0c))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "OUT3") (pintype "passive") (tstamp 2d13b1f2-dc02-4ff6-8709-a903d9892d56))
(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 "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (layer "F.Cu")
(tstamp 6dc27f1b-2af0-4934-8d8a-d73bcd5f7bab)
(at 102.87 60.325)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/8c38df7a-f678-41da-8aaf-24aabd530c1e")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98ab6e4e-fd14-4513-a880-7e618ff79218)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c601440c-38e7-4bff-b26d-b8f6e58a335f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64b42158-ce8c-4e6d-9718-3747536cdbf4)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 314b1ae3-6b6f-4a25-b699-b5e177545493))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp db42cae6-615c-482a-990d-5f3506d97d66))
(pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 10 "GND") (pinfunction "1") (pintype "input") (tstamp dc64b04d-0ea9-4b3d-87dc-703e0ab284c0))
(pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "F.Cu" "F.Mask")
(net 10 "GND") (pinfunction "1") (pintype "input") (tstamp e8cc69f2-8fb0-4718-a17a-ef8c1aaf3a78))
(pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "B.Cu" "B.Mask")
(net 10 "GND") (pinfunction "1") (pintype "input") (tstamp 7179d9b7-562f-4b5f-9b31-71eb4252649b))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 83798bf8-5715-415f-84e0-b671a06e4d04)
(at 88.6298 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/f40d8b07-8125-4ce5-9500-45e4f44ef6fa")
(attr smd)
(fp_text reference "R8" (at 0 0.008 -90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 2fc06dc0-e08f-4865-9164-8dac2e8d7c6e)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6efec9a2-5912-499b-b7b3-77dbeb91f0ac)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c2d0eee4-e05c-4ad5-b129-ba999f2e7417)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae110e9c-3dfb-4d09-aabb-728ec952508b))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf25da9d-3679-46ee-a2b0-2f398fdad89b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85207609-f120-44f4-b113-307e1e0836cd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 246b77cf-0c47-46f0-b0c2-010828eafdaf))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34f36170-a9c2-4833-8ae5-01ec3f0c15a4))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d5ba170-6c16-453e-82cf-762de2e9c2ab))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 638ae5fd-480b-4f5e-b1a2-d2fb1c3add02))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1c2a055-82c0-4465-9b28-86ed6421b135))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 965a4b8d-9cce-48c9-b89d-73c82a4f5ba3))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11bf2e6a-f2b6-4a45-a859-b13615eb14b6))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(D8-A)") (pintype "passive") (tstamp ddcb25f0-10c2-4cdb-9af2-b5ad8b3c0753))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "OUT7") (pintype "passive") (tstamp 564992f1-85a2-4df9-bf7e-ad029dc8ce62))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 89b537d3-b40c-4e30-8e3c-410d93cf8a1e)
(at 42.4526 42.7998)
(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" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/7a777b84-7e18-4fa6-9c6d-db2807a2f826")
(attr smd)
(fp_text reference "R2" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp d30e0f1e-f2ac-4c6f-90d3-9230746f2be3)
)
(fp_text value "8K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6d86d65-7593-44be-b98c-7fc79d879d98)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c925681a-73a3-446d-8e0e-820a02dd847d)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 659996d2-23d3-421e-acf4-9a98454b9fc7))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47c57a2d-e31c-4771-bfe8-717755424aff))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abaf4f79-2221-4151-9f04-1f3d3a8a49f3))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef97d081-9560-405f-b123-58b4b88f9ff4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d332f141-09d0-408c-ada7-233ef2b4b548))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8b06178-3064-4dba-a749-08e42c046324))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5be94bc4-5d96-4dd2-8b8e-3356f9ecee0c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp edcb5a9f-7d29-422d-a5ae-3e67a19f8303))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 357fd48b-8f77-4b95-a3e9-f852c5938ce5))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0efff351-6a4d-412e-92fd-a3a58b576f57))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D2-A)") (pintype "passive") (tstamp ba6c937c-e6eb-4db6-909b-917cdebc64ee))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "OUT1") (pintype "passive") (tstamp d7359e10-b577-42fc-a682-436e8a32d143))
(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 "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (layer "F.Cu")
(tstamp 99584fa9-d87d-4722-8ef8-dcb00932326d)
(at 30.48 60.325)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/09535de1-647b-4081-970b-b1ad1bcdad84")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 075e8087-d603-44b1-9133-1ba6993058b8)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f26ee93c-5a2a-4412-af57-76e9ae4aad2b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f951ec7-4f53-42fd-8620-77b9ccd0eb06)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 8cd3c3fd-8ac2-41e6-b7e0-cd2ced540c10))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6cd6c0c5-e452-45a4-9ff6-7b084867954e))
(pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 10 "GND") (pinfunction "1") (pintype "input") (tstamp 29b11148-7ed8-4a7e-847c-bd366dec4e03))
(pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "F.Cu" "F.Mask")
(net 10 "GND") (pinfunction "1") (pintype "input") (tstamp 1f06a603-2417-41ea-8b89-f275199ce54f))
(pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "B.Cu" "B.Mask")
(net 10 "GND") (pinfunction "1") (pintype "input") (tstamp c52ed7c5-fec6-4fc3-8296-9cf3a3c1e690))
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 9fdd4ad6-620a-40be-b8a1-53955400378b)
(at 54.030001 64.720001)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/95143f63-5bff-4541-9222-0a6d69e26158")
(attr smd)
(fp_text reference "D1" (at 0.03 0.01 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 22c83981-cc20-4609-b41a-fce5943c16f1)
)
(fp_text value "LED" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 260c6b23-d2cb-4f71-9198-e66241242a53)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f7492179-786e-466e-afa2-d15d4f497175)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 484d588e-5f95-4523-83da-80590f103030))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55f75f8e-6870-4669-8356-1f99a526666b))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 198f39bc-a18a-4da7-bcca-2321cc4447ca))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbfada93-4e12-45bd-bd9c-d4872c0a062d))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cc57ba8-8b37-4d43-a9ee-4f8c0ceb9fe5))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a04ba04-dd63-4406-b84a-8d77960d9e72))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e91c5f6-45df-4e6a-be0c-521cda3501a7))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c6a1c31-8dbf-4d66-8b8d-920fca001a44))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74c0e13c-1d6b-4a2e-8fa2-995858e96cd2))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a106e7ce-1911-4da8-a72a-b7dd788a42bf))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15dfe45b-855e-45f0-a3cd-c3a3ee34aabf))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19c48ddc-d457-40ff-9ece-1f40e562af29))
(pad "1" smd roundrect (at -0.9375 0) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "K") (pintype "passive") (tstamp ef8cc98e-26b7-4948-9c9a-5bd9545dfc6c))
(pad "2" smd roundrect (at 0.9375 0) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp b370a4ca-110e-413d-9fed-d3c17a6a80ed))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp ab234c62-d4ec-49a2-b227-bbb4526198d1)
(at 78.451655 40.336 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "Power Supply Board Ground Systems V1.1.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/f18af49e-a6ac-4b55-8a29-6000d995a06f")
(attr smd)
(fp_text reference "D7" (at 0.0058 0.0064) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp cc9be7ae-de68-4699-bc60-1622e1c0e622)
)
(fp_text value "LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98c2b4eb-6f5b-45db-bef4-da758d244c10)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9b2d3ffe-5779-4571-a713-fee8b757414c)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09a10004-c614-447d-ae85-c183c4efa0ed))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9942939e-9443-4d6e-89a0-3cb2e9a06a14))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 297da1c8-c33a-4803-9aff-82c06a417412))