-
Notifications
You must be signed in to change notification settings - Fork 0
/
BottleBlink.kicad_pcb
16913 lines (16834 loc) · 741 KB
/
BottleBlink.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)
(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 0)
(scaleselection 1)
(outputdirectory "FabricationOutput/Gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/LedIn")
(net 3 "/Btn2")
(net 4 "/Btn1")
(net 5 "unconnected-(J1-3V3-Pad17)")
(net 6 "+5V")
(net 7 "Net-(D1-DOUT)")
(net 8 "Net-(D2-DOUT)")
(net 9 "Net-(D3-DOUT)")
(net 10 "Net-(D4-DOUT)")
(net 11 "Net-(D5-DOUT)")
(net 12 "Net-(D6-DOUT)")
(net 13 "Net-(D7-DOUT)")
(net 14 "Net-(D8-DOUT)")
(net 15 "Net-(D10-DIN)")
(net 16 "Net-(D10-DOUT)")
(net 17 "Net-(D11-DOUT)")
(net 18 "Net-(D12-DOUT)")
(net 19 "Net-(D13-DOUT)")
(net 20 "Net-(D14-DOUT)")
(net 21 "Net-(D15-DOUT)")
(net 22 "Net-(D16-DOUT)")
(net 23 "Net-(D17-DOUT)")
(net 24 "Net-(D18-DOUT)")
(net 25 "Net-(D19-DOUT)")
(net 26 "Net-(D20-DOUT)")
(net 27 "Net-(D21-DOUT)")
(net 28 "Net-(D22-DOUT)")
(net 29 "Net-(D23-DOUT)")
(net 30 "Net-(D24-DOUT)")
(net 31 "Net-(D25-DOUT)")
(net 32 "Net-(D26-DOUT)")
(net 33 "Net-(D27-DOUT)")
(net 34 "Net-(D28-DOUT)")
(net 35 "unconnected-(J1-~{RESET}-Pad3)")
(net 36 "unconnected-(J1-D7-Pad10)")
(net 37 "unconnected-(J1-AREF-Pad18)")
(net 38 "unconnected-(J1-A0-Pad19)")
(net 39 "unconnected-(J1-A1-Pad20)")
(net 40 "unconnected-(J1-A2-Pad21)")
(net 41 "unconnected-(J1-A3-Pad22)")
(net 42 "unconnected-(J1-A4-Pad23)")
(net 43 "unconnected-(J1-A5-Pad24)")
(net 44 "unconnected-(J1-A6-Pad25)")
(net 45 "unconnected-(J1-A7-Pad26)")
(net 46 "unconnected-(J1-~{RESET}-Pad28)")
(net 47 "unconnected-(J1-VIN-Pad30)")
(net 48 "unconnected-(D29-DOUT-Pad2)")
(net 49 "/Btn6")
(net 50 "/Btn5")
(net 51 "/Btn4")
(net 52 "/Btn3")
(net 53 "unconnected-(J1-D13-Pad16)")
(net 54 "unconnected-(J1-D12-Pad15)")
(net 55 "unconnected-(J1-D10-Pad13)")
(net 56 "unconnected-(J1-D9-Pad12)")
(net 57 "unconnected-(J1-D8-Pad11)")
(net 58 "unconnected-(J1-D0{slash}RX-Pad2)")
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005ff6bb38)
(at 120 100 90)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff668f5")
(attr smd)
(fp_text reference "D9" (at 0 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 599b5c06-d4c0-4caf-a3d4-a9a40b19d96a)
)
(fp_text value "WS2812B" (at 0 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b0dcf50-5447-4c65-82b4-a537564f4445)
)
(fp_text user "1" (at -4.15 -1.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbe4a273-4197-4504-8fcc-8d5dc24f7578)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp febddbac-b33c-4482-a2b9-243719e5dff6)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75eba2f1-abf6-41fb-a889-7ec77b9308fe))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9bfe0d6-9822-4c0b-aac0-c6613d577a65))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 173eae75-3af6-4bba-8fe2-5dfd99856110))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 329f55b2-454c-4ac7-b432-cb492bd86eb3))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d725770-e8f4-4408-88ca-8913c604eb95))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cedc61d0-8f81-4b09-99ad-dfb202119d04))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c100779-c88e-42c8-9bf3-75eb5ec5949d))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba9fb957-463b-4419-ad77-b22d3e571cb0))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7c75165-9428-4636-8a4f-7d0b1c2bdd7e))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efa9b78f-3635-4f4e-8598-fb2de23a39e2))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e26b3e55-5c43-440b-84ab-be5d8a9870ec))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7537d31a-c6fe-416b-a465-e12894d601e2))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 88f952be-354c-44d8-9bda-597cd80e5f6b))
(pad "1" smd rect (at -2.45 -1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 6903fb1e-ecff-44e0-aeaf-137c69616727))
(pad "2" smd rect (at -2.45 1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(D10-DIN)") (pinfunction "DOUT") (pintype "output") (tstamp e22c554b-5a4b-47dc-a7de-cfa2f8f6fe1c))
(pad "3" smd rect (at 2.45 1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 91cdcd79-32ca-46b3-9b1a-73018bf83257))
(pad "4" smd rect (at 2.45 -1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(D8-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 731994e7-0e62-42aa-adc9-87599f9c0d86))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bba4)
(at 70 100 -90)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ffbf669")
(attr smd)
(fp_text reference "D29" (at 0 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2672eef1-49a6-432b-bfe8-61906311e036)
)
(fp_text value "WS2812B" (at 0 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cedeb4f-17c8-4cbf-ad86-9eddd5ba8643)
)
(fp_text user "1" (at -4.15 -1.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6955d86a-1eff-4481-b72f-bb13d3f97fdd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 3b903605-0887-455b-969f-04e7851a1464)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22f04c88-ebe3-4126-8dfc-50922f1439ba))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e1aa9b7-7251-428e-b38e-e1e98f7dc2b0))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 069fb309-c673-439a-a961-2a97634e9176))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24351a2c-f964-4c98-8342-31d2e6dc3fa9))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3601a59-1204-4fc9-829f-f5f21cddf02f))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1aead9de-52f5-46da-9c3b-80e05a6695c8))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfdf83e4-c6e5-46a3-8697-a096f3cb7f94))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00288766-3062-424d-bec6-b925a630ac27))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abd83de0-f558-47bb-9277-f543f733c6e3))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54ded69a-a952-4a72-a5ce-1fd64b9b7685))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp daf5a916-d9f8-4c3e-87fa-3534e3474eda))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f9b2d3b-831f-4069-8708-5a6d36ca4883))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5f260fb6-ddbb-4d07-80ac-056bbf9a3100))
(pad "1" smd rect (at -2.45 -1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 18e0b661-6257-4b8b-b313-139cfc5670f8))
(pad "2" smd rect (at -2.45 1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "unconnected-(D29-DOUT-Pad2)") (pinfunction "DOUT") (pintype "output+no_connect") (tstamp 1adc5e75-2c77-41be-889f-69fda7bcb6f5))
(pad "3" smd rect (at 2.45 1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp a59518cd-1015-4511-a784-9cfc05fa5584))
(pad "4" smd rect (at 2.45 -1.65 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(D28-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 6c8b47cf-cbfa-488b-80f4-23585954f388))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bbe6)
(at 72.28361 111.4805 -67.5)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ffbf662")
(attr smd)
(fp_text reference "D28" (at 0 -3.5 112.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58fe028f-3c9f-4166-9ea5-86239ec6f2fe)
)
(fp_text value "WS2812B" (at 0 4 112.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92179012-d84c-40ae-a6f0-29fc153c8ce8)
)
(fp_text user "1" (at -4.15 -1.6 112.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81576928-8c3e-48b0-ab19-88801970d418)
)
(fp_text user "${REFERENCE}" (at 0 0 112.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 5649f7f3-8806-4596-931f-68c2667142e5)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f67f95d0-1222-43fe-a848-de4ddba66825))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7061c423-3f7c-4b48-a690-8838a472298a))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 601242b1-73de-4b0b-abcf-87b7264c0d68))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e2442da-28aa-4488-a042-206e0edf4586))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 177fdde2-9283-4d7b-aea3-a7895384f90b))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c457dc4c-e406-4d2f-be59-6d981464b94f))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b27f690-0e0a-474d-aac9-2792749a48df))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e87cfacd-65ab-4381-ad25-c5e99c0de026))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6db4a57a-ad43-499a-8b1a-e7ac1179962a))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43921328-5fe3-4489-a423-a95936b7759b))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 055abcae-7820-4d95-b6ee-e15abcd3bc82))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9d5f34f-741e-478f-bd2a-1dcaf2551d60))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp fc3a0e79-2864-4b69-91dd-2bbddb173000))
(pad "1" smd rect (at -2.45 -1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp fc1b2cbc-dbe1-4945-9c98-9c1a48e67ab8))
(pad "2" smd rect (at -2.45 1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(D28-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp e5f15664-7002-436b-8cee-83903c3100a8))
(pad "3" smd rect (at 2.45 1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp e2a43d91-e779-4845-a530-a0428295f1ff))
(pad "4" smd rect (at 2.45 -1.65 292.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Net-(D27-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 589350b9-343b-4bb5-a063-9b9ce66e5c44))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bc2e)
(at 130 100 90)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ffbf677")
(attr smd)
(fp_text reference "D21" (at 0 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b642b01-5bf5-4224-bc33-09f68c3311f5)
)
(fp_text value "WS2812B" (at 0 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6250bbd-9498-471d-b648-709202eed7bf)
)
(fp_text user "1" (at -4.15 -1.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15a8518c-0ab9-48a8-b12a-89737f831c89)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a4b8fc77-5967-4866-8fa9-a11cd8cfb329)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b10aeaec-788e-4037-9571-cac39e6b9214))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c94259f-b3c2-43b9-a54f-3dc4d5965f91))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 552a3826-dba2-4003-a7a0-6a4f63d53f90))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1dc0803a-d085-4355-81bd-1d573b4a2784))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3be9e0a-eea9-456f-88a9-16b5a40373c7))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2e62b35-7949-440e-b75b-6226377f3a72))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 205cadd7-b27b-442f-bed1-18774098a351))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a6a9174-b134-45cc-854e-12b7f3a313f4))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87429020-6fb4-48f5-ad41-dfb2a99df11f))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bc85408-36c4-4d99-99a3-078441e4945d))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6ed033f-ed3e-4bd7-aef6-ff52c82103d2))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f5c97a3-345e-4d98-9253-20d73eaf2e76))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5c1842c8-ca11-438d-abea-20f18a46b56d))
(pad "1" smd rect (at -2.45 -1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 45057783-ae44-4152-98da-c8ca1e5950b1))
(pad "2" smd rect (at -2.45 1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "Net-(D21-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp b80445a7-59f0-40f6-9c9f-276aca521885))
(pad "3" smd rect (at 2.45 1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 3a4758ec-1146-4227-8cde-26673953e663))
(pad "4" smd rect (at 2.45 -1.65 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(D20-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 530ce418-d9f3-4a34-ae2e-01f87f4b5351))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bc73)
(at 121.2132 121.2132 45)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ffbf640")
(attr smd)
(fp_text reference "D23" (at 0 -3.5 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f96942c9-e660-4fe6-a466-c780911d80eb)
)
(fp_text value "WS2812B" (at 0 4 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ba6c6ec-9e8b-4092-abe1-6e6aef46a8f7)
)
(fp_text user "1" (at -4.15 -1.6 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8796b55-0c9f-4d6d-94f4-d878ba6dd559)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 18e83184-a124-4ea5-a220-43c928d293bc)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec7dd032-cc60-4f9f-9718-9697bc7c18e2))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9905397d-bc98-4628-aac0-dc414604fb58))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b5ed43a-9513-4f0c-9a08-370f3fe649b9))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63583df2-d244-42cb-ae28-1ca2a3a80b30))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a74dd9a-31d9-46b4-b56c-25b5d997dc9f))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5530f44a-b5b7-40e9-b966-1bea976849ee))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18283959-78b2-43ae-b10c-51c12b427915))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c799aa5-d054-4ad5-84b3-77f804b5403d))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e920381-023d-4d39-8208-103c92208fb3))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5d36577-79b3-47cb-9c95-3df394616e37))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b32273f-077b-4537-8d25-f39d5af583a5))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9db92b0-11c8-47a4-b7a0-f45ad4639a32))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 77903a53-777a-4d6e-97e9-e138e694b264))
(pad "1" smd rect (at -2.45 -1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 51c2ec07-068a-4f50-a8e4-744258b0fcf9))
(pad "2" smd rect (at -2.45 1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(D23-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 941d4ea8-debc-49ef-9f4d-ff9e2d26212d))
(pad "3" smd rect (at 2.45 1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp cec6e8e2-717a-4b83-9489-f2aa1bb8784f))
(pad "4" smd rect (at 2.45 -1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "Net-(D22-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 5e94ced4-df14-4683-94dc-ed634c7aaadd))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bcb8)
(at 100 130)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ffbf64c")
(attr smd)
(fp_text reference "D25" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05beec7b-cc91-49a4-8572-5147f59f825b)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9d34690-ee67-48da-bd73-53d995b0a740)
)
(fp_text user "1" (at -4.15 -1.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4cdd15e1-5928-485c-978e-599cead42bca)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8f9c5b07-1303-4fb8-8e8a-a6f5cd465ec3)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b4175d9-e2ad-4227-9b67-2d0c25d77a3c))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f6f2bd9-e3aa-4d35-b5d2-795110f1b372))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c027096e-557c-45c0-8ab5-b6ff852e61dc))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20849933-7cb8-47cd-a2d2-7fd2e780ecdf))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8da85a5-2021-4917-bc76-076129c276f5))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 69294daf-b1f8-4ea3-833b-7e395d88edf9))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d96f700-0ccc-4b24-890f-b78b97f03b16))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df8f7c7d-2c56-46f6-8876-beba169bb972))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de82c602-c524-4b49-8d32-2e675d292e92))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e052bfaa-00c7-480a-9f90-dadb98aa4985))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 487c6791-fc0b-405a-b000-68667c1d4685))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e7d124a-0ab5-483c-81f4-2b1a581ee8e8))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b50788aa-11b8-4cd7-8610-560265b155ae))
(pad "1" smd rect (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 4f4cf806-ed9c-416a-8bd9-b022b9c7077f))
(pad "2" smd rect (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "Net-(D25-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 0a4a9f72-8f67-46ed-85f2-ffc63d69a134))
(pad "3" smd rect (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp d793c1ce-5ae0-4015-8d5f-be39b39df28c))
(pad "4" smd rect (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "Net-(D24-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 263251ee-2ced-4866-b30c-0e355a05fc7f))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bcfa)
(at 78.7868 121.2132 -45)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ffbf65b")
(attr smd)
(fp_text reference "D27" (at 0 -3.5 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9da12086-d4ee-4d18-9179-fb7435d7e211)
)
(fp_text value "WS2812B" (at 0 4 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13dbd9cf-fb7a-4351-b4c4-c1fc6c0d9713)
)
(fp_text user "1" (at -4.15 -1.6 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4eb9b418-9d7c-4073-a783-5e2659fdbf3c)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ab3d02b9-6469-4204-a728-4b53c5340bcd)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76c61529-b1ea-4f43-b8f3-7c46cf870eca))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b228447e-2d16-4611-9aeb-829433072db1))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9db5828e-6518-429b-aa01-6fdf20be3aeb))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2534cffb-3549-4dc3-8ad8-0a297786a4a5))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5639a0e-e20f-4510-a9ea-22754cdae0bf))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a74efe35-ced6-4192-a77c-337b1859acac))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91c2d34b-4924-4f07-ae17-e93b25ff3e4a))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ecceb28-ba24-4169-a28b-f444a6f28be7))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bce55aa2-4481-4eda-a875-fb24a0cad0d1))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e0ad28d-3a1b-48b8-9804-25f7d4411a05))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23cb815e-e599-41ad-ba65-c328fa9bd2e6))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc8fe13c-be6c-4378-a223-1a0e9ac0d3bf))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp bc6729de-b4f3-4ddd-b4fa-988630479f87))
(pad "1" smd rect (at -2.45 -1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 90748533-9628-43a0-8d49-68a220bc734c))
(pad "2" smd rect (at -2.45 1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Net-(D27-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 9ac5e33a-cfde-47f9-90bb-d7c16bb5db32))
(pad "3" smd rect (at 2.45 1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp fd3fb59c-02e4-4be6-8960-288e2c008809))
(pad "4" smd rect (at 2.45 -1.65 315) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(D26-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp eb70f162-2094-43c5-836f-81d6a4e81219))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bd42)
(at 127.71639 88.5195 112.5)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff86e97")
(attr smd)
(fp_text reference "D20" (at 0 -3.5 112.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3d84bc2-39a9-475c-be3e-9ce655135be4)
)
(fp_text value "WS2812B" (at 0 4 112.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0f5f2ed-d9ef-429e-bd96-0d42ecc9e9fa)
)
(fp_text user "1" (at -4.15 -1.6 112.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66aae3d5-c82e-4d72-bf0f-ebf3f98e9875)
)
(fp_text user "${REFERENCE}" (at 0 0 112.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a2571ef9-d7a7-495b-a794-d428b34e0a01)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e0a3fcd-5167-48de-ade5-f24fc6f01023))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f4a7d40-a055-432f-9ed3-bd26bdc799d2))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 472e9c17-b40f-4992-a1dd-ff31c628f8bd))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7efcae14-acb5-469a-9d8d-96a9cac5f66e))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20228ad2-529d-48b3-98bd-1ed8163d06ca))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 418f60c7-233a-4f90-baed-b3e20bae8638))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bc02f15-33bb-43f7-9e17-9e0899c8948e))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1c02dbf-7a48-418d-bdd7-0b2049c10b6d))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d76d7e8a-9918-4204-b34c-75a1e51ecbe1))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3261a924-81c7-4114-ad09-54831c9c8117))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e3719fa-43fb-47f5-bd1b-19d069bf5635))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ce4b19c-458c-47d6-a5e4-5ed18344dbff))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4d373966-7198-4b47-940b-2f328562e5e9))
(pad "1" smd rect (at -2.45 -1.65 112.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 187b5458-d8c8-498a-94fe-27f5f59e0785))
(pad "2" smd rect (at -2.45 1.65 112.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(D20-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp efdb6f09-7997-4975-b2b0-24034484eaf7))
(pad "3" smd rect (at 2.45 1.65 112.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 6676d15e-3479-493a-b915-b5968eedbcd9))
(pad "4" smd rect (at 2.45 -1.65 112.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(D19-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 425ef0ec-a7e9-46bf-9b3e-dd0861a6c724))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bd84)
(at 114.14214 114.14214 45)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff6c9fd")
(attr smd)
(fp_text reference "D10" (at 0 -3.5 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b91b12cd-a136-4d2a-a8e2-7d45b24536a3)
)
(fp_text value "WS2812B" (at 0 4 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8d7ba4f-4ae1-46a2-9f14-6a10c1bddbe2)
)
(fp_text user "1" (at -4.15 -1.6 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96ef5c78-ff15-4aa2-8747-e49236f1cbab)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 87292cd7-2962-4c20-9fab-119e7de16267)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d75cbc3c-e542-48cc-8d2b-1d7059f2ee81))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae672ddd-eb19-405d-9011-5464b8422d4b))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c818a922-ef2f-4b38-8ca1-87cda0b4be73))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 244200a0-11c1-4530-8430-9663eac2605c))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c04cedb1-c5fa-4e36-91ae-fde210754f01))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ab4d1d7-70d1-4490-af6a-2ca7df3a1ae8))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 071492fe-6c2f-4bca-985f-6f7f3c0fdeb2))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55c0f550-fb45-4d70-b434-a97943cce7fa))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 42b4aead-f5ec-4942-bee0-1cf75e7d4179))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c656cb50-a6f0-4f5a-b581-cecb64a13303))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae0a6f09-e1c1-4d5f-bf26-cc49f83699a7))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d6c22a8-6617-495b-8b59-1a6287bb41ee))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4c0a2671-ea0a-443a-b545-341615382c2a))
(pad "1" smd rect (at -2.45 -1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 9d623ce3-833c-46b6-bf89-54de701c94ff))
(pad "2" smd rect (at -2.45 1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(D10-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 83bf87bc-d338-40f2-8f4c-99198c49d4e0))
(pad "3" smd rect (at 2.45 1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp d24b9018-532b-4e12-828f-273f657e257c))
(pad "4" smd rect (at 2.45 -1.65 45) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(D10-DIN)") (pinfunction "DIN") (pintype "input") (tstamp 447c89aa-3c90-4e31-99f2-2f2a52b069b0))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6bdc6)
(at 121.2132 78.7868 135)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff86e90")
(attr smd)
(fp_text reference "D19" (at 0 -3.5 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a5de818-dde8-4c6b-a0f0-77ecdc7197a2)
)
(fp_text value "WS2812B" (at 0 4 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a7946c6-fe61-481e-9cd9-65f65e2a77bf)
)
(fp_text user "1" (at -4.15 -1.6 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b59979c0-f2f0-46aa-90c0-3b73049a995c)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ec19fb35-1885-4edd-8269-d6723acf8db5)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 526f7fec-718c-40ae-bc3a-00d9f9a0f9aa))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp afe1f494-0d86-45c5-80a2-f82f55274b7f))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dbb024a-8a12-4121-a845-b3937b0eadc2))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39bad382-9d24-4d5f-9666-5d0bf4568901))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2f74fa6-5b92-4186-95dc-fbe2eb301fcf))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab989a24-3880-425c-b2d1-f7e3f2c0b517))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4da8834b-5a41-44a0-b872-e31e14dc5dd9))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 190b783b-7b73-41e9-b423-a03f351829c3))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3a45b0c-9159-4a24-9119-cedc876a3785))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8130cf2-4ce3-4f21-afec-e17f620115b5))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce2de2a5-9328-4f97-b834-a4dba4e5af37))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf5d2a6b-d28b-466c-9bb0-3e41f35ad40d))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e79b5fd8-6d79-4635-a539-bd92d032d0be))
(pad "1" smd rect (at -2.45 -1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp b5a30795-80ef-47e7-8b28-c4472917818c))
(pad "2" smd rect (at -2.45 1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(D19-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp e1882497-76a0-4578-a4d1-34947ac0f753))
(pad "3" smd rect (at 2.45 1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 93bfe3b7-f2a8-4509-846b-310a752e417d))
(pad "4" smd rect (at 2.45 -1.65 135) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(D18-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 28f98153-1f6c-4a95-b382-f640a1962bb2))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6be08)
(at 111.4805 72.28361 157.5)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff86e89")
(attr smd)
(fp_text reference "D18" (at 0 -3.5 157.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d4df464-eb51-40e6-a7ba-ccf147c09e4e)
)
(fp_text value "WS2812B" (at 0 4 157.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37e6652c-9773-4ced-b0db-9913eba57187)
)
(fp_text user "1" (at -4.15 -1.599999 157.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f70927b-8ff0-4e1b-8fea-843759ce306b)
)
(fp_text user "${REFERENCE}" (at 0 0 157.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp bb5e434e-aa80-4f0a-a05e-751845fdedfa)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79133f09-0432-4463-a9f9-84a89828ebf2))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3f06c15-c2db-4c1e-aca6-3778b00ff003))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dd90835-c12f-4a95-8fbd-47b7677fbe93))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61e05f47-e3f4-447c-b2b0-634137d64b88))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9770c0c-8740-4ece-8154-88bcaed869fe))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 465c70cf-404d-4a5a-84cb-89345d46886c))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 654d6e41-8fef-4715-8fca-7f564aa5caf0))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4051f20f-b927-4bb6-9830-357493e0846f))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56aa9f62-5e73-4485-a3b4-eaa3884879ca))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f18da929-54a3-4f64-8038-d13a7dceca8b))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d14997e9-0b62-45ec-a485-85558540dbae))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db0ca58d-007f-40e1-8418-5c80c9c97898))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4e224735-fd47-4a88-af95-283f6b224145))
(pad "1" smd rect (at -2.45 -1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp fca54086-6ffc-4d67-af4c-dda1a94731d6))
(pad "2" smd rect (at -2.45 1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(D18-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp c0e634f3-989c-4b10-b750-973ac1330a69))
(pad "3" smd rect (at 2.45 1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 4563d0c3-23c1-434e-ae92-876af21148e7))
(pad "4" smd rect (at 2.45 -1.65 157.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(D17-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp cfaa0634-94cc-47f5-8924-534da26fbe84))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6be4a)
(at 100 70 180)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff86e82")
(attr smd)
(fp_text reference "D17" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 567d3f31-ba2a-43c0-be49-ac73e5299ab0)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aadfbdfd-205a-4337-a53b-bc2c255f6c2c)
)
(fp_text user "1" (at -4.15 -1.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57d2586b-12da-4bd2-b6a0-4fbfbe1e3ae4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp bf2f9e7c-fad4-4dcf-8509-13c7b915e68e)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6ec117a-efc4-4530-9974-7c6ebf757aeb))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23befa53-4ad7-47ac-b8c4-7facefcf2553))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd605371-eb73-45da-996c-819a6fc4318d))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e545c4b-b33f-4b56-8c12-eacee5839557))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc53a854-cb6c-4623-9f42-041ac40337ff))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 357f102c-0a85-4509-b900-0a3695d0a82f))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3e454e8-22ca-4c5f-b8a2-6b08491c121d))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82d927cc-5b22-49d9-b8c6-9921c35af530))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ad85208-8316-4097-b09f-8b55d48cb205))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b6184e1-782e-4ddb-8434-43865d9a4953))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8ae6470-c8d0-4b05-b1f6-f14332867f72))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48684192-68fa-4975-b10f-e2325cacd6da))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 7ab57a2b-f827-401d-9f50-ac2bccf62ab6))
(pad "1" smd rect (at -2.45 -1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 28d28d18-f176-40b0-9954-a869247c828c))
(pad "2" smd rect (at -2.45 1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(D17-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 082e2306-dac2-4e64-8a14-6548d3961877))
(pad "3" smd rect (at 2.45 1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 92af954e-3e33-40f9-a7f5-629c4cd77ef4))
(pad "4" smd rect (at 2.45 -1.65 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(D16-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp babe7b6d-fc11-40b6-8239-c5ffcb7b2efc))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl"
(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 00000000-0000-0000-0000-00005ff6be8c)
(at 88.5195 72.28361 -157.5)
(descr "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf")
(tags "LED RGB NeoPixel")
(property "LCSC" "C2920042")
(property "Sheetfile" "BottleBlink.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/00000000-0000-0000-0000-00005ff86e7b")
(attr smd)
(fp_text reference "D16" (at 0 -3.5 22.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a32f8e4d-f0e1-4e6d-bab3-fcc9d02bac4e)
)
(fp_text value "WS2812B" (at 0 4 22.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f383ec83-ba49-456a-9f28-e4517d9dfe15)
)
(fp_text user "1" (at -4.15 -1.6 22.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91186dbc-d0b1-46ff-aec1-d6f014472f0d)
)
(fp_text user "${REFERENCE}" (at 0 0 22.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 616d3012-9317-41ae-bdbc-ec7a31370d15)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddf7925b-9c17-4145-b272-3fdfc665c202))
(fp_line (start -3.65 2.75) (end 3.65 2.75)