-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWS2812B-16-LED-RING.kicad_pcb
3068 lines (3028 loc) · 223 KB
/
WS2812B-16-LED-RING.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(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.2)
(aux_axis_origin 146.04 60.43)
(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 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/DIN")
(net 2 "/VIN")
(net 3 "GND")
(net 4 "/DOUT")
(net 5 "Net-(RGB0-DOUT)")
(net 6 "Net-(RGB1-DOUT)")
(net 7 "Net-(RGB2-DOUT)")
(net 8 "Net-(RGB3-DOUT)")
(net 9 "Net-(RGB4-DOUT)")
(net 10 "Net-(RGB5-DOUT)")
(net 11 "Net-(RGB6-DOUT)")
(net 12 "Net-(RGB7-DOUT)")
(net 13 "Net-(RGB8-DOUT)")
(net 14 "Net-(RGB10-DIN)")
(net 15 "Net-(RGB10-DOUT)")
(net 16 "Net-(RGB11-DOUT)")
(net 17 "Net-(RGB12-DOUT)")
(net 18 "Net-(RGB13-DOUT)")
(net 19 "Net-(RGB14-DOUT)")
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 1c1fe0ad-972d-4531-8f5f-6fd5ad2ed096)
(at 164.829 114.312 -45)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b963962")
(attr smd)
(fp_text reference "RGB6" (at 0 -3.5 -45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0432602-54f3-4f50-937c-e6c68ec4bb71)
)
(fp_text value "WS2812B" (at 0 4 -45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f679e4e-0081-4d9e-bfb6-2f8decab9637)
)
(fp_text user "1" (at -2.959949 -0.469519 -45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bda7ca58-6bdf-45cd-96df-3995257d2a05)
)
(fp_text user "${REFERENCE}" (at 0 0 -45) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 22b93600-08e5-4aae-90a3-478818c061e9)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a2b31d0-c03e-4616-9699-e55e62fe606c))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 745d7580-fe21-42a9-9a2c-b5f49c66ae13))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 928eb33c-9cfd-4cfe-8b21-4c498ee745af))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06c1eb59-0843-4bbe-811a-2449e714f326))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ff2df48-9556-4da5-bce7-ba812f15f652))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9ccd405-5859-4949-9c57-e26a4588cd82))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90ac40da-42d5-41dd-b9ab-455e47db8836))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36fd1c6b-7fc0-4e45-a278-a14f78b3a66e))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31a1ffa6-e440-401d-afe6-8d89f8480816))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9413fb91-6598-4ac9-b3ef-1b9aa99cd0a3))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fedf180d-eccf-4631-a66d-5b28f2e43662))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85577686-8b57-4338-9506-fc550667752d))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 36ac680d-faa1-4dd0-86e1-34109eef7f84))
(pad "1" smd rect (at -2.45 -1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp 2798a813-9238-4f32-bca5-9fc300a4ad35))
(pad "2" smd rect (at -2.45 1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(RGB6-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 2d240630-4601-42b9-ac0e-c97f3a5763e0))
(pad "3" smd rect (at 2.45 1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 7b8abdb6-5247-41ab-9390-83d8c7819358))
(pad "4" smd rect (at 2.45 -1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(RGB5-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 4d0a0737-d911-4cc9-bda2-6015d9c97510))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 215a0869-5066-49a4-927a-c5c3d2a5b3da)
(at 164.829 76.72 45)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9636e2")
(attr smd)
(fp_text reference "RGB2" (at 0 -3.5 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp caae67ce-359b-4ebc-b506-624713e27689)
)
(fp_text value "WS2812B" (at 0 4 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b0e38ca-5e16-45cb-b726-785db8e2dbfe)
)
(fp_text user "1" (at -2.879425 -0.329425 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5457f2aa-cdf1-456b-8ecc-0ed1b73933f5)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8e734e52-fc22-41bf-800d-b99aea390239)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dfc6aef-ec28-4b92-ba6d-52c6f995860d))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2b39eff-d65b-46dc-b6df-44fceb72d701))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d519c9a-fb75-43d6-bb39-deddeb4dc8c1))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7dcd9f5-0b07-42ad-b388-91c78979e397))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32e769b7-5d52-4671-ae2d-15412592dded))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 500991b9-3be1-433b-ae93-b3df6b10a688))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bac5add-e1f4-4483-9b9d-bf0ae50f8a16))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a7b64bb-07b1-4e03-a6cb-0117e6f06952))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c91866bd-e6ff-4f09-8711-073e5199cb41))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30753987-86bd-4c4d-b712-1aaddc5f92ca))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47ddebbc-e95c-46b3-87bd-c6c5f1f8d3ba))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0060428c-7255-4813-ad7b-fa32d8c629b6))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2f755141-3bb4-4c95-b94e-6adeb0d51b64))
(pad "1" smd rect (at -2.45 -1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp 625c1620-995a-423d-884b-3bdf5d8916f1))
(pad "2" smd rect (at -2.45 1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(RGB2-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 6b88cb28-c94d-4e03-8b0c-7f62b107ee11))
(pad "3" smd rect (at 2.45 1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 61499279-1aa3-42da-ad21-cfb73a2a78a0))
(pad "4" smd rect (at 2.45 -1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(RGB1-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 3c30d6cf-4629-4d61-8222-ddd2bd1fc438))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 27921dd6-ccb3-469a-8bc8-9e47805d679f)
(at 119.44 95.35 180)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9641be")
(attr smd)
(fp_text reference "RGB12" (at 0 -3.5 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12c7b063-9049-46b5-b665-204447d24fc2)
)
(fp_text value "WS2812B" (at 0 4 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f81832a-4c7e-44f0-aa65-5fffed651b0c)
)
(fp_text user "1" (at -2.861 -0.408 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea985c02-e77d-4d01-ba17-33ae13f8232f)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 811b2589-6816-4972-8161-cc338f43417d)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab710916-7b0c-4ed9-be0a-bc962c76f35c))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 298a6aca-857c-486c-b59a-92d5da8c5e21))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42376eed-319f-4082-81e1-7f6233f2587a))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c0bc28e-a32f-42ed-8065-ebc4af9de617))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a013474-b0fc-4433-a1cc-25a5bcaf3149))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd3a4028-6f80-4df1-a71d-ea29c888d561))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79235a13-13c1-4704-bf62-9c2203a918bc))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1065c077-18b2-4602-a56f-4d83e5b9f097))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c432ae48-6f14-464f-afa7-c06beedb1292))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 578934ce-0cc3-4190-bc8b-179ef4208458))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e0c9ee3-908a-4eb5-8fdb-7722bfce75bb))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 452b4e41-d61c-4f7f-a33e-f0e3562a020f))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp cba11405-de71-44d4-ab98-58f5e8aeac62))
(pad "1" smd rect (at -2.45 -1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp bc711178-5faf-4ae0-96b4-fc4b0553c306))
(pad "2" smd rect (at -2.45 1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(RGB12-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp f69e4424-9e4f-4233-ae07-79b235be35cc))
(pad "3" smd rect (at 2.45 1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 2654a842-1140-42ac-9121-a2b7eee5903d))
(pad "4" smd rect (at 2.45 -1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(RGB11-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 694e3118-a836-480d-a92e-fc4e6869aad3))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 27abe48d-509a-4def-be30-b75d1aab4239)
(at 145.906 68.846 90)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9634c8")
(attr smd)
(fp_text reference "RGB0" (at 0 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8497fa42-f485-487f-a60b-70ee1c8e0c68)
)
(fp_text value "WS2812B" (at 0 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a84291a-d2c9-4205-b04f-54a33a0b24ba)
)
(fp_text user "1" (at -2.909 -0.364 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e658c4c-a325-46d2-a9a0-70df1ba85fec)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 914a1b23-09e4-48ec-b8e7-773163eaa4dd)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecc070ad-a81d-4da5-a491-06de3c6b9ea8))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c06cc699-a8b9-4ab0-9674-4962d86134dc))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92b7b87e-85e5-4c09-b85e-92cde38ac8d3))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef3fbd0b-0b8c-4ad4-ac17-2076e92fd9f6))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0b7743b-8722-40e8-bb01-9f55ffc748d8))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5543ae9e-946c-4f12-92b0-2e89783a48ea))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65a76e32-2148-4b8c-9b0f-5f5057bd2548))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca94cbd3-5922-4871-9eaf-48dcb2cb0a95))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c48acc52-d8e8-464e-92e9-19ee4091a29f))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1867d0c6-8b21-4bf7-b599-191ede420add))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b61ddbb-dad1-4c64-a5d6-449c09f22327))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eced8d65-454b-42a1-bbb3-193c7182bbd1))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 68c9f1c7-61d1-46f1-b923-d2621c88e8cb))
(pad "1" smd rect (at -2.45 -1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp fe544370-9220-4575-80e1-92d4639d5610))
(pad "2" smd rect (at -2.45 1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(RGB0-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 9eb82d72-c4c3-40ba-bf2d-acc636ded146))
(pad "3" smd rect (at 2.45 1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp ead9b607-4b07-4724-b551-682659ad50b6))
(pad "4" smd rect (at 2.45 -1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "/DIN") (pinfunction "DIN") (pintype "input") (tstamp 98f8e191-4ba6-4d7e-b347-2f7b5e30e66a))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 364609a9-a791-43dc-a088-207d9fcdfc22)
(at 135.95 119.99 -112.5)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b96419d")
(attr smd)
(fp_text reference "RGB9" (at 0 -3.5 -112.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c62549c9-7d09-4732-b40d-2b77a9336497)
)
(fp_text value "WS2812B" (at 0 4 -112.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62e2c1b1-2581-4c99-b5ea-e213d40f9da0)
)
(fp_text user "1" (at -2.883806 -0.390111 -112.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5658a0e4-1678-49fb-bad3-76c9da785bc6)
)
(fp_text user "${REFERENCE}" (at 0 0 -112.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b5aaf951-32e5-496b-8362-c741f15d17b5)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3a6d3eb-7be0-4536-8257-b2f10037ce2e))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90225014-1571-4383-8c65-181c4d397402))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe4c3f04-6ca0-4554-a646-9db0aca9589f))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9726ed39-50d5-49fa-81c7-e67b113df70e))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2486fbde-361e-4ef7-aa17-7224f8bd2134))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81740a2d-bb81-4972-8302-6d59d6480206))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fb3f709-1aac-41f9-989e-d0f32e4f7811))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac2a0b7d-e152-41f8-8366-33a55b37bf3e))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b1c8b27-f338-4ec2-8f10-3765cbb34e9f))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b135b2f-97b6-4276-a509-e1f0e5371be0))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3e49d06-1887-45eb-8026-665ccc29f09d))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5833441b-8146-45b3-99d3-5e4047cf97aa))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 81b18a07-9b50-4182-a06e-641ed1146e7e))
(pad "1" smd rect (at -2.45 -1.65 247.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp eaf3ca01-5284-4f2a-a00c-9d07b2859d6e))
(pad "2" smd rect (at -2.45 1.65 247.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(RGB10-DIN)") (pinfunction "DOUT") (pintype "output") (tstamp 5322e63e-17c0-473c-bb84-02eeb43e56f2))
(pad "3" smd rect (at 2.45 1.65 247.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 5355b7b9-7d6a-49fb-887c-8b6b3cce6f82))
(pad "4" smd rect (at 2.45 -1.65 247.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(RGB8-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 7c1b8716-b3d2-4cb0-acee-b39318278ef1))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 678478e3-ca3c-43b0-b5b3-292a3a4bc074)
(at 170.58 105.69 -22.5)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9638d5")
(attr smd)
(fp_text reference "RGB5" (at 0 -3.5 -22.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b7de488-a6f3-45dc-80a7-acd6a212df9c)
)
(fp_text value "WS2812B" (at 0 4 -22.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c51c056-9607-436b-b6b7-c0b17146a478)
)
(fp_text user "1" (at -2.791434 -0.383994 -22.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 951ea5c9-caf3-477b-8d8b-3ce715555ee2)
)
(fp_text user "${REFERENCE}" (at 0 0 -22.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9c30b18e-52ef-4301-8f1a-946bca390cf2)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b52f4a1-7aa3-4ecf-9eeb-07718ffad6f9))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb455f66-32f7-4d8e-8ede-e99e62a1d357))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a22623b8-f625-498a-a82a-5c88c8ba1c96))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 371dd6f6-d2b9-4add-967e-edd439a6f6fb))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1294e7d0-e464-4d74-85a0-20b7ef9d8743))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ab9399d-703f-4c6a-a546-dab354c96824))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36a3efdd-75c6-4aa3-8a2a-1b3ce5d12bcd))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3de6c184-6e02-47ef-9613-d5cb1ad63027))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0be1ae7-25c6-4291-b2d0-a355c2b6a682))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b5b09d1-1f23-4bfa-89c9-7d7ded0cda4f))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e56c97c-30f8-4369-960f-76959f0a2b46))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40942d7d-a0e3-4656-9f58-585adcbe643f))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4edda79a-fd94-499b-bb08-f1a899fbabed))
(pad "1" smd rect (at -2.45 -1.65 337.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp 0176756e-5e6e-4f16-95dc-247cbb7f92ff))
(pad "2" smd rect (at -2.45 1.65 337.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(RGB5-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 4333e2d5-1e58-47c5-8cfe-8e55036216f0))
(pad "3" smd rect (at 2.45 1.65 337.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp f7990e72-ef61-46ac-bde7-1be525d0ad1b))
(pad "4" smd rect (at 2.45 -1.65 337.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(RGB4-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 38d2c922-c921-454d-8062-4ecaa501c884))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 8150f742-35dd-44ec-8138-a5da756e2fd3)
(at 172.61 95.52)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b963836")
(attr smd)
(fp_text reference "RGB4" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 117f9c6e-a7ec-43c2-8a1d-65d85409ccf6)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4807c1bd-f6fe-4e75-9fd5-7ff9c5c1d3ea)
)
(fp_text user "1" (at -2.938 -0.397) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd6677c3-cf30-454b-9a00-724a667e75de)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d2c111a8-b51e-4624-a92a-175913a6962a)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38c3b2d3-aecc-429d-a513-805a54773f10))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03335bdf-d239-4016-92ba-aede2709c123))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd2fbf32-b301-402a-8865-f980dea6a6d1))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 236f1c9c-d376-47b8-963a-cca6079ed41e))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef10a01c-c5ee-46e7-8e7b-af9bdfc77c26))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff14e618-a08f-47c4-86ba-83b3e956b7a3))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfcb1138-deb0-4ef7-b381-527a0f3c53cf))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4719690d-2b09-4b8a-bcd1-fdd4a2e9a699))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6cf6f83-cd31-4eb2-af93-3edc1a541ba8))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c594ce3-21aa-4321-a41b-07142ecb358a))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47af5b30-4d66-4245-8b35-da971157f1a4))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b80eba7a-9702-4f50-bbb7-4d8b48436289))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 30ce1156-846c-4fea-996c-410227876cd3))
(pad "1" smd rect (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp 7bf73e99-faa3-4d57-b49f-7a268200a79c))
(pad "2" smd rect (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(RGB4-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 2635103f-4df1-460a-949f-78b67035696a))
(pad "3" smd rect (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp a7ef992a-8d49-4119-a51d-ccddfe99159d))
(pad "4" smd rect (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(RGB3-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 4b8d0518-16d7-4072-a47d-ce7ccba2c19f))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 870318a4-3f6b-4df4-b0a3-51ad66ea8995)
(at 121.395 85.229 157.5)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9641c9")
(attr smd)
(fp_text reference "RGB13" (at 0 -3.5 157.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e4424ee-da83-4ca4-9b58-a08619c538c2)
)
(fp_text value "WS2812B" (at 0 4 157.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8dd3af5-20cf-4342-b1fd-e60f837b2133)
)
(fp_text user "1" (at -3.05831 -0.369784 157.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c19e27d-18de-47b0-902b-401a707e2b5e)
)
(fp_text user "${REFERENCE}" (at 0 0 157.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 97b313ca-b106-4be8-a456-b399e1fea3a2)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4563cde0-8384-46a9-a3c5-732c71f9c791))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 427c5792-d0c9-4adb-b867-32ef353a89dd))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40cb4e27-525e-415a-92fc-dff2cb2f364b))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e44286e-ee25-4762-8e92-5cede37491a3))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03328c8e-9df4-4e79-b9de-e743df62041b))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d225e41c-3639-40a2-b2b0-74208f63215d))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbabb9df-115b-4853-ba9b-fe4ee697d0cd))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 593a02e0-c4c8-4ba5-a642-afdecee92f18))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a1c24d1-d719-45c4-9a37-dbcd4fab40b3))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82c60e83-09cd-43b4-b146-bccec0cb63cf))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46f71e69-1f93-4730-8cd5-72615c88cb1e))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd628428-ba60-490d-a22f-316711f793cc))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b735872a-2253-4713-8aca-0d59160407d3))
(pad "1" smd rect (at -2.45 -1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp 20558c4c-271e-4753-8c19-4014877e6d21))
(pad "2" smd rect (at -2.45 1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(RGB13-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 49136f5b-d94b-4101-9000-ee6074ff2491))
(pad "3" smd rect (at 2.45 1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 3ec3a385-bd64-4891-8618-636ea238a79c))
(pad "4" smd rect (at 2.45 -1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(RGB12-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp d112a819-abcb-4b21-aa4d-72df32d772b1))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 99a7bb89-a2f1-4cb7-b260-83345c39568a)
(at 127.237 76.466 135)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9641d4")
(attr smd)
(fp_text reference "RGB14" (at 0 -3.5 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4612c55-6e01-40f9-a120-b444f6cbefdd)
)
(fp_text value "WS2812B" (at 0 4 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac5b2c94-d9d3-4e27-8aba-58dc4cba7d69)
)
(fp_text user "1" (at -3.146625 -0.428507 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16a4e4b0-db6a-4299-a4d0-a62689c23cb3)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7a61be40-342e-45ad-b166-50e5d2675e49)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f16e41e3-f8e1-4eb3-a4fa-d8f98465a5bf))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fe280f0-0b19-4d97-b848-c3d82617db12))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30da4e47-c83a-47b1-8e10-913f24519521))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 777a01e5-cb5c-422a-8048-818e9ea56180))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7991a466-cd66-4c0d-8e80-c17a1ed68b68))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3453f98f-bf5b-4905-8b8d-ecb40a04874a))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18db39fa-7f6c-4cee-b7aa-fb2b13ce1e35))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 775ca8d8-fb5b-4abc-95a7-3ea425b77b8c))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52227c51-a2d9-48b3-bc21-c2cc37728f2b))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69673451-4f6e-491c-91de-038eeae5e6f5))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9dfbacd6-647b-4f84-8a1c-774bb02e4c31))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 295aadec-8aff-44bf-8d72-52f24db4401a))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 929ac1ec-9b3f-4834-8c8a-8b8327eb7543))
(pad "1" smd rect (at -2.45 -1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp a8f90354-5381-40d1-b34f-2e3968d44bde))
(pad "2" smd rect (at -2.45 1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(RGB14-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 28c5972f-652f-4456-9d39-ae44798ae865))
(pad "3" smd rect (at 2.45 1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 2b8d910d-4726-4fb6-8336-d3c91ee3f854))
(pad "4" smd rect (at 2.45 -1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(RGB13-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp e1276ee8-85e7-4369-b2ed-144508c7a824))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 9d50e2da-825e-498b-8ea4-5c71e07c1464)
(at 156.193 120.027 -67.5)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b963a26")
(attr smd)
(fp_text reference "RGB7" (at 0 -3.5 -67.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aad200f5-038c-487e-a271-5fb4676a8809)
)
(fp_text value "WS2812B" (at 0 4 -67.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8268e16b-65ce-4126-80b3-fc07251c0b06)
)
(fp_text user "1" (at -2.877505 -0.385519 -67.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4351adbc-a0f7-48c3-9320-e4fde15aa87d)
)
(fp_text user "${REFERENCE}" (at 0 0 -67.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6a6a59b7-b9eb-4760-92d1-eab917ef2400)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e87cc02-c817-4963-a197-7a2d9306c0be))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0b9ef9e-ea5b-4eab-885b-20b649a4d831))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9d20366-09c3-4763-80d6-5b4dee29a29a))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd3fbfd1-37fb-4570-8868-09581ec60fd1))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9fc5d79e-00fc-4046-a6da-b13834664f1d))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34145d8f-8d2d-4ab4-8584-9df2fb63f940))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72a3ceb3-b1ff-4c79-a4b4-99df42c39bf2))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb8b90ce-1fe6-490f-8006-648203033c0c))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6dc29ea2-13b9-4c75-8b8d-c9ef73252b1d))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a891841-d051-4f0d-95bd-abc3ae5900f4))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f1c2d40-c639-4184-953b-86a7ec60e7a9))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a87dd2be-4f56-4c4d-8975-2dfd5bbc9559))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2b64a7bd-a12c-4273-b584-227c83314ffe))
(pad "1" smd rect (at -2.45 -1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp a434af3e-8cf6-47a1-9e22-27b896149992))
(pad "2" smd rect (at -2.45 1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(RGB7-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 3eb7b138-c07a-476c-b64c-23054cd93086))
(pad "3" smd rect (at 2.45 1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 19f266e3-87b1-4c28-9f80-4149633c3552))
(pad "4" smd rect (at 2.45 -1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(RGB6-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp bfb32885-796f-4070-b9ae-0d639c00b55e))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp b127e135-93a8-4971-bb7c-2fcd216a8c7a)
(at 146.16 122.059 -90)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b964192")
(attr smd)
(fp_text reference "RGB8" (at 0 -3.5 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7781662c-db21-49db-aec6-9739b14bf680)
)
(fp_text value "WS2812B" (at 0 4 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 447e8060-dda4-45ad-9709-4671aa31d1fc)
)
(fp_text user "1" (at -2.933 -0.398 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00c2fb60-ac5f-4d82-b8ad-4e7d973bc470)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b58ceba8-ba22-4089-aa17-c4399d7ac90c)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c6f113e-869a-43ef-973c-678952ebc1bc))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4d39a50-04b6-45f8-a6fb-aebf276e8547))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4431964a-3ac1-409c-8afa-618d9d21db02))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c0fe300-13a8-4945-8762-0e461dde6435))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4354c03b-5ec4-4421-b3f1-32a272afa7ef))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fedfdab7-11ab-4801-a97f-71b94d647dd7))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 054fac85-da8e-4202-8d48-df397e4b5319))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6e9807f-3e97-4c7a-8102-f7d296bd9de7))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae9489ca-7352-421c-b9f6-29f4e0f87696))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 626afacc-dad6-4666-8385-35ee3c09a671))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24f01379-afde-4ff5-bbc1-02bfee7ab290))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4eb92ff2-6e1e-4c7c-94de-afd2a761aa93))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 3b747e13-426a-4d06-aa36-753be45666e9))
(pad "1" smd rect (at -2.45 -1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VIN") (pinfunction "VDD") (pintype "power_in") (tstamp 83af7cac-f3c6-43a4-a12d-f4fa1e0234d1))
(pad "2" smd rect (at -2.45 1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(RGB8-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 56be90a1-9783-4bd0-9245-595fad76c14f))
(pad "3" smd rect (at 2.45 1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 9b1b9cb2-bf13-4b7c-a710-0876fbb160f1))
(pad "4" smd rect (at 2.45 -1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(RGB7-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 659352aa-f49d-43ca-9437-5d7284442921))
(model "${KICAD7_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm" (layer "F.Cu")
(tstamp bdf3e9a2-9b8a-4ae0-9f5e-781031257530)
(at 142.24 62.23 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9a091e")
(attr through_hole)
(fp_text reference "JL1" (at -2.032 0.635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f64ec4cd-ff55-43e1-b591-e08f932e5b1b)
)
(fp_text value "~" (at 0 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c2830eb-ac97-41fb-974d-c600e7e600eb)
)
(fp_text user "${REFERENCE}" (at 0 3.81 -180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b050d6ab-921b-4714-933e-ddc97d490f5d)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2762c0fe-76ac-4713-9f56-529999893b82))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df449aa2-bd39-4852-9563-717d4674de52))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97f8e5ef-df61-45f3-abd4-34854ad039ee))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a18f4101-3683-4b51-8c46-aa11f0f2e0a9))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eeec81ee-5eee-4ef6-881a-13e5b2994f4c))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d3937d8-382c-4c49-b8b3-55b76427122b))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4f9855c-f8c8-4bbc-a490-a62ffce7717c))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e5e7f4e-124c-4e18-a61c-acae560f0ca1))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b823c6c7-57ce-487b-b489-c79796e45322))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44251808-4664-4b1e-81d7-f7e78802305a))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c0fdbd4-9a6e-4310-b89d-c15d0288b9cb))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa44c57f-b72f-415a-82e6-2a41fd23b13b))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd92697b-c9f4-4436-aca2-cc3b44a9bd9a))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a30fe3a5-d709-4484-b630-2204449bbfbb))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51e4e755-424b-4bd8-bd9a-6aabd1e7aa9d))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "/DIN") (pinfunction "Pin_1") (pintype "passive") (tstamp 96c1acdb-d785-4eb0-a487-f47654b90bb9))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "/VIN") (pinfunction "Pin_2") (pintype "passive") (tstamp 7bf123f3-6f56-4e02-bb12-a4e19241d14d))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp b81aae96-e49e-46dd-8a0c-d3de0ddc178b))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/DOUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 017d85ad-2eb6-4e93-9256-5acdc5c86706))
(model "${KICAD7_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.step"
(offset (xyz 0 0 -1.778))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp d8d7f2d9-606f-4892-9046-fe7c90fc5de5)
(at 121.395 105.549 -157.5)
(descr "5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel PLCC-4 5050")
(property "Field4" "Intelligent Control Led Integrated Light Source Pack Of 10")
(property "Field5" "Adafruit Industries")
(property "Field6" "5.84 USD")
(property "Field7" "WS2812B")
(property "Field8" "Warning")
(property "Sheetfile" "WS2812B-16-LED-RING.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b9641b3")
(attr smd)
(fp_text reference "RGB11" (at 0 -3.5 -157.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 583a56d1-5467-4351-8096-5bc9da00cd40)
)
(fp_text value "WS2812B" (at 0 4 -157.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e621185-a1c0-4adb-8110-7911d4a1b969)
)
(fp_text user "1" (at -3.010555 -0.409241 -157.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc6fa191-8b8d-4610-bd26-95622c6eda8a)
)
(fp_text user "${REFERENCE}" (at 0 0 -157.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 3e411846-2b5c-425a-b0cf-61fccfd811a3)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d2b3ba9-6612-48a9-975d-7ea20c35e5ed))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0669ca3-ab1f-4b48-bd15-ef641032d7a3))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f982492a-2dd8-475e-be2d-1c6073467d9f))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43062837-82a4-46fc-bf63-7511b5eaacb6))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fbc5d50-a112-4c74-92d0-a0a6a7db2941))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06e6bfa4-77fd-4025-995c-6eb805d055b3))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76fb4aaa-cfe5-4171-a15c-1042bc9b7ec9))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)