-
Notifications
You must be signed in to change notification settings - Fork 4
/
ultim8x8.net
executable file
·1373 lines (1373 loc) · 46.6 KB
/
ultim8x8.net
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
(export (version D)
(design
(source /home/anool/projects-git/ultim8x8/kicad/ultim8x8.sch)
(date "Wed Feb 24 14:45:48 2016")
(tool "Eeschema 4.0.2-4+6225~38~ubuntu15.04.1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company "WyoLum + Maniacal Labs")
(rev rev1)
(date 2016-02-18)
(source ultim8x8.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Row_H/) (tstamps /5117961B/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_H.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Row_G/) (tstamps /5117954B/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_G.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /Row_F/) (tstamps /511794A8/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_F.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /Row_E/) (tstamps /51179413/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_E.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /Row_D/) (tstamps /51179344/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_D.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /Row_C/) (tstamps /51179283/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_C.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /Row_B/) (tstamps /51178F3E/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_B.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name /Row_A/) (tstamps /511688A7/)
(title_block
(title "ULTiM8x8 - Ultimate LED panel, using APA102")
(company WyoLum)
(rev rev3)
(date 2016-02-18)
(source Row_A.sch)
(comment (number 1) (value "www.wyolum.com : www.maniacallabs.com"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref L2)
(value OSHW)
(footprint ultim8x8_libs:OSHW_6mm)
(libsource (lib ultim8x8_sym) (part LOGO_1))
(sheetpath (names /) (tstamps /))
(tstamp 511CD9F8))
(comp (ref L3)
(value Wyolum)
(footprint ultim8x8_libs:logo_wyo_butterfly)
(libsource (lib ultim8x8_sym) (part LOGO_1))
(sheetpath (names /) (tstamps /))
(tstamp 511CD9F5))
(comp (ref P1)
(value Input1)
(footprint ultim8x8_libs:header_3pos_smd_male)
(fields
(field (name Field4) "CONN HEADER 50POS .100\" SGL GOLD")
(field (name Field5) "Header, Unshrouded, Male pin,")
(field (name Field6) 0.1"))
(libsource (lib ultim8x8_sym) (part CONN_3))
(sheetpath (names /) (tstamps /))
(tstamp 56C0E218))
(comp (ref P2)
(value Output1)
(footprint ultim8x8_libs:header_3pos_smd_male)
(fields
(field (name Field4) "CONN HEADER 50POS .100\" SGL GOLD")
(field (name Field5) "Header, Unshrouded, Male pin,")
(field (name Field6) 0.1"))
(libsource (lib ultim8x8_sym) (part CONN_3))
(sheetpath (names /) (tstamps /))
(tstamp 56C0F3D8))
(comp (ref P5)
(value Input2)
(footprint ultim8x8_libs:header_3pos_smd_male)
(fields
(field (name Field4) "CONN HEADER 50POS .100\" SGL GOLD")
(field (name Field5) "Header, Unshrouded, Male pin,")
(field (name Field6) 0.1"))
(libsource (lib ultim8x8_sym) (part CONN_3))
(sheetpath (names /) (tstamps /))
(tstamp 56C10A4A))
(comp (ref P6)
(value Output2)
(footprint ultim8x8_libs:header_3pos_smd_male)
(fields
(field (name Field4) "CONN HEADER 50POS .100\" SGL GOLD")
(field (name Field5) "Header, Unshrouded, Male pin,")
(field (name Field6) 0.1"))
(libsource (lib ultim8x8_sym) (part CONN_3))
(sheetpath (names /) (tstamps /))
(tstamp 56C121A8))
(comp (ref P3)
(value 5V)
(footprint ultim8x8_libs:PowerIn_stud)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C23A5D))
(comp (ref P4)
(value GND)
(footprint ultim8x8_libs:PowerIn_stud)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C2406F))
(comp (ref L4)
(value "Maniacal Labs")
(footprint ultim8x8_libs:logo_MLlabs)
(libsource (lib ultim8x8_sym) (part LOGO_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C3209A))
(comp (ref L1)
(value ULTiM8x8)
(footprint ultim8x8_libs:logo_ultim8x8)
(libsource (lib ultim8x8_sym) (part LOGO_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5F837))
(comp (ref U57)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 5118ABBB))
(comp (ref C3)
(value 100nF)
(footprint ultim8x8_libs:c_0805)
(fields
(field (name manf#) Value)
(field (name Field4) "CAP CER 0.1UF 25V 10% X7R 0805")
(field (name Field5) "100nF, 25V")
(field (name Field6) "Surface Mount, MLCC")
(field (name Field7) Kemet)
(field (name Field8) C0805C104K3RACTU)
(field (name Field9) Digikey)
(field (name Field10) 399-1168-1-ND)
(field (name Field11) http://www.digikey.com/product-detail/en/C0805C104K3RACTU/399-1168-1-ND/411443))
(libsource (lib ultim8x8_sym) (part C2))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 51168961))
(comp (ref C4)
(value "47uF 20V")
(footprint ultim8x8_libs:c_2917)
(fields
(field (name manf#) Value)
(field (name Field4) "CAP ALUM 47UF 8V 20% SMD")
(field (name Field5) 47u,8V)
(field (name Field6) "2917 (7343 Metric)")
(field (name Field7) "Panasonic Electronic Components")
(field (name Field8) EEF-CD0K470R)
(field (name Field9) Digikey)
(field (name Field10) PCE3606CT-ND)
(field (name Field11) http://www.digikey.com/product-detail/en/EEF-CD0K470R/PCE3606CT-ND/614442))
(libsource (lib ultim8x8_sym) (part C_POL_1))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 5118AB61))
(comp (ref U58)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C06E0E))
(comp (ref U59)
(value APA102)
(footprint ultim8x8_libs:APA102_U59)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C06E52))
(comp (ref U60)
(value APA102)
(footprint ultim8x8_libs:APA102_U60)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C06F1D))
(comp (ref U61)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C06FBB))
(comp (ref U62)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C07772))
(comp (ref U63)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C077C2))
(comp (ref U64)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_H/) (tstamps /5117961B/))
(tstamp 56C07914))
(comp (ref U49)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D372))
(comp (ref U50)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D39D))
(comp (ref U51)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D3A5))
(comp (ref U52)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D3AD))
(comp (ref U53)
(value APA102)
(footprint ultim8x8_libs:APA102_U53)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D3B5))
(comp (ref U54)
(value APA102)
(footprint ultim8x8_libs:APA102_U54)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D3BD))
(comp (ref U55)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D3C5))
(comp (ref U56)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_G/) (tstamps /5117954B/))
(tstamp 56C1D3CD))
(comp (ref U41)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21E5C))
(comp (ref U42)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21E87))
(comp (ref U43)
(value APA102)
(footprint ultim8x8_libs:APA102_U43)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21E8F))
(comp (ref U44)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21E97))
(comp (ref U45)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21E9F))
(comp (ref U46)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21EA7))
(comp (ref U47)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21EAF))
(comp (ref U48)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_F/) (tstamps /511794A8/))
(tstamp 56C21EB7))
(comp (ref U33)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FAA))
(comp (ref U34)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FD5))
(comp (ref U35)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FDD))
(comp (ref U36)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FE5))
(comp (ref U37)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FED))
(comp (ref U38)
(value APA102)
(footprint ultim8x8_libs:APA102_U38)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FF5))
(comp (ref U39)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C24FFD))
(comp (ref U40)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_E/) (tstamps /51179413/))
(tstamp 56C25005))
(comp (ref U25)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C2744C))
(comp (ref U26)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C27477))
(comp (ref U27)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C2747F))
(comp (ref U28)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C27487))
(comp (ref U29)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C2748F))
(comp (ref U30)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C27497))
(comp (ref U31)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C2749F))
(comp (ref U32)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_D/) (tstamps /51179344/))
(tstamp 56C274A7))
(comp (ref U17)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296A0))
(comp (ref U18)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296CB))
(comp (ref U19)
(value APA102)
(footprint ultim8x8_libs:APA102_U19)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296D3))
(comp (ref U20)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296DB))
(comp (ref U21)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296E3))
(comp (ref U22)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296EB))
(comp (ref U23)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296F3))
(comp (ref U24)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_C/) (tstamps /51179283/))
(tstamp 56C296FB))
(comp (ref U09)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B784))
(comp (ref U10)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7AF))
(comp (ref U11)
(value APA102)
(footprint ultim8x8_libs:APA102_U11)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7B7))
(comp (ref U12)
(value APA102)
(footprint ultim8x8_libs:APA102_U12)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7BF))
(comp (ref U13)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7C7))
(comp (ref U14)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7CF))
(comp (ref U15)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7D7))
(comp (ref U16)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_B/) (tstamps /51178F3E/))
(tstamp 56C2B7DF))
(comp (ref C1)
(value 100nF)
(footprint ultim8x8_libs:c_0805)
(fields
(field (name Field4) "CAP CER 0.1UF 25V 10% X7R 0805")
(field (name Field5) "100nF, 25V")
(field (name Field6) "Surface Mount, MLCC")
(field (name Field7) Kemet)
(field (name Field8) C0805C104K3RACTU)
(field (name Field9) Digikey)
(field (name Field10) 399-1168-1-ND)
(field (name Field11) http://www.digikey.com/product-detail/en/C0805C104K3RACTU/399-1168-1-ND/411443))
(libsource (lib ultim8x8_sym) (part C2))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 5118AB57))
(comp (ref C2)
(value "47uF 20V")
(footprint ultim8x8_libs:c_2917)
(fields
(field (name manf#) Value)
(field (name Field4) "CAP ALUM 47UF 8V 20% SMD")
(field (name Field5) 47u,8V)
(field (name Field6) "2917 (7343 Metric)")
(field (name Field7) "Panasonic Electronic Components")
(field (name Field8) EEF-CD0K470R)
(field (name Field9) Digikey)
(field (name Field10) PCE3606CT-ND)
(field (name Field11) http://www.digikey.com/product-detail/en/EEF-CD0K470R/PCE3606CT-ND/614442))
(libsource (lib ultim8x8_sym) (part C_POL_1))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 5118AB5E))
(comp (ref U01)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E1C1))
(comp (ref U02)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E1EC))
(comp (ref U03)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E1F4))
(comp (ref U04)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E1FC))
(comp (ref U05)
(value APA102)
(footprint ultim8x8_libs:APA102_U05)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E204))
(comp (ref U06)
(value APA102)
(footprint ultim8x8_libs:APA102_U06)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E20C))
(comp (ref U07)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E214))
(comp (ref U08)
(value APA102)
(footprint ultim8x8_libs:APA102)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim8x8_sym) (part APA102))
(sheetpath (names /Row_A/) (tstamps /511688A7/))
(tstamp 56C2E21C)))
(libparts
(libpart (lib ultim8x8_sym) (part APA102)
(fields
(field (name Reference) U)
(field (name Value) APA102))
(pins
(pin (num 1) (name DI) (type input))
(pin (num 2) (name CI) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name CO) (type output))
(pin (num 6) (name DO) (type output))))
(libpart (lib ultim8x8_sym) (part C2)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C2)
(field (name Field4) "CAP CER 0.1UF 25V 10% X7R 0805")
(field (name Field5) "100nF, 25V")
(field (name Field6) "Surface Mount, MLCC")
(field (name Field7) Kemet)
(field (name Field8) C0805C104K3RACTU)
(field (name Field9) Digikey)
(field (name Field10) 399-1168-1-ND)
(field (name Field11) http://www.digikey.com/product-detail/en/C0805C104K3RACTU/399-1168-1-ND/411443))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib ultim8x8_sym) (part CONN_1)
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib ultim8x8_sym) (part CONN_3)
(fields
(field (name Reference) P)
(field (name Value) CONN_3)
(field (name Field4) "CONN HEADER 50POS .100\" SGL GOLD")
(field (name Field5) "Header, Unshrouded, Male pin,")
(field (name Field6) 0.1"))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib ultim8x8_sym) (part C_POL_1)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C_POL_1)
(field (name Field4) "CAP ALUM 47UF 8V 20% SMD")
(field (name Field5) 47u,8V)
(field (name Field6) "2917 (7343 Metric)")
(field (name Field7) "Panasonic Electronic Components")
(field (name Field8) EEF-CD0K470R)
(field (name Field9) Digikey)
(field (name Field10) PCE3606CT-ND)
(field (name Field11) http://www.digikey.com/product-detail/en/EEF-CD0K470R/PCE3606CT-ND/614442))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib ultim8x8_sym) (part LOGO_1)
(fields
(field (name Reference) P)
(field (name Value) LOGO_1))))
(libraries
(library (logical ultim8x8_sym)
(uri /home/anool/projects-git/ultim8x8/kicad/ultim8x8_libs/ultim8x8_sym.lib)))
(nets
(net (code 1) (name /Row_D/CI_E)
(node (ref U32) (pin 5))
(node (ref U33) (pin 2)))
(net (code 2) (name /Row_G/CI_H)
(node (ref U57) (pin 2))
(node (ref U56) (pin 5)))
(net (code 3) (name /Row_F/DI_G)
(node (ref U49) (pin 1))
(node (ref U48) (pin 6)))
(net (code 4) (name /Row_A/5V)
(node (ref U32) (pin 4))
(node (ref U35) (pin 4))
(node (ref U31) (pin 4))
(node (ref C1) (pin 2))
(node (ref U11) (pin 4))
(node (ref U06) (pin 4))
(node (ref U62) (pin 4))
(node (ref U05) (pin 4))
(node (ref U07) (pin 4))
(node (ref C3) (pin 2))
(node (ref U61) (pin 4))
(node (ref U02) (pin 4))
(node (ref U25) (pin 4))
(node (ref U57) (pin 4))
(node (ref U19) (pin 4))
(node (ref C2) (pin 1))
(node (ref U34) (pin 4))
(node (ref U60) (pin 4))
(node (ref U01) (pin 4))
(node (ref U59) (pin 4))
(node (ref U58) (pin 4))
(node (ref U63) (pin 4))
(node (ref U51) (pin 4))
(node (ref U14) (pin 4))
(node (ref U09) (pin 4))
(node (ref U13) (pin 4))
(node (ref U08) (pin 4))
(node (ref U49) (pin 4))
(node (ref U16) (pin 4))
(node (ref U15) (pin 4))
(node (ref U56) (pin 4))
(node (ref U12) (pin 4))
(node (ref U55) (pin 4))
(node (ref U50) (pin 4))
(node (ref U53) (pin 4))
(node (ref U28) (pin 4))
(node (ref U54) (pin 4))
(node (ref U10) (pin 4))
(node (ref U52) (pin 4))
(node (ref U30) (pin 4))
(node (ref U29) (pin 4))
(node (ref U43) (pin 4))
(node (ref U24) (pin 4))
(node (ref U45) (pin 4))
(node (ref U42) (pin 4))
(node (ref U21) (pin 4))
(node (ref U03) (pin 4))
(node (ref U20) (pin 4))
(node (ref P3) (pin 1))
(node (ref U46) (pin 4))
(node (ref U17) (pin 4))
(node (ref U64) (pin 4))
(node (ref U44) (pin 4))
(node (ref U18) (pin 4))
(node (ref U47) (pin 4))
(node (ref U41) (pin 4))
(node (ref U23) (pin 4))
(node (ref U48) (pin 4))
(node (ref U27) (pin 4))
(node (ref C4) (pin 1))
(node (ref U04) (pin 4))
(node (ref U26) (pin 4))
(node (ref U33) (pin 4))
(node (ref U22) (pin 4))
(node (ref U36) (pin 4))
(node (ref U38) (pin 4))
(node (ref U40) (pin 4))
(node (ref U37) (pin 4))
(node (ref U39) (pin 4)))
(net (code 5) (name /Row_F/CI_G)
(node (ref U48) (pin 5))
(node (ref U49) (pin 2)))
(net (code 6) (name /Row_E/DI_F)
(node (ref U41) (pin 1))
(node (ref U40) (pin 6)))
(net (code 7) (name /Row_E/CI_F)
(node (ref U41) (pin 2))
(node (ref U40) (pin 5)))
(net (code 8) (name /Row_D/DI_E)
(node (ref U32) (pin 6))
(node (ref U33) (pin 1)))
(net (code 9) (name /Row_B/DI_C)
(node (ref U17) (pin 1))
(node (ref U16) (pin 6)))
(net (code 10) (name /Row_B/CI_C)
(node (ref U17) (pin 2))
(node (ref U16) (pin 5)))
(net (code 11) (name /Row_A/CI_B)
(node (ref U09) (pin 2))
(node (ref U08) (pin 5)))
(net (code 12) (name /Row_C/CI_D)
(node (ref U24) (pin 5))
(node (ref U25) (pin 2)))
(net (code 13) (name /Row_A/DI_B)
(node (ref U09) (pin 1))
(node (ref U08) (pin 6)))
(net (code 14) (name /Row_A/DI_A)
(node (ref P5) (pin 1))
(node (ref P1) (pin 1))
(node (ref U01) (pin 1)))
(net (code 15) (name /Row_A/CI_A)
(node (ref U01) (pin 2))
(node (ref P1) (pin 2))
(node (ref P5) (pin 2)))
(net (code 16) (name /Row_G/DI_H)
(node (ref U57) (pin 1))
(node (ref U56) (pin 6)))
(net (code 17) (name /Row_H/CO_H)
(node (ref P2) (pin 2))
(node (ref U64) (pin 5))
(node (ref P6) (pin 2)))
(net (code 18) (name GND)
(node (ref U58) (pin 3))
(node (ref U33) (pin 3))
(node (ref U64) (pin 3))
(node (ref U35) (pin 3))
(node (ref U61) (pin 3))
(node (ref U34) (pin 3))
(node (ref U60) (pin 3))
(node (ref U59) (pin 3))
(node (ref U57) (pin 3))
(node (ref U63) (pin 3))
(node (ref U62) (pin 3))
(node (ref C3) (pin 1))
(node (ref C4) (pin 2))
(node (ref U40) (pin 3))
(node (ref U39) (pin 3))
(node (ref U36) (pin 3))
(node (ref U37) (pin 3))
(node (ref U38) (pin 3))
(node (ref U54) (pin 3))
(node (ref U53) (pin 3))
(node (ref U52) (pin 3))
(node (ref U48) (pin 3))
(node (ref U41) (pin 3))
(node (ref U44) (pin 3))
(node (ref U45) (pin 3))
(node (ref U55) (pin 3))
(node (ref U42) (pin 3))
(node (ref U43) (pin 3))
(node (ref U46) (pin 3))
(node (ref U47) (pin 3))
(node (ref U49) (pin 3))
(node (ref U56) (pin 3))
(node (ref U50) (pin 3))
(node (ref U51) (pin 3))
(node (ref U22) (pin 3))
(node (ref U14) (pin 3))
(node (ref U21) (pin 3))
(node (ref U08) (pin 3))
(node (ref U07) (pin 3))
(node (ref U20) (pin 3))
(node (ref U06) (pin 3))
(node (ref U24) (pin 3))
(node (ref U29) (pin 3))