-
Notifications
You must be signed in to change notification settings - Fork 1
/
led.kicad_sch
2234 lines (2174 loc) · 74.4 KB
/
led.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid ba74465a-d8e2-491f-90f9-f6ee36c8739c)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:2N7002" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2N7002" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "N-Channel Switching MOSFET" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "2N7002_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "2N7002_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "otter:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "otter:SK6805-SIDE-G" (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 6.985 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805-SIDE-G" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "otter:SK6805-SIDE-G" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SK6805-SIDE-G_0_1"
(rectangle (start -5.08 3.81) (end 5.08 -3.81)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "SK6805-SIDE-G_1_1"
(pin input line (at 7.62 2.54 180) (length 2.54)
(name "DOUT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 7.62 -2.54 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "DIN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 179.07 111.76) (diameter 0) (color 0 0 0 0)
(uuid 1383c2e0-9014-4320-87a3-9259c9c126ad)
)
(junction (at 215.9 111.76) (diameter 0) (color 0 0 0 0)
(uuid 1927664c-d4f5-47ae-a2ba-ff22aa98da10)
)
(junction (at 243.84 111.76) (diameter 0) (color 0 0 0 0)
(uuid 1a10671d-bd1e-4a5f-a7e4-f0de673500d5)
)
(junction (at 172.72 111.76) (diameter 0) (color 0 0 0 0)
(uuid 21178875-7e7b-4174-ac00-4637a2c7333e)
)
(junction (at 107.95 111.76) (diameter 0) (color 0 0 0 0)
(uuid 4705adbd-fd46-491d-b0da-c83c94b713f2)
)
(junction (at 259.08 111.76) (diameter 0) (color 0 0 0 0)
(uuid 48d754ca-eb7c-45b0-8b35-c4152bb28804)
)
(junction (at 157.48 111.76) (diameter 0) (color 0 0 0 0)
(uuid 5af51e16-a70e-4854-b5fe-c5313aeda84f)
)
(junction (at 280.67 111.76) (diameter 0) (color 0 0 0 0)
(uuid 6f9062b6-0253-400a-a372-9e52813226d3)
)
(junction (at 92.71 111.76) (diameter 0) (color 0 0 0 0)
(uuid 6fbd90c4-67c6-4231-a03a-47b3af65a12b)
)
(junction (at 71.12 111.76) (diameter 0) (color 0 0 0 0)
(uuid 77687f62-eaae-4008-a2be-cd6e2e8dfb50)
)
(junction (at 222.25 111.76) (diameter 0) (color 0 0 0 0)
(uuid 79895003-aefa-4377-8fa0-913d5e9437fd)
)
(junction (at 23.495 102.87) (diameter 0) (color 0 0 0 0)
(uuid 79e9393c-0ab2-4f96-97b0-d89d36e68dec)
)
(junction (at 23.495 93.98) (diameter 0) (color 0 0 0 0)
(uuid 7e2caa4b-df6d-4982-bce0-68b92319685d)
)
(junction (at 129.54 111.76) (diameter 0) (color 0 0 0 0)
(uuid 82fa3704-c056-4257-adbd-2c949f35c84c)
)
(junction (at 64.77 111.76) (diameter 0) (color 0 0 0 0)
(uuid 90ac36b1-5b40-4388-b382-522fbb122085)
)
(junction (at 200.66 111.76) (diameter 0) (color 0 0 0 0)
(uuid 91ea7acf-f32c-4608-afe1-293b85589e2a)
)
(junction (at 237.49 111.76) (diameter 0) (color 0 0 0 0)
(uuid 99fb22f4-0a1c-4024-a9e5-687a985d972d)
)
(junction (at 265.43 111.76) (diameter 0) (color 0 0 0 0)
(uuid b19f2452-7170-4d0e-9e07-ce50fdd69bff)
)
(junction (at 151.13 111.76) (diameter 0) (color 0 0 0 0)
(uuid b7d79694-6693-48f2-abe4-eced35ab469b)
)
(junction (at 86.36 111.76) (diameter 0) (color 0 0 0 0)
(uuid c581d54d-cf7c-40b2-8c5b-8c7743fd6b57)
)
(junction (at 135.89 111.76) (diameter 0) (color 0 0 0 0)
(uuid ce9cbc84-bed1-4826-b94f-22b9061d9fa8)
)
(junction (at 49.53 111.76) (diameter 0) (color 0 0 0 0)
(uuid cf44da9b-4f70-4616-b7f8-e62fb7d8dde7)
)
(junction (at 194.31 111.76) (diameter 0) (color 0 0 0 0)
(uuid cffd6457-0c8c-4681-a584-f2f7776fd5ad)
)
(junction (at 114.3 111.76) (diameter 0) (color 0 0 0 0)
(uuid d66aba20-f622-459e-9501-d2e31955a3ae)
)
(junction (at 36.83 102.87) (diameter 0) (color 0 0 0 0)
(uuid d6868101-34b8-4011-a3ef-76a4bd51d35f)
)
(no_connect (at 280.67 102.87) (uuid ddc82767-5ca2-437a-9ed5-18de54e8dd17))
(wire (pts (xy 194.31 111.76) (xy 194.31 107.95))
(stroke (width 0) (type default))
(uuid 08cf7c92-09b8-44fa-86dd-d3537e344369)
)
(wire (pts (xy 36.83 100.33) (xy 36.83 102.87))
(stroke (width 0) (type default))
(uuid 0d82f38a-de66-4031-af3e-94aaa8f5b64d)
)
(wire (pts (xy 129.54 111.76) (xy 129.54 107.95))
(stroke (width 0) (type default))
(uuid 1000595c-102c-42ef-ad86-749ad836547a)
)
(wire (pts (xy 151.13 111.76) (xy 146.05 111.76))
(stroke (width 0) (type default))
(uuid 14906c44-9da4-40c2-90dd-3f1a072b52e0)
)
(wire (pts (xy 43.18 102.87) (xy 36.83 102.87))
(stroke (width 0) (type default))
(uuid 170db000-c2ed-4668-85c6-999a2f93cad6)
)
(wire (pts (xy 135.89 111.76) (xy 140.97 111.76))
(stroke (width 0) (type default))
(uuid 1a4f302e-e55b-48e6-859c-474a661622df)
)
(wire (pts (xy 172.72 113.03) (xy 172.72 111.76))
(stroke (width 0) (type default))
(uuid 1b47337d-514b-405c-a385-2596815f7aa1)
)
(wire (pts (xy 49.53 107.95) (xy 49.53 111.76))
(stroke (width 0) (type default))
(uuid 2045bf31-d652-41c0-ab80-6aeae6a73de1)
)
(wire (pts (xy 157.48 111.76) (xy 162.56 111.76))
(stroke (width 0) (type default))
(uuid 256c2c4a-be75-489c-bc59-8ced96c0005c)
)
(wire (pts (xy 237.49 102.87) (xy 243.84 102.87))
(stroke (width 0) (type default))
(uuid 26588349-03e5-4661-8bcc-48324f6ab3c6)
)
(wire (pts (xy 114.3 111.76) (xy 119.38 111.76))
(stroke (width 0) (type default))
(uuid 2f1bb28c-b2f2-4528-90d5-f3fa2f4df4cc)
)
(wire (pts (xy 49.53 113.03) (xy 49.53 111.76))
(stroke (width 0) (type default))
(uuid 2ffd8eac-f9f7-49cb-9bcf-b57376c619d3)
)
(wire (pts (xy 36.83 92.075) (xy 36.83 95.25))
(stroke (width 0) (type default))
(uuid 33f64f22-7f52-4ec5-83e9-3091d9e531e9)
)
(wire (pts (xy 280.67 111.76) (xy 280.67 107.95))
(stroke (width 0) (type default))
(uuid 3adc35a1-0248-4e34-ab1a-d1564e7523b0)
)
(wire (pts (xy 259.08 111.76) (xy 254 111.76))
(stroke (width 0) (type default))
(uuid 440723b3-9d7b-4656-a182-10e163237bcd)
)
(wire (pts (xy 222.25 107.95) (xy 222.25 111.76))
(stroke (width 0) (type default))
(uuid 4e394768-409e-4152-bd60-8df2e5ccb604)
)
(wire (pts (xy 172.72 102.87) (xy 179.07 102.87))
(stroke (width 0) (type default))
(uuid 4f148315-3700-4e7b-a06a-ae5660efb9e0)
)
(wire (pts (xy 71.12 113.03) (xy 71.12 111.76))
(stroke (width 0) (type default))
(uuid 4f6bfb91-7e0a-4b8d-9918-082ff107cb6c)
)
(wire (pts (xy 86.36 102.87) (xy 92.71 102.87))
(stroke (width 0) (type default))
(uuid 4fc5d7cd-5d04-4202-8230-306e0995488a)
)
(wire (pts (xy 179.07 107.95) (xy 179.07 111.76))
(stroke (width 0) (type default))
(uuid 54ab0b34-1e3f-4eb3-a510-5abb0dcff712)
)
(wire (pts (xy 129.54 102.87) (xy 135.89 102.87))
(stroke (width 0) (type default))
(uuid 57cb5a36-31e5-429e-8806-2441289d832a)
)
(wire (pts (xy 194.31 111.76) (xy 189.23 111.76))
(stroke (width 0) (type default))
(uuid 5844ebd0-e2cc-489d-8d7d-f374b564899c)
)
(wire (pts (xy 243.84 107.95) (xy 243.84 111.76))
(stroke (width 0) (type default))
(uuid 5934a8ed-c841-4430-929c-24defd045a0c)
)
(wire (pts (xy 265.43 107.95) (xy 265.43 111.76))
(stroke (width 0) (type default))
(uuid 5ae74ffd-2314-47bb-8f30-b30bce0e17f9)
)
(wire (pts (xy 200.66 107.95) (xy 200.66 111.76))
(stroke (width 0) (type default))
(uuid 5b0a369b-31c5-4ba0-a377-677d61201602)
)
(wire (pts (xy 265.43 113.03) (xy 265.43 111.76))
(stroke (width 0) (type default))
(uuid 5dbda03c-5dd7-4893-aa1a-136f5b0d7ec4)
)
(wire (pts (xy 23.495 102.87) (xy 25.4 102.87))
(stroke (width 0) (type default))
(uuid 60b78d53-c34a-41d2-90d1-e244325bae16)
)
(wire (pts (xy 71.12 107.95) (xy 71.12 111.76))
(stroke (width 0) (type default))
(uuid 60cd2e30-21c0-4ac5-9b58-ac474c8f433d)
)
(wire (pts (xy 129.54 113.03) (xy 129.54 111.76))
(stroke (width 0) (type default))
(uuid 66ff1d1a-ce4f-4173-b800-47c5619674af)
)
(wire (pts (xy 179.07 113.03) (xy 179.07 111.76))
(stroke (width 0) (type default))
(uuid 677e3d29-cf79-4a63-b581-d8c6dde171ef)
)
(wire (pts (xy 194.31 113.03) (xy 194.31 111.76))
(stroke (width 0) (type default))
(uuid 6b280233-3d5d-410e-ab38-cb6190f81db7)
)
(wire (pts (xy 280.67 111.76) (xy 275.59 111.76))
(stroke (width 0) (type default))
(uuid 6d7244e6-83e0-4b8f-b030-d7ce1822f6e7)
)
(wire (pts (xy 179.07 111.76) (xy 184.15 111.76))
(stroke (width 0) (type default))
(uuid 6e5c0760-8d19-47f1-8096-d5835170ca7f)
)
(wire (pts (xy 30.48 93.98) (xy 30.48 95.25))
(stroke (width 0) (type default))
(uuid 6fc6f7d7-ebb4-4898-a6e9-892ee7e47fe9)
)
(wire (pts (xy 114.3 107.95) (xy 114.3 111.76))
(stroke (width 0) (type default))
(uuid 71f95b75-e2fe-4c3f-9ef1-d5eb32d7803b)
)
(wire (pts (xy 157.48 113.03) (xy 157.48 111.76))
(stroke (width 0) (type default))
(uuid 7358ce3a-0f70-4b1f-91c7-0b34e66c2d9f)
)
(wire (pts (xy 243.84 111.76) (xy 248.92 111.76))
(stroke (width 0) (type default))
(uuid 76aa0805-163f-4e57-8ae9-b3486d28fa78)
)
(wire (pts (xy 64.77 113.03) (xy 64.77 111.76))
(stroke (width 0) (type default))
(uuid 79df5477-462b-4144-a727-45c5733411cc)
)
(wire (pts (xy 151.13 102.87) (xy 157.48 102.87))
(stroke (width 0) (type default))
(uuid 7a043372-5726-4b93-a788-56b73ce97bf7)
)
(wire (pts (xy 86.36 113.03) (xy 86.36 111.76))
(stroke (width 0) (type default))
(uuid 7f898608-2897-44a5-a5e8-4a402858bae0)
)
(wire (pts (xy 194.31 102.87) (xy 200.66 102.87))
(stroke (width 0) (type default))
(uuid 7fdc00c6-6985-4210-a4b0-68bc4eaaf451)
)
(wire (pts (xy 259.08 102.87) (xy 265.43 102.87))
(stroke (width 0) (type default))
(uuid 83201266-d168-4afd-9bc3-b137c1b1aae7)
)
(wire (pts (xy 259.08 111.76) (xy 259.08 107.95))
(stroke (width 0) (type default))
(uuid 84e20c7b-fc58-4dd2-8f27-af326a749ade)
)
(wire (pts (xy 259.08 113.03) (xy 259.08 111.76))
(stroke (width 0) (type default))
(uuid 8bd9f60a-3b04-4f6e-ab24-7b5573e590d6)
)
(wire (pts (xy 135.89 107.95) (xy 135.89 111.76))
(stroke (width 0) (type default))
(uuid 9359181f-8ec9-4ff1-a5e7-a684dbef226a)
)
(wire (pts (xy 237.49 111.76) (xy 232.41 111.76))
(stroke (width 0) (type default))
(uuid 95f6c4f0-2131-4a77-85b2-ee8cc48ef165)
)
(wire (pts (xy 22.225 102.87) (xy 23.495 102.87))
(stroke (width 0) (type default))
(uuid 9c563d15-6875-43c7-a7d3-cbbccd439b74)
)
(wire (pts (xy 71.12 111.76) (xy 76.2 111.76))
(stroke (width 0) (type default))
(uuid a5c14325-a24b-4779-bfc4-4361b9f068dc)
)
(wire (pts (xy 237.49 111.76) (xy 237.49 107.95))
(stroke (width 0) (type default))
(uuid a8c8493a-353d-437b-95c0-c0dac891c3f4)
)
(wire (pts (xy 64.77 111.76) (xy 64.77 107.95))
(stroke (width 0) (type default))
(uuid ac57375c-96ba-4a58-81f9-7d72a731a525)
)
(wire (pts (xy 157.48 107.95) (xy 157.48 111.76))
(stroke (width 0) (type default))
(uuid ac58d217-7773-40c4-9e1b-a9e653b34666)
)
(wire (pts (xy 114.3 113.03) (xy 114.3 111.76))
(stroke (width 0) (type default))
(uuid b1873c77-da7a-4c4c-8039-51752bc76e96)
)
(wire (pts (xy 64.77 102.87) (xy 71.12 102.87))
(stroke (width 0) (type default))
(uuid b442d82e-6f54-4b60-91b2-594e3e68853c)
)
(wire (pts (xy 92.71 107.95) (xy 92.71 111.76))
(stroke (width 0) (type default))
(uuid b7037f07-258d-4e3e-bb0e-c06c7573c60f)
)
(wire (pts (xy 107.95 113.03) (xy 107.95 111.76))
(stroke (width 0) (type default))
(uuid b83ffd21-1363-4248-8b15-4a76a3869473)
)
(wire (pts (xy 23.495 92.71) (xy 23.495 93.98))
(stroke (width 0) (type default))
(uuid ba4fe6e6-028c-40d4-b506-4fa24d28d877)
)
(wire (pts (xy 215.9 111.76) (xy 210.82 111.76))
(stroke (width 0) (type default))
(uuid ba63e1f5-0ade-47a1-8479-8a2b2af0fce3)
)
(wire (pts (xy 215.9 113.03) (xy 215.9 111.76))
(stroke (width 0) (type default))
(uuid bb805efe-06a2-40c6-bab5-ff1104d53e72)
)
(wire (pts (xy 129.54 111.76) (xy 124.46 111.76))
(stroke (width 0) (type default))
(uuid bdfc6fe2-adda-4ed2-aa61-48410488ef03)
)
(wire (pts (xy 30.48 93.98) (xy 23.495 93.98))
(stroke (width 0) (type default))
(uuid c0513bf3-cf8f-4868-a200-0b0cf7fe09d0)
)
(wire (pts (xy 172.72 111.76) (xy 167.64 111.76))
(stroke (width 0) (type default))
(uuid c0db1db7-1180-4219-a4e4-ee199bf3404b)
)
(wire (pts (xy 265.43 111.76) (xy 270.51 111.76))
(stroke (width 0) (type default))
(uuid c1399b3c-8fee-4f58-9174-bc076c3c0ef1)
)
(wire (pts (xy 215.9 102.87) (xy 222.25 102.87))
(stroke (width 0) (type default))
(uuid c2d35aa9-4978-43ed-ab79-25f367f9e7e6)
)
(wire (pts (xy 107.95 111.76) (xy 102.87 111.76))
(stroke (width 0) (type default))
(uuid c3376e67-1d85-4d0d-a7bc-cd1055ef0a87)
)
(wire (pts (xy 92.71 111.76) (xy 97.79 111.76))
(stroke (width 0) (type default))
(uuid cb814373-465f-4690-b40d-fd1b8eec97e8)
)
(wire (pts (xy 23.495 93.98) (xy 23.495 95.25))
(stroke (width 0) (type default))
(uuid cc16419b-c7cc-4c05-b036-174bb3fb9cca)
)
(wire (pts (xy 215.9 111.76) (xy 215.9 107.95))
(stroke (width 0) (type default))
(uuid cdd1bbb5-1435-445e-9486-0ca9c28ea9af)
)
(wire (pts (xy 49.53 111.76) (xy 54.61 111.76))
(stroke (width 0) (type default))
(uuid cdde276d-2174-4bbb-97ef-70569b180589)
)
(wire (pts (xy 107.95 102.87) (xy 114.3 102.87))
(stroke (width 0) (type default))
(uuid cf2bf9d3-69a5-4c3c-a1e7-100397a0f6d0)
)
(wire (pts (xy 92.71 113.03) (xy 92.71 111.76))
(stroke (width 0) (type default))
(uuid d0cad310-112f-4655-9c8c-147b7cf29e53)
)
(wire (pts (xy 86.36 111.76) (xy 86.36 107.95))
(stroke (width 0) (type default))
(uuid d3430e8c-2ea4-4515-8fa8-86f13f9d3c0d)
)
(wire (pts (xy 222.25 113.03) (xy 222.25 111.76))
(stroke (width 0) (type default))
(uuid d38607e5-ac4e-4d27-b41b-f038330c8036)
)
(wire (pts (xy 64.77 111.76) (xy 59.69 111.76))
(stroke (width 0) (type default))
(uuid d76bf487-cf6a-470f-9995-5ba35bbe193f)
)
(wire (pts (xy 243.84 113.03) (xy 243.84 111.76))
(stroke (width 0) (type default))
(uuid d7734e70-6b32-4e7b-b691-5f2c2985ab41)
)
(wire (pts (xy 23.495 100.33) (xy 23.495 102.87))
(stroke (width 0) (type default))
(uuid d7e9b111-5f90-45b5-a23b-fb41a825cb27)
)
(wire (pts (xy 237.49 113.03) (xy 237.49 111.76))
(stroke (width 0) (type default))
(uuid da2c1694-77ec-488c-bd4a-4a14b1f3235e)
)
(wire (pts (xy 151.13 111.76) (xy 151.13 107.95))
(stroke (width 0) (type default))
(uuid dd2cd9bf-7694-44a8-85d8-4dbff992a832)
)
(wire (pts (xy 107.95 111.76) (xy 107.95 107.95))
(stroke (width 0) (type default))
(uuid de2ab9ba-6f54-4c21-844e-e2bf8e65c851)
)
(wire (pts (xy 280.67 113.03) (xy 280.67 111.76))
(stroke (width 0) (type default))
(uuid dfbed6a2-2278-427b-abf6-3eace3a16fde)
)
(wire (pts (xy 200.66 113.03) (xy 200.66 111.76))
(stroke (width 0) (type default))
(uuid e15dbd82-92e0-4f2b-8b78-a1bce3181419)
)
(wire (pts (xy 200.66 111.76) (xy 205.74 111.76))
(stroke (width 0) (type default))
(uuid e244ddad-ecd4-4800-aafa-632525a6ea97)
)
(wire (pts (xy 151.13 113.03) (xy 151.13 111.76))
(stroke (width 0) (type default))
(uuid e2cab06d-330c-43ef-be63-765628ae014b)
)
(wire (pts (xy 222.25 111.76) (xy 227.33 111.76))
(stroke (width 0) (type default))
(uuid e43ada38-823c-4057-9638-de98d798a67a)
)
(wire (pts (xy 86.36 111.76) (xy 81.28 111.76))
(stroke (width 0) (type default))
(uuid e44e6949-05de-46b0-a909-f3c7c57c430e)
)
(wire (pts (xy 135.89 113.03) (xy 135.89 111.76))
(stroke (width 0) (type default))
(uuid e4703cf2-0569-4599-9f63-0116d8c6d7c9)
)
(wire (pts (xy 49.53 102.87) (xy 48.26 102.87))
(stroke (width 0) (type default))
(uuid f16db639-8da7-4bd1-9292-bdaacf2162e4)
)
(wire (pts (xy 35.56 102.87) (xy 36.83 102.87))
(stroke (width 0) (type default))
(uuid f30d6c15-8382-469a-85ba-8900b71a2a42)
)
(wire (pts (xy 172.72 111.76) (xy 172.72 107.95))
(stroke (width 0) (type default))
(uuid fb2b9bb3-dd8a-47e7-9079-c44acf221b9b)
)
(hierarchical_label "SK6812" (shape input) (at 22.225 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f3812e41-8068-4e37-9227-390e7deb0cec)
)
(symbol (lib_id "power:GND") (at 129.54 113.03 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 04a5aac8-1112-4901-a179-bdd873a14cdf)
(property "Reference" "#PWR0137" (at 129.54 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 129.54 116.84 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 129.54 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f36ee92b-76f3-4c2c-9c28-c672d2a50006))
(instances
(project "voc-tally-light"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/29f91e05-7235-453b-b506-b2ff48cdb0a7"
(reference "#PWR0137") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 35.56 125.73 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0aeeb7d1-a318-4cda-9d65-80ecee75c2f1)
(property "Reference" "#PWR0159" (at 35.56 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 35.56 129.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 35.56 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 35.56 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3a4e9d84-e621-405e-bf48-0de9b9426348))
(instances
(project "voc-tally-light"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/29f91e05-7235-453b-b506-b2ff48cdb0a7"
(reference "#PWR0159") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 151.13 113.03 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1480ff78-1065-4ada-8576-1faef4ebddcf)
(property "Reference" "#PWR0152" (at 151.13 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 151.13 116.84 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 151.13 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 151.13 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e386e96e-e765-4abe-967c-ff55e1e2d912))
(instances
(project "voc-tally-light"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/29f91e05-7235-453b-b506-b2ff48cdb0a7"
(reference "#PWR0152") (unit 1)
)
)
)
)
(symbol (lib_id "otter:+5V") (at 265.43 113.03 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 17d9c322-56fd-44fb-b005-6d7e898e0354)
(property "Reference" "#PWR0140" (at 265.43 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 265.43 116.84 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 265.43 113.03 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (at 265.43 113.03 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 500c5047-3126-4251-be64-da20ccc196fa))
(instances
(project "voc-tally-light"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/29f91e05-7235-453b-b506-b2ff48cdb0a7"
(reference "#PWR0140") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 143.51 111.76 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1d83d804-94c4-46b6-97cb-3e9e58c79eeb)
(property "Reference" "C16" (at 143.5036 115.57 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100n" (at 143.5036 118.11 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "otter:C_0402" (at 143.51 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 143.51 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f3cebecc-ae27-4a56-afb3-a14e0589362e))
(pin "2" (uuid a8cc94f9-306b-4292-bef6-1272c309b1c4))
(instances
(project "voc-tally-light"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/29f91e05-7235-453b-b506-b2ff48cdb0a7"
(reference "C16") (unit 1)
)
)
)
)
(symbol (lib_id "otter:+5V") (at 114.3 113.03 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1e61ff8c-9c90-4cce-96bd-220de447a685)
(property "Reference" "#PWR0133" (at 114.3 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 114.3 116.84 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 114.3 113.03 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (at 114.3 113.03 0)
(effects (font (size 1.524 1.524)))
)