forked from keshuaixu/dvrk-s-led
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvrk-s-led.kicad_pcb
10833 lines (10797 loc) · 409 KB
/
dvrk-s-led.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)
(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 false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "VDD")
(net 4 "unconnected-(D0-VCC-Pad1)")
(net 5 "Net-(D0-VDD)")
(net 6 "Net-(D0-DOUT)")
(net 7 "Net-(D0-DIN)")
(net 8 "unconnected-(D1-VCC-Pad1)")
(net 9 "Net-(D1-DOUT)")
(net 10 "unconnected-(D2-VCC-Pad1)")
(net 11 "Net-(D2-DOUT)")
(net 12 "unconnected-(D3-VCC-Pad1)")
(net 13 "Net-(D3-DOUT)")
(net 14 "unconnected-(D4-VCC-Pad1)")
(net 15 "Net-(D4-DOUT)")
(net 16 "unconnected-(D5-VCC-Pad1)")
(net 17 "Net-(D5-DOUT)")
(net 18 "unconnected-(D6-VCC-Pad1)")
(net 19 "Net-(D6-DOUT)")
(footprint "0-Library:TO-263-2" (layer "F.Cu")
(tstamp 0b459bf9-b68c-492a-a0aa-d2b81e0b6e2e)
(at 36.225 114 90)
(descr "TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/")
(tags "D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252")
(property "ki_keywords" "Voltage Regulator 1.5A Positive")
(path "/ad673409-a6b5-412f-bb14-962debd6ec67")
(attr smd)
(fp_text reference "U1" (at 0 -6.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88edfba6-df85-4a7e-b108-31aa325b4448)
)
(fp_text value "L7805" (at 0 6.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85065d1b-b72b-4e41-b39f-367bd5423ae1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c50e77d-4d6e-4c45-8581-a94e6f3b8fec)
)
(fp_line (start -2.95 -5.2) (end -2.95 -3.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94186916-c423-42c3-aacd-f1385745a59e))
(fp_line (start -2.95 -3.39) (end -8.075 -3.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bacd66bc-6c52-44b0-b977-4a5a84bad0b3))
(fp_line (start -2.95 3.39) (end -4.05 3.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f21a410b-2f09-4b10-8225-5b45e2323b5a))
(fp_line (start -2.95 5.2) (end -2.95 3.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9608fc14-8540-4ab3-b6fd-b470aeedd618))
(fp_line (start -1.45 -5.2) (end -2.95 -5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 265bb2a4-1bcb-4555-b2e9-1750eace51d7))
(fp_line (start -1.45 5.2) (end -2.95 5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81b4e72c-b7ca-42df-8315-40e5a77c7920))
(fp_line (start -8.32 -5.65) (end -8.32 5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a32b0631-0d1e-4899-ba55-8e027d7c5830))
(fp_line (start -8.32 5.65) (end 8.32 5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffb5e6b2-fc2c-4883-b94b-a790f1f50ba0))
(fp_line (start 8.32 -5.65) (end -8.32 -5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0562a3f3-c61f-4f6f-941e-e865dc6c21b5))
(fp_line (start 8.32 5.65) (end 8.32 -5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0868c25e-fd24-44da-ba5a-02f06f1cda37))
(fp_line (start -7.45 -3.04) (end -7.45 -2.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e68a402a-0952-4096-865a-a0013d58b405))
(fp_line (start -7.45 -2.04) (end -2.75 -2.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7fe1e1b5-c988-48e4-82b9-0d623c98e1f5))
(fp_line (start -7.45 2.04) (end -7.45 3.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa15f23b-80ed-44f4-800d-1c2c0a3e4db7))
(fp_line (start -7.45 3.04) (end -2.75 3.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f913039-fef2-4739-85ee-1d62776e52ee))
(fp_line (start -2.75 -4) (end -1.75 -5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbeaa5fc-ec4c-4c67-bdc1-44ea1c5b01c0))
(fp_line (start -2.75 -3.04) (end -7.45 -3.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae7caa92-ab31-494a-bc0d-713655c15d3c))
(fp_line (start -2.75 2.04) (end -7.45 2.04)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6ed8a52-0b00-4a4d-b44b-3dbedee7a784))
(fp_line (start -2.75 5) (end -2.75 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c40eab23-3b10-4ea5-9a47-919f06c02178))
(fp_line (start -1.75 -5) (end 6.5 -5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc8dac88-df1e-44e4-969b-09adff8677c7))
(fp_line (start 6.5 -5) (end 6.5 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2eb7880-d608-4026-92a8-3b08e9b5024b))
(fp_line (start 6.5 -5) (end 7.5 -5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e152b2a1-123f-4e1b-a007-1137965ad78e))
(fp_line (start 6.5 5) (end -2.75 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0bb9684-f6bf-402b-8d38-b1404556a413))
(fp_line (start 7.5 -5) (end 7.5 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13e2e953-377b-47bb-81b9-2fe0a4966579))
(fp_line (start 7.5 5) (end 6.5 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06667e4c-cc63-494b-95df-16639b20534e))
(pad "" smd rect (at 0.95 -2.775 90) (size 4.55 5.25) (layers "F.Paste") (tstamp 6a7f8a7b-9cb6-4e57-9b71-4c62747972a4))
(pad "" smd rect (at 0.95 2.775 90) (size 4.55 5.25) (layers "F.Paste") (tstamp a76f625b-0349-43f8-9800-3b4fd114b6ae))
(pad "" smd rect (at 5.8 -2.775 90) (size 4.55 5.25) (layers "F.Paste") (tstamp 4bd96022-d09c-4be3-8f08-642a9360ee59))
(pad "" smd rect (at 5.8 2.775 90) (size 4.55 5.25) (layers "F.Paste") (tstamp 698970c7-6064-49d8-8292-a07331e457cc))
(pad "1" smd rect (at -5.775 -2.54 90) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+12V") (pinfunction "IN") (pintype "power_in") (tstamp 8ad4fd19-013b-4bac-a590-9cfeaf5d6f27))
(pad "2" smd rect (at 3.375 0 90) (size 9.4 10.8) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4291cd5d-9f3e-43c5-916f-8f304bf0ea99))
(pad "3" smd rect (at -5.775 2.54 90) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VDD") (pinfunction "OUT") (pintype "power_out") (tstamp de6096c7-6492-465e-97e2-b737105c9898))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-263-2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1ad9d488-c5e8-4cde-8e90-084d46644ad2)
(at 110 116 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/44308bb0-21f7-4287-aeca-362a7b40aed4")
(attr smd)
(fp_text reference "C8" (at 0 -1.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a51cc4d7-a647-4ac4-95a1-544dbfdafca4)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78745187-dc6b-438f-a8c4-21605df1be67)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d8893628-09ac-4e6a-b2f0-35e9cbcb089e)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77dead10-cff8-4bde-91dd-c358ae2ad16a))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 519474d0-1713-46d7-a0e7-a8a8fb1b1b89))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 144b9d9f-5c5e-4ce2-8c54-9fedd89c2e5f))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 392b68b8-b82f-4959-8a4c-692e968dcefd))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46476a57-2afa-4773-86a0-a9ea68e87121))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 126a4911-7bdc-4cef-a037-8d272e0d3616))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e19d5433-3f41-49f7-88ff-78d4dffe3b32))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2ff94cd-45f6-4c93-acee-cf4687619381))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99e800b8-d1a1-4f02-bb0f-5fe7462b817d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bb97d2b-6350-4ce3-b99b-223197e37eff))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (pintype "passive") (tstamp 104c5ccb-3e3f-43d3-b3dd-e05cfa310e91))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a5925e7b-5038-4737-9774-6aee14cb1511))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2725b094-0b62-4b60-bf9e-8f5e8ba23cf2)
(at 35 125 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/36311be8-0ccb-4b9b-a7db-a0b60a4d92fa")
(attr smd)
(fp_text reference "C2" (at 2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 293c2425-994a-4db4-b2a4-973372e05ce6)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12cf2571-b607-42e8-9f6b-85878d27265a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d80b1b9d-1b20-435e-b48e-997b564e2491)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49f03941-1599-4fcc-9479-50afb352320b))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7864ec35-b088-40d8-a19c-e93e86270b5e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a093cc2e-9151-484e-86fe-dc83cfc09400))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18b6f4c4-c185-4bf1-9d32-e9366dab38bc))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66af1a92-a30f-4934-8db1-51d998f2f564))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f30db1a-5a15-4aec-aea1-68075e720853))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a1d9a93-2cf4-4e69-89a7-1b9d43507e57))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2c692d2-a576-4707-a077-46dde6482746))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f94d220-ac95-4007-a327-a5a26ebc3631))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbb55499-f5bf-440b-b5df-056aae15d3ba))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pintype "passive") (tstamp 09582a2a-8ea1-4db4-a859-fd5d55c0c41b))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e1bc4ccc-9b43-469f-a0b7-99aabcb20769))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2ba4b661-1124-4eaf-bee4-8a5fb57301ac)
(at 44 120 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8309988a-a7c7-4219-9b5f-77ce653bffb0")
(attr smd)
(fp_text reference "C5" (at 0 -1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e5b4933-1995-4f95-89a7-d8db1b69e118)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16205420-0f54-4402-8e19-947557b1a606)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 1137213b-a156-4076-8c02-2a6fa61a192d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a9ed39f-efd8-41c4-883f-02bbef61b8de))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1e949a5-1a15-4355-bbd3-cafd45202fc8))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64966135-e008-4968-840b-0168af900167))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63b239ba-9f4b-4a08-b573-9d7a85fc74be))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d775ddd-8245-48b1-9387-60f13b0a6ffc))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04b43e47-b0e1-415e-be12-04c7f7a134c8))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30e75e15-b5e8-4a14-9410-71c785fa80ad))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34ce615e-b0e1-44e9-89c6-5bcaf85314d9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15ecd6a4-9ef1-45a5-97b9-9b47b6271829))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69babad5-9962-4fbd-bea0-6ac7a6054d8d))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (pintype "passive") (tstamp 41d179b7-e182-49e4-8bd9-224c1b998817))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 07e3d4fb-919c-4814-99ed-f164c38742fd))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2d33eb49-0725-4756-9567-f309c19b06ab)
(at 185 116 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/db4d4976-21e5-4794-9d6b-2b127bdb99c7")
(attr smd)
(fp_text reference "C11" (at 0 -1.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 113e196e-b1ed-402e-b195-80f2df7d423f)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77a0d085-26e8-4ca6-bf41-0f47d86527db)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b54f6fca-a48a-408e-a563-b109cc72b46b)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d354ff0-28c0-4a84-b73c-c77285927088))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ba48995-6f1d-4aab-b619-3682a4c268b0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a9fcd4b-5dd5-403f-af47-9c377ea215c9))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8babdfa2-f461-4828-9060-36791169655f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1ccd5b5-b845-4914-ac65-c9dfcde4684a))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18f14894-3708-4235-a357-1a7ff4fb0887))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3c31858-1a57-4066-8ce5-7dff05c9f273))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0df25ee-fff3-48db-9c0e-046af8183379))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecc30267-efe8-4e7e-9a09-00c39b97b13d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 773961bd-dd7d-407b-a839-28863f4bac0c))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (pintype "passive") (tstamp 4c2ee7ae-712a-47e3-b253-45ac61e05711))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 39ff690a-a2cc-40ec-a760-582318d3cb84))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 3433d013-9a22-4756-9fd7-fd5ba71c299b)
(at 85 116 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/276e7943-331d-4521-b029-469b8c344212")
(attr smd)
(fp_text reference "C7" (at 0 -1.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfc2d43e-217a-4691-94b3-620a02e6d818)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84376905-adec-47f4-a4a3-a06f35c88f6b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 6d14d6b3-a2b9-463c-9548-8c16d6cc0124)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c7a1b50-4334-4524-89dd-079580253f17))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 258e3afb-8721-433c-8367-586d5e82ecac))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c49474f-9932-490a-9fb5-e2b09a272e2c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8bef8ba-07bc-4ace-a3d6-7d392039b28d))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 962c1676-1b60-4ccb-ac3d-b723bf960b13))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 349726d1-7841-4cec-9713-b3dd654c4a93))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1619a306-0d4b-4223-8296-cf3ae25af18a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 542e44a2-4d92-4ed6-bd6f-fa6cf56dc8f6))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02aa4a2c-4b44-4636-9f78-f6d0db23c3d3))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53eb7529-7ab6-4858-9b16-ff2c9fc3631e))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (pintype "passive") (tstamp fa266a4b-7e3b-4290-afec-465bc374dd4a))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b21e589f-260e-4e20-a86f-fb775ecdb1d5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm" (layer "F.Cu")
(tstamp 4a685e6e-ed58-4b0d-a370-15c738951e30)
(at 105 115 180)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812.pdf")
(tags "LED RGB NeoPixel")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED addressable")
(path "/6713ba45-eb26-46ab-8e01-8c828003790e")
(attr smd)
(fp_text reference "D3" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3a14797-c9b1-40b4-be41-060bf9960057)
)
(fp_text value "WS2813" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2eedd492-fee3-40f6-9cea-8c8954338216)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ea710e26-5e7f-4d8e-a50f-a7950e2649c3)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e2d8a8c-e78e-4044-a3ca-e13e6b16046e))
(fp_line (start -3.65 -1.6) (end -3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 028b3e1f-51ac-4155-a6bd-3da69ac7068f))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9b84133-1906-4a4c-84d2-4b05dcb24a87))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b787833-5532-48a1-9ae7-a7d26c0961bc))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99b43f38-ea1f-4330-b19d-4a6208609fa2))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eac9c06f-d045-40d9-b4d8-44ac24e97ef7))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83e475e4-51f3-41d8-b5cc-c85f5d69666d))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 804f8c36-9e80-4bd6-a5eb-9915701ce200))
(fp_line (start -2.5 -1.5) (end -1.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f98b1e6-125d-4261-877a-32e2362bd4aa))
(fp_line (start -2.5 2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31696b2e-24bd-4746-b380-a3d802af0a3e))
(fp_line (start 2.5 -2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78d8c2aa-086f-4147-8996-3daf87d66896))
(fp_line (start 2.5 2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e32869ff-86ca-448c-87ff-0a0ff36d1fcf))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 8f8f4e6b-49d7-489f-b7ec-d95a96d17c92))
(pad "1" smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "unconnected-(D3-VCC-Pad1)") (pinfunction "VCC") (pintype "power_in") (tstamp 67f01286-266f-4588-a601-e9a06ff99b61))
(pad "2" smd rect (at -2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp 70eeb286-3d8f-41d9-972a-8b5b2e20622e))
(pad "3" smd rect (at -2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(D3-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp bb294e6f-f85a-49c8-8cd5-436e11363986))
(pad "4" smd rect (at 2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(D2-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 704973a6-8c17-453f-9204-72241797eca8))
(pad "5" smd rect (at 2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e87fbdd7-7855-40bd-a256-ad50c9c9e865))
(pad "6" smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(D1-DOUT)") (pinfunction "BIN") (pintype "input") (tstamp 4b6a4b07-d88d-4af7-a123-a15bd4e29c95))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "F.Cu")
(tstamp 530ea5dd-2214-47e4-9d8d-bdc5ea3c7e8b)
(at 110 125)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/36685958-40f4-4234-be92-237678eb4162")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 287f44f5-0229-44df-a529-28c66c2c05fe)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f5516d2-589d-42c0-8cfb-9c808700d948)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 115035d2-5b91-4395-854e-a07479a04eae)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 2f3354f9-0f79-4a39-82f9-48ba0583d74d))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp a1ae7e36-ccc4-4ac1-9bbf-0cf9ac0af57f))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 26302ba9-3aa3-471d-8be5-9bcd8ae8db0e))
)
(footprint "LED_SMD:LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm" (layer "F.Cu")
(tstamp 53d7abcc-e4a0-452b-adc0-1fef0c892a9b)
(at 55 115 180)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812.pdf")
(tags "LED RGB NeoPixel")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED addressable")
(path "/422a6702-d1c1-4e76-898e-ec20aaee30c2")
(attr smd)
(fp_text reference "D1" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4eeb9f8b-d539-4f38-99a0-ad49bb473366)
)
(fp_text value "WS2813" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e96558da-0c0d-4022-aaad-9a903de95f1b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 29145932-d959-40a1-9208-c65b079f8728)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de1d877f-766c-43a7-aff2-8b200a600951))
(fp_line (start -3.65 -1.6) (end -3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9813def6-bfc6-44e1-a5fa-31d8cbe5b62e))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 114070a5-9012-4bd8-8fcd-076476aa041d))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a600cef-ac2a-4df0-a587-09006c04dfd1))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ac6ad84-598a-4d38-bcfa-982bf4c82aca))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21c29ce7-0171-42c2-8d09-e3753003c680))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31fef72f-b9f9-41ef-a686-008ec3d34ca4))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 003f45b5-a721-43fa-a486-971419071cf2))
(fp_line (start -2.5 -1.5) (end -1.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 066ff4a3-c038-4a4e-89ed-9554e83f3be1))
(fp_line (start -2.5 2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36dda009-2107-4098-9aa2-93baa6016f99))
(fp_line (start 2.5 -2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8eb9faf0-e874-400c-837b-eff08969d12d))
(fp_line (start 2.5 2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d981f1d-e52b-4ea4-b036-ad402b881dc3))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 375105c6-1c19-4a86-abc1-1b4111f117a0))
(pad "1" smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(D1-VCC-Pad1)") (pinfunction "VCC") (pintype "power_in") (tstamp 2c6b9b7d-471d-4385-92a3-48e1a4b525b2))
(pad "2" smd rect (at -2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp 7900c29a-8cc2-41a9-a689-bb95baa79311))
(pad "3" smd rect (at -2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(D1-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 26802e07-b69f-4ec5-b17b-7f115f11682a))
(pad "4" smd rect (at 2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(D0-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp a16653e5-aef1-41fd-9d53-b5da7c9d94f3))
(pad "5" smd rect (at 2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0f096251-ca6a-4a7b-a86f-de5a00e6aed4))
(pad "6" smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(D0-DIN)") (pinfunction "BIN") (pintype "input") (tstamp fcade33c-ec35-4ebe-8be3-653613893ace))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "F.Cu")
(tstamp 53e66112-2768-4f87-a3a4-327d4bbba91b)
(at 110 100)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/51008698-a486-46c4-ba92-2a8fe74d7320")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d482e56-fa07-4e79-9017-914807f6ebd5)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01ecf3dc-40fe-4cb9-bfb5-13da01edae5f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be3db69d-4ee7-4beb-a1fb-75c4e0a501dc)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp c8704cc7-6056-49b1-8705-f21187b4ce0b))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 124d46d6-0d54-49cc-9700-e27a1acd5e0c))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 9b18851d-2a66-4654-a6b2-2d2d0c74d5dd))
)
(footprint "LED_SMD:LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm" (layer "F.Cu")
(tstamp 66bd5ba7-fef5-47ea-a32b-cc972466b527)
(at 130 115 180)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812.pdf")
(tags "LED RGB NeoPixel")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED addressable")
(path "/dbfa9bb5-fd20-41d1-a301-6e1343c00e17")
(attr smd)
(fp_text reference "D4" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c74490c-5b68-43b4-8fc4-2d3ccf4a11ab)
)
(fp_text value "WS2813" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b83c3b87-3456-49a1-a7f9-25a9176539be)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 38a51497-469e-48a5-9dff-ec1d37e97abd)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff609113-4d61-4936-992a-356e991ea408))
(fp_line (start -3.65 -1.6) (end -3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f3ae4fb-d128-4cc4-97f1-41bdce26fe53))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80a80377-402f-418d-b4e4-78187a069b91))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 578fd8e2-bae7-4d98-8fb9-15c887a0042f))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c54b9731-ad13-414f-9eb4-5dcfb85ad867))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a4efeb7-f667-44d8-9cdf-aca350480f76))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f9b45f2-b676-4619-8089-53a6424d1261))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56851784-6092-41be-89dc-55fee46566f5))
(fp_line (start -2.5 -1.5) (end -1.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3159e4fb-8edb-4575-a79e-b1a8b9f19b04))
(fp_line (start -2.5 2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4117ccb-fcbe-4cd7-a82f-63d422db6b70))
(fp_line (start 2.5 -2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3b17c71-aa7d-4198-a7c5-aae2185c83af))
(fp_line (start 2.5 2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8c83269-f708-455b-b5be-e2617c543ae5))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 19027fb5-af00-4963-bd56-4666856d176b))
(pad "1" smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "unconnected-(D4-VCC-Pad1)") (pinfunction "VCC") (pintype "power_in") (tstamp 046e9304-5d27-42c0-9151-c78cfadb5270))
(pad "2" smd rect (at -2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp ba841292-8f6a-4158-a42f-29da45c53677))
(pad "3" smd rect (at -2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(D4-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp d2121b72-79fb-4a95-b496-1f98349e6723))
(pad "4" smd rect (at 2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(D3-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp e17f08bd-52bb-4932-8c51-a01cd04a5d2d))
(pad "5" smd rect (at 2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8b3e7e39-29f1-4ea0-8076-5b7eb3d6470c))
(pad "6" smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(D2-DOUT)") (pinfunction "BIN") (pintype "input") (tstamp a527bf5f-05f9-4215-80f4-daaab32b6d8b))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "F.Cu")
(tstamp 69f7e994-da43-4348-9c0e-bb13714720ce)
(at 20 100)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/fc1f712e-fa0c-47af-98c5-aeefd6e3b150")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e09299f-8561-4b2a-bdad-20185d6247c3)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93b48a40-3902-4765-a831-073caec9c4f2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9fba2a1c-53bd-4031-9ab4-7a84d5ffb626)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 100b9282-a5dc-4623-8167-5548956e7cd5))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 91510a28-7cee-478e-ac5f-4251769c732a))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 912e5a83-f85d-4f46-963e-d905a345a021))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "F.Cu")
(tstamp 75ffc2e5-269f-4ddc-a089-469c6d2390a0)
(at 195 125)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/5d24c064-e130-4aaf-bc42-d37155d92d9b")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H6" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f48827c1-1e1e-4227-a613-6455818e7d7c)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d3b5043-4e0b-45b9-8a2d-c2e053b240c2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 501518b8-2e34-4310-8118-67d4f63c7a14)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 8c796f94-dd36-4a06-b036-3bdacf2267fa))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 91ebcf73-136c-4142-a9e9-8328596a506a))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 67daa322-050c-4ce2-a30d-e14ad48858c6))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 77a39290-cbef-4417-92dd-bd19a64a03da)
(at 33 125 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/bde32ff3-3002-4156-b225-8bee85669ee7")
(attr smd)
(fp_text reference "C1" (at 2.3 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe2593f2-7394-4a0d-9ac5-e20e076f48ea)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0089108b-9c39-45f8-bd7e-d723f3b636b5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c7f3464e-12b4-4a59-bfd0-c695b0fd225b)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80ceb4a4-0ae4-4fb9-a2fe-dffb2644d192))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44c8844b-c3e2-4e5e-9680-46f6d6ec1126))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c63e11f2-a681-4efb-b6f4-279659fb046e))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e8a63ae-fcb8-4bbc-a112-af581037a854))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3862616b-4c01-46f8-b56b-164c36d407c0))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d92b3de-0bc5-4b31-a2d9-147b6a1d8453))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7569e2e6-4491-4304-8698-9bd417c4f7c4))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0c8c42b-762f-49fb-9337-a02b8022c61c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84701df7-0f3d-41a7-b323-6cfad7bd8e33))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce5df7fe-0a9b-4fe1-b283-027f2588ca03))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pintype "passive") (tstamp b7320672-3898-481f-a3b6-77a61337962d))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp ef79b414-81c5-46f7-9a7b-b503fa54d420))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm" (layer "F.Cu")
(tstamp 7f266cef-09f2-48dc-a0d2-75438b615a65)
(at 155 115 180)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812.pdf")
(tags "LED RGB NeoPixel")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED addressable")
(path "/f3eea7a8-a1ad-4604-a071-eb89696704dc")
(attr smd)
(fp_text reference "D5" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44d2281e-6a0b-4751-9ce2-ae82bca7cdaa)
)
(fp_text value "WS2813" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd2b5948-cab4-4092-b874-65393148746f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 22b3e756-5f24-4c3c-8ff8-63195cc6e6a5)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8980625-cb68-4039-8002-91a3eedb6db1))
(fp_line (start -3.65 -1.6) (end -3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31a8f74b-81e2-4ea5-9d41-93ed4b8ee61c))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdd911e4-a23d-4fd5-b0af-9cd6264eb061))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16be9bbb-1135-4e2d-bbba-2d03d7df6e85))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffd63402-9d12-4a97-ba2c-ba1dcc2883c8))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2a0edb4-eaf8-48b1-abc8-14f14d75bc87))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2d966bb-0d4b-495e-9c1e-a1c3534d8186))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f6be973-fb95-4454-bf9a-f91e36209b78))
(fp_line (start -2.5 -1.5) (end -1.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c7d4226-217f-4504-b7df-6882fb51bb40))
(fp_line (start -2.5 2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7658bac2-5e98-4aa1-b9ab-15dfba96232d))
(fp_line (start 2.5 -2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5639ad59-d614-44ed-a4ba-e33112921456))
(fp_line (start 2.5 2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 583009a0-ec3c-41a1-a731-acebff5b6c75))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp d13deb24-0421-43d1-b0cc-54d03757aa36))
(pad "1" smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(D5-VCC-Pad1)") (pinfunction "VCC") (pintype "power_in") (tstamp d1c0b220-8ecd-4ab6-b697-f8d883cc2f1d))
(pad "2" smd rect (at -2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp 5cff4d10-edf8-4395-941e-dbfc904bf65a))
(pad "3" smd rect (at -2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(D5-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 64a0103e-2f84-4dc0-ba9b-a2c04e10ba54))
(pad "4" smd rect (at 2.45 1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(D4-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 83d9f799-73f2-44a9-9162-44c1f8f792ec))
(pad "5" smd rect (at 2.45 0 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 825069a4-0cd9-4699-9d03-63cc0c690c38))
(pad "6" smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(D3-DOUT)") (pinfunction "BIN") (pintype "input") (tstamp a9e52bf7-957e-4444-b875-0a8e32e66160))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 9189e55c-3f50-4101-8ec0-b008b5a37edd)
(at 39 125 -90)
(descr "Capacitor SMD 0402 (1005 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" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/5103b760-af0a-49e6-bfb4-d4d6f47735dd")
(attr smd)
(fp_text reference "C4" (at 2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64fd97b5-558a-481b-afe3-fb4ed527a52a)
)
(fp_text value "C" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf59dbc5-8f98-4ae1-9571-b89a24ee5e46)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 46ab428f-58c0-42ef-93c1-ee69d81947a2)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39fb946b-9424-4682-9d63-72cbf700c1bb))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7e9b576-9ad1-4df8-b615-5d32703b8464))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c00673bb-308a-4602-8445-1b452683cf38))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32c8d825-ebe8-4dd2-a4be-3bad91943a98))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8297055-5461-42aa-9a6a-3fd8f76167f5))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 451211ef-a5ca-48d6-ab9a-04792416ef24))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fd2c213-aab4-4bd8-b196-471782e12d35))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 542b4c4f-afc3-4c90-a0de-47f7bd38d217))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b455d4f-b9fa-4b21-a754-84214eba8225))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf2baab2-3ce7-4407-a35e-b3d08524a6c8))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pintype "passive") (tstamp 9e0ce408-2e31-409a-8b52-80eab2a0050e))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp edca9d96-894d-40f2-9578-8ddf1613977c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm" (layer "F.Cu")
(tstamp b05c41f7-50e4-4be4-ab67-3c7ffa450fd9)
(at 180 115 180)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812.pdf")
(tags "LED RGB NeoPixel")
(property "Sheetfile" "dvrk-s-led.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED addressable")
(path "/e923f542-86f3-48d7-8e8d-ffb676a4eece")
(attr smd)
(fp_text reference "D6" (at 0 -3.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2013ea95-1966-4ad9-b092-e78133c0d7b6)
)
(fp_text value "WS2813" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0112c6a-57ee-4e14-aeb8-0459aff3fc07)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 5c5c632f-3ff9-4b28-8c1f-0734059cd17c)
)