-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathultim_bus.net
1113 lines (1113 loc) · 34.8 KB
/
ultim_bus.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/samata/projects-git/ultim8x8/kicad/ultim_bus_v4/ultim_bus.sch)
(date "Wed Jun 14 20:18:31 2017")
(tool "Eeschema 4.0.6-e0-6349~53~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "ULTiM8x8 Bus Board")
(company "Maniacal Labs & WyoLum")
(rev 4.0)
(date 2017-06-14)
(source ultim_bus.sch)
(comment (number 1) (value "connect three ULTiM8x8 panels + one Feather M0 + six switches"))
(comment (number 2) (value ""))
(comment (number 3) (value www.wyolum.com))
(comment (number 4) (value www.maniacallabs.com)))))
(components
(comp (ref P1)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5F93F))
(comp (ref P2)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5FA4D))
(comp (ref P3)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5FA73))
(comp (ref P4)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5FA9C))
(comp (ref P5)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5FAC8))
(comp (ref P6)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C5FAF7))
(comp (ref P7)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C60213))
(comp (ref P8)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C60219))
(comp (ref P9)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6021F))
(comp (ref P10)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C60225))
(comp (ref P11)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6022B))
(comp (ref P12)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C60231))
(comp (ref P14)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B68F))
(comp (ref P15)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B695))
(comp (ref P16)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B69B))
(comp (ref P17)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6A1))
(comp (ref P18)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6A7))
(comp (ref P19)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6AD))
(comp (ref P20)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6BE))
(comp (ref P21)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6C4))
(comp (ref P22)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6CA))
(comp (ref P23)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6D0))
(comp (ref P24)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6D6))
(comp (ref P25)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6B6DC))
(comp (ref P27)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BA98))
(comp (ref P28)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BA9E))
(comp (ref P29)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAA4))
(comp (ref P30)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAAA))
(comp (ref P31)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAB0))
(comp (ref P32)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAB6))
(comp (ref P33)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAC7))
(comp (ref P34)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BACD))
(comp (ref P35)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAD3))
(comp (ref P36)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAD9))
(comp (ref P37)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BADF))
(comp (ref P38)
(value CONN_1)
(footprint ultim_bus:Screw)
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6BAE5))
(comp (ref P40)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED2D))
(comp (ref P41)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED33))
(comp (ref P42)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED39))
(comp (ref P43)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED3F))
(comp (ref P44)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED45))
(comp (ref P45)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED4B))
(comp (ref P46)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED5C))
(comp (ref P47)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED62))
(comp (ref P48)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED68))
(comp (ref P49)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED6E))
(comp (ref P50)
(value CONN_1)
(footprint ultim_bus:Screw)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED74))
(comp (ref P51)
(value CONN_1)
(footprint ultim_bus:Screw_SqPad)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 56C6ED7A))
(comp (ref M2)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 56C79A4E))
(comp (ref M6)
(value MouseBite)
(footprint ultim_bus:mouse-bite-2.54mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 56C79CD4))
(comp (ref M9)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 56C7A031))
(comp (ref M13)
(value MouseBite)
(footprint ultim_bus:mouse-bite-2.54mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 56C7A051))
(comp (ref M16)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 56C7A069))
(comp (ref JP1)
(value PWR_SEL)
(footprint ultim_bus:switch_spdt)
(libsource (lib ultim_bus) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 58E11449))
(comp (ref v1)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E205F2))
(comp (ref v2)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E21D7E))
(comp (ref v3)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E21F83))
(comp (ref v4)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E21F9A))
(comp (ref v5)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E223A1))
(comp (ref v6)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E223B8))
(comp (ref v7)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E223CF))
(comp (ref v8)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E223E6))
(comp (ref v9)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E22DA9))
(comp (ref v10)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E22DC0))
(comp (ref v11)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E22DD7))
(comp (ref v12)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58E22DEE))
(comp (ref M3)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 58E2924C))
(comp (ref M4)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 58E29254))
(comp (ref M10)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 58E29844))
(comp (ref M11)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 58E2984C))
(comp (ref M17)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 58E29EEC))
(comp (ref M18)
(value MouseBite)
(footprint ultim_bus:mouse-bite-5.08mm-slot)
(fields
(field (name manf#) Value))
(libsource (lib ultim_bus) (part Mouse_Bite))
(sheetpath (names /) (tstamps /))
(tstamp 58E29EF4))
(comp (ref S1)
(value SPST-M-2)
(footprint ultim_bus:SW-PB)
(libsource (lib ultim_bus) (part SPST-M-2))
(sheetpath (names /) (tstamps /))
(tstamp 58E2F144))
(comp (ref H1)
(value Feather_M0)
(footprint ultim_bus:FEATHER_M0_2)
(libsource (lib ultim_bus) (part FeatherM0))
(sheetpath (names /) (tstamps /))
(tstamp 58E305D1))
(comp (ref S2)
(value SPST-M-2)
(footprint ultim_bus:SW-PB)
(libsource (lib ultim_bus) (part SPST-M-2))
(sheetpath (names /) (tstamps /))
(tstamp 58E217C7))
(comp (ref S3)
(value SPST-M-2)
(footprint ultim_bus:SW-PB)
(libsource (lib ultim_bus) (part SPST-M-2))
(sheetpath (names /) (tstamps /))
(tstamp 58E221A3))
(comp (ref S4)
(value SPST-M-2)
(footprint ultim_bus:SW-PB)
(libsource (lib ultim_bus) (part SPST-M-2))
(sheetpath (names /) (tstamps /))
(tstamp 58E222DA))
(comp (ref S5)
(value SPST-M-2)
(footprint ultim_bus:SW-PB)
(libsource (lib ultim_bus) (part SPST-M-2))
(sheetpath (names /) (tstamps /))
(tstamp 58E224D0))
(comp (ref S6)
(value SPST-M-2)
(footprint ultim_bus:SW-PB)
(libsource (lib ultim_bus) (part SPST-M-2))
(sheetpath (names /) (tstamps /))
(tstamp 58E226CB))
(comp (ref R1)
(value 10k)
(footprint ultim_bus:r_0805)
(libsource (lib ultim_bus) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E22B6D))
(comp (ref R2)
(value 10k)
(footprint ultim_bus:r_0805)
(libsource (lib ultim_bus) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E232A6))
(comp (ref R3)
(value 10k)
(footprint ultim_bus:r_0805)
(libsource (lib ultim_bus) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E233EC))
(comp (ref R4)
(value 10k)
(footprint ultim_bus:r_0805)
(libsource (lib ultim_bus) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E2365E))
(comp (ref R5)
(value 10k)
(footprint ultim_bus:r_0805)
(libsource (lib ultim_bus) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E237AA))
(comp (ref R6)
(value 10k)
(footprint ultim_bus:r_0805)
(libsource (lib ultim_bus) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E2395E))
(comp (ref L2)
(value OSHW)
(footprint ultim_bus:OSHW_6mm)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part OSHW))
(sheetpath (names /) (tstamps /))
(tstamp 58E2609A))
(comp (ref L1)
(value OSHW)
(footprint ultim_bus:OSHW_6mm)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part OSHW))
(sheetpath (names /) (tstamps /))
(tstamp 58E27240))
(comp (ref L8)
(value LOGO_ML)
(footprint ultim_bus:logo_MLlabs_small)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part LOGO_ML))
(sheetpath (names /) (tstamps /))
(tstamp 58E2BEC1))
(comp (ref L7)
(value LOGO_ML)
(footprint ultim_bus:logo_MLlabs_small)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part LOGO_ML))
(sheetpath (names /) (tstamps /))
(tstamp 58E2C259))
(comp (ref L3)
(value LOGO_WL)
(footprint ultim_bus:logo_wyo_butterfly_small)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part LOGO_WL))
(sheetpath (names /) (tstamps /))
(tstamp 58E2C9FB))
(comp (ref L4)
(value LOGO_WL)
(footprint ultim_bus:logo_wyo_butterfly_small)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part LOGO_WL))
(sheetpath (names /) (tstamps /))
(tstamp 58E2CAD7))
(comp (ref L12)
(value LOGO_U88)
(footprint ultim_bus:logo_ultim8x8_small)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part LOGO_U88))
(sheetpath (names /) (tstamps /))
(tstamp 58E2CBB3))
(comp (ref L11)
(value LOGO_U88)
(footprint ultim_bus:logo_ultim8x8_small)
(fields
(field (name manf#) mfr_pn))
(libsource (lib ultim_bus) (part LOGO_U88))
(sheetpath (names /) (tstamps /))
(tstamp 58E2CC8F))
(comp (ref v13)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58EA7A8E))
(comp (ref v14)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58EA7BF5))
(comp (ref v15)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58EA7DB8))
(comp (ref v16)
(value via_0.8x9)
(footprint ultim_bus:via_0.8x9)
(libsource (lib ultim_bus) (part via_0.8x9))
(sheetpath (names /) (tstamps /))
(tstamp 58EA7F21))
(comp (ref C1)
(value "470uF 10V")
(footprint ultim_bus:cap_pol_rad3)
(libsource (lib ultim_bus) (part C_POL_1))
(sheetpath (names /) (tstamps /))
(tstamp 590E51F0)))
(libparts
(libpart (lib ultim_bus) (part CONN_1)
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib ultim_bus) (part C_POL_1)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C_POL_1))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib ultim_bus) (part FeatherM0)
(fields
(field (name Reference) U)
(field (name Value) FeatherM0))
(pins
(pin (num 1) (name SDA) (type passive))
(pin (num 2) (name SCL) (type passive))
(pin (num 3) (name 5~~) (type passive))
(pin (num 4) (name 6) (type passive))
(pin (num 5) (name 9~~) (type passive))
(pin (num 6) (name 10~~) (type passive))
(pin (num 7) (name 11~~) (type passive))
(pin (num 8) (name 12) (type passive))
(pin (num 9) (name 13) (type passive))
(pin (num 10) (name USB) (type passive))
(pin (num 11) (name En) (type passive))
(pin (num 12) (name BAT) (type passive))
(pin (num 13) (name RST) (type passive))
(pin (num 14) (name 3V) (type passive))
(pin (num 15) (name Aref) (type passive))
(pin (num 16) (name GND) (type passive))
(pin (num 17) (name A0) (type passive))
(pin (num 18) (name A1) (type passive))
(pin (num 19) (name A2) (type passive))
(pin (num 20) (name A3) (type passive))
(pin (num 21) (name A4) (type passive))
(pin (num 22) (name A5) (type passive))
(pin (num 23) (name SCK) (type passive))
(pin (num 24) (name MOSI) (type passive))
(pin (num 25) (name MISO) (type passive))
(pin (num 26) (name RX0) (type passive))
(pin (num 27) (name TX1) (type passive))
(pin (num 28) (name GND) (type passive))))
(libpart (lib ultim_bus) (part JUMPER3)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER3))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib ultim_bus) (part LOGO_ML)
(fields
(field (name Reference) "#G")
(field (name Value) LOGO_ML)))
(libpart (lib ultim_bus) (part LOGO_U88)
(fields
(field (name Reference) "#G")
(field (name Value) LOGO_U88)))
(libpart (lib ultim_bus) (part LOGO_WL)
(fields
(field (name Reference) "#G")
(field (name Value) LOGO_WL)))
(libpart (lib ultim_bus) (part Mouse_Bite)
(fields
(field (name Reference) P)
(field (name Value) Mouse_Bite)))
(libpart (lib ultim_bus) (part OSHW)
(fields
(field (name Reference) "#G")
(field (name Value) OSHW)))
(libpart (lib ultim_bus) (part R_Small)
(footprints
(fp Resistor_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib ultim_bus) (part SPST-M-2)
(fields
(field (name Reference) S)
(field (name Value) SPST-M-2))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib ultim_bus) (part via_0.8x9)
(fields
(field (name Reference) v)
(field (name Value) via_0.8x9))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))
(pin (num 3) (name 3) (type input))
(pin (num 4) (name 4) (type input))
(pin (num 5) (name 5) (type input))
(pin (num 6) (name 6) (type input))
(pin (num 7) (name 7) (type input))
(pin (num 8) (name 8) (type input))
(pin (num 9) (name 9) (type input)))))
(libraries
(library (logical ultim_bus)
(uri /home/samata/projects-git/ultim8x8/kicad/ultim_bus_v4/ultimbus_libs/ultim_bus.lib)))
(nets
(net (code 1) (name "Net-(H1-Pad1)")
(node (ref H1) (pin 1)))
(net (code 2) (name "Net-(H1-Pad2)")
(node (ref H1) (pin 2)))
(net (code 3) (name "Net-(H1-Pad3)")
(node (ref H1) (pin 3)))
(net (code 4) (name "Net-(H1-Pad4)")
(node (ref H1) (pin 4)))
(net (code 5) (name /DAT2)
(node (ref v12) (pin 5))
(node (ref v12) (pin 6))
(node (ref v12) (pin 7))
(node (ref v12) (pin 8))
(node (ref v12) (pin 9))
(node (ref P29) (pin 1))
(node (ref P30) (pin 1))
(node (ref P31) (pin 1))
(node (ref P32) (pin 1))
(node (ref v12) (pin 3))
(node (ref v12) (pin 4))
(node (ref v12) (pin 1))
(node (ref v12) (pin 2)))
(net (code 6) (name "Net-(H1-Pad5)")
(node (ref H1) (pin 5)))
(net (code 7) (name /A2)
(node (ref R3) (pin 1))
(node (ref H1) (pin 19))
(node (ref S3) (pin 1)))
(net (code 8) (name "Net-(H1-Pad6)")
(node (ref H1) (pin 6)))
(net (code 9) (name "Net-(H1-Pad7)")
(node (ref H1) (pin 7)))
(net (code 10) (name "Net-(H1-Pad8)")
(node (ref H1) (pin 8)))
(net (code 11) (name "Net-(H1-Pad9)")
(node (ref H1) (pin 9)))
(net (code 12) (name /A3)
(node (ref H1) (pin 20))
(node (ref R4) (pin 1))
(node (ref S4) (pin 1)))
(net (code 13) (name "Net-(H1-Pad11)")
(node (ref H1) (pin 11)))
(net (code 14) (name /A4)
(node (ref S5) (pin 1))
(node (ref H1) (pin 21))
(node (ref R5) (pin 1)))
(net (code 15) (name /A5)
(node (ref R6) (pin 1))
(node (ref S6) (pin 1))
(node (ref H1) (pin 22)))
(net (code 16) (name "Net-(H1-Pad13)")
(node (ref H1) (pin 13)))
(net (code 17) (name "Net-(H1-Pad14)")
(node (ref H1) (pin 14)))
(net (code 18) (name "Net-(H1-Pad15)")
(node (ref H1) (pin 15)))
(net (code 19) (name "Net-(H1-Pad25)")
(node (ref H1) (pin 25)))
(net (code 20) (name "Net-(H1-Pad26)")
(node (ref H1) (pin 26)))
(net (code 21) (name /A0)
(node (ref S1) (pin 1))
(node (ref R1) (pin 1))
(node (ref H1) (pin 17)))
(net (code 22) (name "Net-(H1-Pad27)")
(node (ref H1) (pin 27)))
(net (code 23) (name /A1)
(node (ref S2) (pin 1))
(node (ref H1) (pin 18))
(node (ref R2) (pin 1)))
(net (code 24) (name "Net-(H1-Pad28)")
(node (ref H1) (pin 28)))
(net (code 25) (name /CLK2)
(node (ref v9) (pin 5))
(node (ref v9) (pin 4))
(node (ref v9) (pin 7))
(node (ref v9) (pin 9))
(node (ref v9) (pin 8))
(node (ref v9) (pin 2))
(node (ref v9) (pin 6))
(node (ref v9) (pin 3))
(node (ref v9) (pin 1))
(node (ref P19) (pin 1))
(node (ref P18) (pin 1))
(node (ref P17) (pin 1))
(node (ref P16) (pin 1)))
(net (code 26) (name /DAT)
(node (ref v16) (pin 2))
(node (ref v16) (pin 1))
(node (ref v16) (pin 3))
(node (ref P37) (pin 1))
(node (ref P28) (pin 1))
(node (ref P27) (pin 1))
(node (ref P38) (pin 1))
(node (ref v16) (pin 9))
(node (ref v16) (pin 8))
(node (ref v16) (pin 7))
(node (ref v16) (pin 6))
(node (ref v16) (pin 5))
(node (ref v16) (pin 4))
(node (ref v10) (pin 9))
(node (ref v10) (pin 8))
(node (ref v10) (pin 7))
(node (ref v10) (pin 6))
(node (ref v10) (pin 5))
(node (ref H1) (pin 24))
(node (ref v10) (pin 1))
(node (ref v10) (pin 4))
(node (ref v10) (pin 3))
(node (ref v10) (pin 2)))
(net (code 27) (name /CLK1)
(node (ref v8) (pin 1))
(node (ref P23) (pin 1))
(node (ref P22) (pin 1))
(node (ref P21) (pin 1))
(node (ref P20) (pin 1))
(node (ref v8) (pin 3))
(node (ref v8) (pin 9))
(node (ref v8) (pin 8))
(node (ref v8) (pin 7))
(node (ref v8) (pin 6))
(node (ref v8) (pin 5))
(node (ref v8) (pin 2))
(node (ref v8) (pin 4)))
(net (code 28) (name /DAT1)
(node (ref v11) (pin 3))
(node (ref v11) (pin 1))
(node (ref v11) (pin 9))
(node (ref v11) (pin 8))
(node (ref v11) (pin 7))
(node (ref P36) (pin 1))
(node (ref v11) (pin 6))
(node (ref v11) (pin 5))
(node (ref v11) (pin 4))
(node (ref v11) (pin 2))
(node (ref P35) (pin 1))
(node (ref P34) (pin 1))
(node (ref P33) (pin 1)))
(net (code 29) (name /VBAT)
(node (ref H1) (pin 12))
(node (ref JP1) (pin 1)))
(net (code 30) (name /VUSB)
(node (ref H1) (pin 10))
(node (ref JP1) (pin 3)))
(net (code 31) (name /5V)
(node (ref v3) (pin 2))
(node (ref P1) (pin 1))
(node (ref v3) (pin 9))
(node (ref v3) (pin 8))
(node (ref v3) (pin 7))
(node (ref v3) (pin 6))
(node (ref v3) (pin 5))
(node (ref v3) (pin 4))
(node (ref v3) (pin 3))
(node (ref v1) (pin 8))
(node (ref P11) (pin 1))
(node (ref P2) (pin 1))
(node (ref P3) (pin 1))
(node (ref P4) (pin 1))
(node (ref P5) (pin 1))
(node (ref P6) (pin 1))
(node (ref P7) (pin 1))
(node (ref P8) (pin 1))
(node (ref P9) (pin 1))
(node (ref P10) (pin 1))
(node (ref v2) (pin 8))
(node (ref v2) (pin 9))
(node (ref v2) (pin 2))
(node (ref v1) (pin 1))