-
Notifications
You must be signed in to change notification settings - Fork 0
/
catEars.kicad_pcb
9982 lines (9943 loc) · 391 KB
/
catEars.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "3V3")
(net 4 "Net-(D1-DOUT)")
(net 5 "LED")
(net 6 "Net-(D2-DOUT)")
(net 7 "Net-(D3-DOUT)")
(net 8 "Net-(D4-DOUT)")
(net 9 "Net-(D5-DOUT)")
(net 10 "Net-(D6-DOUT)")
(net 11 "Net-(D7-DOUT)")
(net 12 "LED_out")
(net 13 "unconnected-(U1-UTXD-Pad1)")
(net 14 "Net-(U1-RST)")
(net 15 "Net-(U1-GPIO2)")
(net 16 "Net-(U1-GPIO0)")
(net 17 "unconnected-(U1-URXD-Pad8)")
(net 18 "Net-(D8-DOUT)")
(net 19 "Net-(D10-DIN)")
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" locked (layer "F.Cu")
(tstamp 0ded65b1-9121-489a-a382-b9c3731346b1)
(at 8 21)
(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 "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/c18f9743-f5ba-45b0-989c-df873faec574")
(attr smd)
(fp_text reference "D7" (at 0 4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fc720e0-e1d9-4740-84d9-383166f6673c)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d84762a7-64c6-491e-ba2d-60ff5d0182a3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4272709e-8fef-4c24-ab1b-f4409ec4e9ca)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebe3588d-04c6-400a-a844-29a3d3312384))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 267cd208-d9b3-4c54-ac50-411f9cc1e028))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efef7aff-2dcc-4a73-b5da-4e89bbb48507))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae79fb42-2e9e-4b7d-a55c-b89d8bd395ca))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c0d7e70-fddb-44f2-8e7d-b87f28eaab7b))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e83a3d8-0037-4032-8f75-edc875aa7147))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a628c80-05ac-43e3-a156-68feb8c4a7cf))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e215469-7dd5-4c49-8802-67bda2f985e2))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6178a72-ae09-4517-93a2-a6216e441c60))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f584dfea-bca8-41f1-95e6-c65fe55aed42))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01d2fbe6-7503-4682-a26c-26032f2d3af4))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0177ed94-3c06-4dc3-8824-bd19e3a298cf))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 27f88c6c-559a-4749-901f-4291fa7e6577))
(pad "1" smd rect locked (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp bd3b7b09-6eb8-4dfd-a780-89dad278112a))
(pad "2" smd rect locked (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(D7-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 74c17dec-cdbf-438e-9a4e-8aa564d5c652))
(pad "3" smd rect locked (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 6a9722ac-9128-464a-9c14-6b576e80b659))
(pad "4" smd rect locked (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(D6-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 13ffef27-694d-4719-b8e8-0faa0d7e1f62))
(model "${KICAD7_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" locked (layer "F.Cu")
(tstamp 17209b62-f0a9-4c25-9afc-80570ecbafc5)
(at 13 32)
(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 "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/7d3c830d-3f7a-4ec8-b4e8-234b1538cfe5")
(attr smd)
(fp_text reference "D9" (at -3 3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5cf4b72-b690-40e8-a4e6-b8c85e28ae1b)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54ee1835-23af-4925-9ef7-2f2b92d8baa0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8d2bd21a-e1e1-444e-99c5-0935ed3659ff)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a15e1b71-9160-4f90-aa31-b8073968fe0b))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65be8e31-3dac-42f2-a259-bea2c0a96566))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75df3c9d-5e47-4d88-8aec-9a440299f073))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb5ba92e-47fe-4293-9d59-2758bce645e8))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b59f442-e23a-4b7e-9ee5-c9d187663c64))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59fe4cc8-3278-41a7-b1e1-6195ef4a9f4e))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3047511b-fcb9-4e0f-a0e7-2a36df54c4a5))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10a3b6d4-c5ba-489f-83be-2608cffa0281))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b935314-61fa-44f7-b738-1a11b08abd04))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c505bc0-096d-48db-b7fe-4a17cbc2387b))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b4f161e-b0d5-4b1b-b8a2-0d801f4f062a))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e660dbf-c4e2-496e-ba10-d9658156163c))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2cdf0578-9b88-40eb-bc6b-b6ce380ed589))
(pad "1" smd rect locked (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp e06f02cf-e5ee-4fb6-b5e9-160b769c0093))
(pad "2" smd rect locked (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(D10-DIN)") (pinfunction "DOUT") (pintype "output") (tstamp c958cdcb-c457-469c-be15-9679e5c134bc))
(pad "3" smd rect locked (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 524a488f-4a73-4873-a0bd-bb93ac18af0a))
(pad "4" smd rect locked (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(D8-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp a04a242d-0f31-404c-b226-390533ce9834))
(model "${KICAD7_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" locked (layer "F.Cu")
(tstamp 24680d40-dbb6-4bd4-a2bb-5dbef3cd9ad8)
(at 0 9)
(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 "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/81e3ef1c-abf3-4622-9cca-db621c57ffbc")
(attr smd)
(fp_text reference "D5" (at 5 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 737380cf-7a98-4e05-bae4-1c9ced0e4f46)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2287c994-a049-44f7-91b6-712bf7c6bccd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 11f5245e-d8df-4b89-9162-10dddb691732)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f9e5268-d068-44c2-89db-bd1d94292d85))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5927a8c8-ce34-4256-85e7-918db91cb567))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 468851f6-4833-4bb2-a523-cb40c810dca5))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp befcb315-58d7-4018-8942-bbd44d09ba3c))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae829cd6-24fd-4ed0-a6e7-0017e655e5fe))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d56c3a0-2d30-416c-92fb-b4f56e081c97))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7baa89f-fb8d-47a7-bb07-d235b277fb63))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef70f2c8-d618-4e91-bdb8-ec341927b1fa))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 493d3c10-38ac-4340-a488-7362f7221e8d))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a472c04-443e-4c4d-af3b-c9e71069fa80))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97c2fb6e-8fbc-423d-a2cc-84b394c182a8))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fdbf9f2e-5496-4ed5-b27d-eb2fcdafd15e))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 71b92ab8-cc79-4030-b933-516d797d1b07))
(pad "1" smd rect locked (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 452a51f4-8181-4602-aca9-25e8c9f2d74a))
(pad "2" smd rect locked (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(D5-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 774a3851-eba3-433b-8577-e21368594205))
(pad "3" smd rect locked (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp fa745aa6-3857-4c81-bbb0-93811ff5c00f))
(pad "4" smd rect locked (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(D4-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 170feff7-6697-47e8-8a72-22d4e65262f0))
(model "${KICAD7_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 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 8f6a8eb6-10d2-4fe4-9f7c-817619ef4b2a)
(at 13 28 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/25416716-4233-47d9-9b06-c36cfd507332")
(attr smd)
(fp_text reference "C9" (at 0 1.905) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1d98275-896a-488f-9a4c-02a2713fcaa7)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5fc2d11-6e47-40eb-bb6b-e7d534e64cfa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1203f041-a6ea-4584-a604-bdef6a0151f9)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a5377e9-30d0-4dc8-8f5c-ba536b5f9ddb))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c270b79-5c70-44c8-a524-b72c62e1f6df))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27dfe2b3-bd59-46f1-b806-6d387ffb8411))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3396caca-2f2e-4df2-99ad-c126048694d3))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42954782-332e-4b43-b357-bfa3a387571b))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 369515d2-8888-445c-85e9-a0d742e9d1ba))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e22fbdc1-94a6-40ad-916d-cdecd822c1c5))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc3d5885-5775-4263-9adc-68f8cf0d94e9))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 905469fd-152e-4895-ac08-fd47f3788b05))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4b415a8-98c1-42c6-bb15-ccc60217d9bf))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 4c1096f4-a8ab-4915-bdd9-b68049a5f870))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "+5V") (pintype "passive") (tstamp fff1f541-3f84-4406-a78c-33f5201fb12d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 94e2e4e0-581b-4c32-8140-79e46c82238e)
(at 0 16.5 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/79c60fb0-7b5a-45eb-8985-369dc83975c5")
(attr smd)
(fp_text reference "C11" (at 2.54 0.635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 410ed9d3-7d65-4632-8e2b-cd2710f3491d)
)
(fp_text value "220uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ce342f3-7558-4abe-b7c9-c11a78b1d6b0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1354c011-9aab-47e1-85ac-12e31b64a00c)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 504570cc-8dc3-46de-a967-3c0ec2b902a4))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7375d99f-28ff-480d-84a1-9566b237de42))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3aa7480-a161-4e2a-9fbd-ac28180cb8bb))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6ba5d53-ca4a-47e7-9011-1e4df51ae542))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cd7521d-927b-4b54-b572-3a00d8f23e7b))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a214d9f-5c38-416a-8f21-551904dda8be))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93f5e1c1-d678-4238-a2c9-2c5a61248c13))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 610a3551-bb9a-46e2-a85d-c9672ed29b84))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02085e10-d406-41ef-98dd-91b1fed50939))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f595f99-49b8-48d7-b41d-10d2f0cdcca2))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 3 "3V3") (pintype "passive") (tstamp 7779ffdb-3ab8-46b2-b200-3a02d97a3bab))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 8dc08ced-9aea-4559-95e8-8f120d0ba0f6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" locked (layer "F.Cu")
(tstamp 9b254ea2-91ed-4eae-a8fb-680e36195e9f)
(at 8 17 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/f92fbe63-0b83-4815-9568-e7f80748e302")
(attr smd)
(fp_text reference "C7" (at 0 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73b613ed-14c9-43a9-950a-f12aacc174ed)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5990a2dc-e779-45aa-b96a-e0f22c4745a5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4bc9779b-2a55-4cb9-8003-4c7859878aa5)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7e37356-0edf-4af2-86e0-0170862d76db))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d9b7aea-3e8d-41e2-b3e8-1ff6fabdfbe0))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7864d9b7-2507-4dae-b929-815d87b30439))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05206d48-122c-4df0-9ad1-4e61c767caab))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1039c720-5040-4a1e-b16b-69c49c49cff0))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f96c7eb1-4906-49a9-a684-0c6e814b85fa))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9e23edd-d7d0-4df7-b62c-39b738e44750))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9974d5e-0987-42ee-a7cb-ab9da15308d2))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a488b090-efc3-4d02-88f1-65ef8fbabdc8))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 357afc5b-185b-4264-ad46-0f07fb150292))
(pad "1" smd roundrect locked (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 41ff9281-a30c-43e8-b26f-c126c4a86bd0))
(pad "2" smd roundrect locked (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "+5V") (pintype "passive") (tstamp 51d2bbfd-0edd-4d74-9d59-c625e6995100))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" locked (layer "F.Cu")
(tstamp acefc730-1e82-4c81-94a5-69bf2a833331)
(at 0 23 -90)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223")
(property "ki_keywords" "linear regulator ldo fixed positive")
(path "/69be6c79-9119-4875-a94f-c121c6a0c6c1")
(attr smd)
(fp_text reference "U2" (at -0.635 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 218f1052-9cbc-41a6-8e46-5fd1a5e3bf1f)
)
(fp_text value "AMS1117-3.3" (at 0 4.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49990b1b-b3f8-4184-a8dc-6dad5b8383cc)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 7e31484a-6ed7-4003-888d-6f0963eceeee)
)
(fp_line (start -4.1 -3.41) (end 1.91 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d936a49a-560a-42d7-b9b5-8261b54ebc57))
(fp_line (start -1.85 3.41) (end 1.91 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d14b38c-0d61-43aa-949e-81fb82883ec3))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7523c6d1-b6ae-415c-a35c-6cb0b92d00dd))
(fp_line (start 1.91 3.41) (end 1.91 2.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b1341cf-7897-4d60-9fec-50160031672b))
(fp_line (start -4.4 -3.6) (end -4.4 3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f36f34b3-6b27-4c1f-9e59-05a15c351ce6))
(fp_line (start -4.4 3.6) (end 4.4 3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b5a9214-70f9-4376-b4a6-5c2c2ec8eac5))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a6584b7-1bff-4f9f-9952-356c9cefbb3f))
(fp_line (start 4.4 3.6) (end 4.4 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dc6872b-930e-4c4e-9226-c132aa1b7e7f))
(fp_line (start -1.85 -2.35) (end -1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de6ca502-e84c-4392-963e-f08fd16fd773))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07cce3ab-af6d-42e8-8b0e-e1d9b2d318c2))
(fp_line (start -1.85 3.35) (end 1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d180e27-ff89-4b9e-8342-261840f8cc56))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3c91772-2c0a-4292-beab-b80d02aee88e))
(fp_line (start 1.85 -3.35) (end 1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71d257e0-a050-4788-809b-559c8daf52b6))
(pad "1" smd rect locked (at -3.15 -2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4112709e-19ff-45ea-ad44-1e6527f12876))
(pad "2" smd rect locked (at -3.15 0 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "3V3") (pinfunction "VO") (pintype "power_out") (tstamp 04d70b6a-e710-4480-9d8e-2caaa5ede077))
(pad "2" smd rect locked (at 3.15 0 270) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "3V3") (pinfunction "VO") (pintype "power_out") (tstamp 87ec47f0-29cb-44fc-bc55-771fba11bc6f))
(pad "3" smd rect locked (at -3.15 2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp d5f0b6d0-8b64-4d8f-bd9d-8150dff97642))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" locked (layer "F.Cu")
(tstamp af785563-ccba-4cf6-bf36-3deead2703f3)
(at -8 21)
(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 "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/76ed3f52-07cc-4af8-8875-59c477680e5b")
(attr smd)
(fp_text reference "D3" (at 0 4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f15bc1e4-32c5-4676-90c8-47a1647f440a)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 053c98af-0979-4e19-9d7b-b4663406cfd0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 48b7776a-007c-41d1-b4bc-119993c8ff01)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a3cab1c-ef38-4245-979e-294ca709e855))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d2413a-2fa7-4ab4-babb-755733112ce1))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22638689-a3c8-4492-a056-46b9daa53211))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8325fc65-d571-4b5f-8578-a777f2ef7dcc))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5ab694f-6b7b-49b4-959c-c697e91245cf))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6de7520-536a-4834-96b1-a6b91a1128b5))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f024b4b-bf30-497b-9967-d37b520e431e))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bec16c42-41f1-4dce-90dd-ce9e42914b1e))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fd09d9a-4e5f-4846-8615-348cb8add682))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25a464a1-53e2-4590-8bad-c47dd46c62fc))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b48dbab-4fd7-4eeb-bd80-3aa43439460c))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eda2a045-b638-474b-90cc-e3f3bb9093fe))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 3d3bab21-cdfd-4b5f-a6ce-f5c882acf35b))
(pad "1" smd rect locked (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 9832fefe-6166-41f5-ba4c-c702b37a3983))
(pad "2" smd rect locked (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(D3-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp e75d333a-62e9-4a11-9753-e773092a22f9))
(pad "3" smd rect locked (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp c1085c18-0f43-408d-a923-e3c345ca3608))
(pad "4" smd rect locked (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(D2-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp deee854c-5241-458c-90aa-f0c792da7c43))
(model "${KICAD7_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 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" locked (layer "F.Cu")
(tstamp b016154e-80a3-48df-991e-82bd790f1d29)
(at -17.5 38.5 100)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/85ad7265-3e74-4deb-a2b1-0f08ddcd665f")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 100) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cf0fb60-dacb-4a83-8eba-790d691687e8)
)
(fp_text value "Conn_01x03_Socket" (at 0 7.41 100) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 264fd0e5-e2b1-4fd1-a1e3-a535e6929ca3)
)
(fp_text user "${REFERENCE}" (at 0 2.54 10) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f66debeb-47a0-4a90-a145-f7d734a80963)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d31ee1dd-d9bb-4952-9035-a6a81f3ec99f))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 119ca6d3-682d-4807-aed9-a3056eea38fa))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df0e71f8-04ce-48c3-843a-aaacfe93d54c))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df15fe8a-72ca-4acf-a3d5-0cb65e1cb1a9))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73f01014-5b98-4ff8-937a-19d133e7e8ef))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7de4d825-9713-4940-90c4-1f03af656b87))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1b1cacf-c2d7-4dc7-a975-cf072d0dabd5))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da5cc713-ab67-4f4e-93b8-0ca93229cda5))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dbb99b0-257c-457c-a1c9-7a3c97664693))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf09fc4b-6667-4188-b1c6-dfa6dcde4b76))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 807cc5ee-b679-4bf7-b0c8-3ce18ac75a46))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8565eacb-3f59-4367-ae8a-997020ae3bdc))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ca889e1-4e3f-46d9-a0a5-28622eefefa3))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14e2bb66-a1fd-4898-867f-1a20b531d553))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6ce2e33-dc58-4dc6-b3a1-04a37c2a1b24))
(pad "1" thru_hole rect locked (at 0 0 100) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 196fc3e0-d48e-49e4-b50d-ae8be18c88de))
(pad "2" thru_hole oval locked (at 0 2.54 100) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp 7f6f2610-beca-4005-b54f-9bf86ec02baf))
(pad "3" thru_hole oval locked (at 0 5.08 100) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "LED") (pinfunction "Pin_3") (pintype "passive") (tstamp e1e4e511-3a8a-4f9d-bac4-b5e70a560eeb))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp b407a59d-2a5a-47d0-94cc-eb8c9eb8083e)
(at -13 28 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/11cafa1c-2232-478d-9b25-fcdacb1bcc8d")
(attr smd)
(fp_text reference "C1" (at 0 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc76dd9a-9a6e-4702-b58e-95dda092e9a8)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebdb5992-dabf-4a0e-afd4-d1637516776f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0977a681-dc0b-4e11-bc5a-b11237a3f28e)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c2cc032-8dd2-4350-b99d-7339081914fd))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b636e31b-ecdd-4a08-a2ba-565227f32860))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 69b36746-f05c-4cf5-a60e-450d812b1364))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcebb212-77c8-4e6c-97f0-f8d441212894))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5eb97d2-8679-4973-8cf6-962d45ac52f3))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a596c86f-1802-4ea5-9d1f-72e7fdf8d43e))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 171d3850-80a8-4bbb-9bab-d2b3b6735953))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be78b45c-8827-4666-a6c8-577416f86087))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8292d5ad-1d94-4a7b-9143-fa69c85a6e14))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad7700e7-0c55-4d3b-b9dc-2bdf4e8e0961))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 763ae90a-febc-46f6-82d4-efcd526fc20f))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "+5V") (pintype "passive") (tstamp 458dcf0f-17ae-496f-8006-1d8cdcfb5d34))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp bedc05b3-c134-4dc2-a5c6-9f49d95d962e)
(at -2.5 16.5 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/e7656551-8f0a-4f98-b077-ca11b7017521")
(attr smd)
(fp_text reference "C12" (at 2.54 -0.635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 109ef808-c381-4b53-be55-ed805ffc275e)
)
(fp_text value "22uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79511e4f-6394-4ccc-8dad-b1a9386aeae7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4a13fed8-47fb-4702-840a-4aef46af8fb2)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02536461-c801-44f4-adb9-96a4acf69e1d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be890429-e7bc-4237-80e6-3cdb9aefff89))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02c01b95-b347-4f7f-a6a6-e86ae7eba6fc))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe4e62ae-5e7d-44bf-b2e3-e59f53d0ab91))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 976e1237-60ed-4454-8774-8476391794e4))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2bd45ce-7cc8-4981-a289-7792f43c791f))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 322bdb4f-210f-47e6-93ad-43533b450a3e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fa0adba-11ea-49ec-bddf-58f2a1d574b8))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f077a09f-2eb5-4647-9ef1-20aedfff9f32))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6a4927a-69a4-4aad-a59f-d855c92d9452))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "+5V") (pintype "passive") (tstamp c1afe5a1-612b-470e-b97c-4454ffaff96f))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 2504556a-5c8e-4158-b755-08d0d1024aa6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp cb2437df-3e5e-4f5c-abfc-b4d3dbe77664)
(at -8 17 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8f3fbc73-79b4-431f-b2ce-afa409fdb31f")
(attr smd)
(fp_text reference "C3" (at 0 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 450f5d58-9798-44ad-8f1b-b1bd6e4b4f60)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20721918-8794-420a-97b4-21c1f628bde5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2783cea2-e21f-432b-97c5-baab9b9dc851)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9846871-bb66-4be7-a45a-44a586bce7f3))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45faa1ad-5af6-42ab-a58c-040742803167))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1204de2f-6332-44ec-8e9c-fd748d346828))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34acd19a-aca5-4dc1-963e-2dd021ecf9b3))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c833678-36cc-4c98-aa1e-c73527fdbb59))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 611827b1-128f-4ab0-b31c-313172edaa57))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ec3f980-78b8-457a-89d1-81bfba65a043))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17023630-a6eb-4a7a-b9d3-fd2a1e9c15a4))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95f04f6e-8b5a-4003-9f5d-6ece883cd2d9))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1fb3bfc-53c2-41b2-895f-61158a8352fe))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 3d8159ad-b348-459b-a5db-27b48ff4f35f))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "+5V") (pintype "passive") (tstamp 9e140401-74ff-41a1-a093-bcd5772b062c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" locked (layer "F.Cu")
(tstamp d103045f-55c4-4edf-9152-8458062e337b)
(at -13 32)
(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 "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel addressable")
(path "/6b1ea124-0e53-4cad-975e-27cdae29a9e4")
(attr smd)
(fp_text reference "D1" (at 3 3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3bf4c0f-e601-42ef-bf61-ca34f830d5eb)
)
(fp_text value "WS2812B" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffe2ffab-74c8-40ee-aa1f-b29934666c4c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 820164c2-06d3-4662-b935-e6c3d28cd942)
)
(fp_line (start -3.65 -2.75) (end 3.65 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4cd7ef6-b417-49f0-a776-6fbb8cff2864))
(fp_line (start -3.65 2.75) (end 3.65 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58bc8fdf-b71e-4a99-974c-07ab85ea817a))
(fp_line (start 3.65 2.75) (end 3.65 1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ba3431e-6597-43c6-bfcd-e5794e56132c))
(fp_line (start -3.45 -2.75) (end -3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f437e0c-a695-4743-993c-914099fd88a1))
(fp_line (start -3.45 2.75) (end 3.45 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43a52d9f-64b0-4e3c-8901-47691eb87a80))
(fp_line (start 3.45 -2.75) (end -3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d23c76da-ef01-46b3-834f-1d4c1497d29e))
(fp_line (start 3.45 2.75) (end 3.45 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 039281fe-c836-49f0-a2fc-c3575f76d79b))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de487f4a-b3b3-4edb-a721-47efb8e86ce5))
(fp_line (start -2.5 2.5) (end 2.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26ef9f37-20fb-46c7-8b5a-98cc9dc568d5))
(fp_line (start 2.5 -2.5) (end -2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b877f96-92e9-4d0a-a3ee-c8e4193415d2))
(fp_line (start 2.5 1.5) (end 1.5 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dd4a16b-a542-46df-ba3a-e9fb95047071))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 467253e2-6128-487f-802b-c98930cf88c0))
(fp_circle (center 0 0) (end 0 -2)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b23857ca-2706-4c59-82c3-f1ced17f6e72))
(pad "1" smd rect locked (at -2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 2cbd2683-061e-47f9-a181-1d82c1f6ab79))
(pad "2" smd rect locked (at -2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(D1-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp db37b2ad-8562-4cd5-bcef-772060604470))
(pad "3" smd rect locked (at 2.45 1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp c4552655-3a77-4b33-b9bb-396ea5a8eef1))
(pad "4" smd rect locked (at 2.45 -1.65) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "LED") (pinfunction "DIN") (pintype "input") (tstamp aa9d9ad6-599a-440d-a811-50e4ef10623a))
(model "${KICAD7_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 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" locked (layer "F.Cu")
(tstamp f83c2c0b-7be7-4d8d-acbb-6bc0b3483534)
(at 17.5 38.5 -100)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/de089364-028c-4315-8149-e73d9d0a63be")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33 80) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9af14fa7-058b-4992-883e-9d2d0bed9768)
)
(fp_text value "Conn_01x03_Socket" (at 0 7.41 80) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32bb1c0c-5585-422b-b05f-683bf9212a4c)
)
(fp_text user "${REFERENCE}" (at 0 2.54 170) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a5fc9e1-0489-4610-b32b-4237984b0aeb)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88de5246-df02-4595-86de-1021ecbffe70))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b0f93d6-bb17-42eb-a439-02f5844a7825))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d89b04b2-2509-482c-b437-39bd527590af))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34937f8b-c6b4-41d4-8b95-6bdec19381c7))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 088d4028-4398-4c71-b3df-ce865013502e))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06f9b702-8c47-488b-99d2-a7c61e047d69))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17776ba4-1a50-4a59-92a0-afd8f7d2956c))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c7bf1e2-945b-4d80-bc58-3e810409a9c2))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98c06982-6e53-4893-a345-123b5e30c39e))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 410cbcac-0777-4427-a849-6982ed8f86e6))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 207dabb5-4297-4b41-a3b1-1e382a982318))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15a31f34-92c6-4ef5-80da-bcee9e3f439a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe742555-cfeb-4dfe-85b1-58afb9e9699a))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e193998d-9b4a-4bb2-b5a7-4bd086d9eeee))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0eece050-45c6-4e35-b0ab-1b58162c7329))
(pad "1" thru_hole rect locked (at 0 0 260) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 29716668-2e59-4de5-a410-6154c983387c))
(pad "2" thru_hole oval locked (at 0 2.54 260) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp 87c8c58b-924f-4529-ae4d-61b01f6f6a2a))
(pad "3" thru_hole oval locked (at 0 5.08 260) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "LED_out") (pinfunction "Pin_3") (pintype "passive") (tstamp 9ec90f2e-08cc-4119-b944-10be40b97ad2))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp fb2fe504-ff97-4378-9ad9-81327d0cae00)
(at 0 5 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "catEars.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/ae6bf47e-505a-4071-88d2-5527a9fc3ded")
(attr smd)
(fp_text reference "C5" (at 0 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9f54896-407e-4d67-b335-cb22dd149b1e)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 747db358-b9b2-4fb1-aeb1-d43a32b03767)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 473b5e92-a97b-4897-a658-b5b9a877db18)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa2e9987-ceaa-46ab-858e-9d9b97492b41))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3de6aa1-889e-46e6-8b1f-1e50a7390b7d))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61852889-549f-47a0-bc6e-56ab0431049e))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f9c6703-e446-488f-9fc5-8d42ec7ccaf0))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2108340-5979-4430-9851-af5573908920))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 836f1436-63a7-480d-a382-cf56fd1bf255))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d127d8a-cd66-4a9f-8272-25d360595a2f))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b7d05f2-e693-4fa5-a2e2-f4c1eb2c6b77))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71de9c99-bd13-4c95-bcf8-89fb6d0cdf91))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9cab10d-ddbf-463c-8f30-10d7341ba6e1))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 132fa354-cb7a-482d-8370-782ea53b89e4))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "+5V") (pintype "passive") (tstamp f09ab721-9883-4c17-9ef2-1d6520b9059e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))