-
Notifications
You must be signed in to change notification settings - Fork 6
/
helix.net
1298 lines (1298 loc) · 41.8 KB
/
helix.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 C:/Users/pluis/Documents/SS/Projects/helix/helix.sch)
(date "2018/01/08 11:11:14")
(tool "Eeschema 4.0.1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Helix beta")
(company)
(rev v0.2)
(date 2017-11-5)
(source helix.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ProMicro)
(footprint MYLIB:ProMicro_rev)
(libsource (lib MYDEVICE) (part ProMicro))
(sheetpath (names /) (tstamps /))
(tstamp 5986A7F2))
(comp (ref SW1)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986AC91))
(comp (ref D1)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986ACFA))
(comp (ref SW2)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986AE30))
(comp (ref D2)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986AE36))
(comp (ref SW3)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986B47E))
(comp (ref D3)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986B484))
(comp (ref SW4)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986B48A))
(comp (ref D4)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986B490))
(comp (ref SW5)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986BAB7))
(comp (ref D5)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986BABD))
(comp (ref SW6)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986BAC3))
(comp (ref D6)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986BAC9))
(comp (ref SW7)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C660))
(comp (ref D7)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C666))
(comp (ref SW8)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C66C))
(comp (ref D8)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C672))
(comp (ref SW9)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C678))
(comp (ref D9)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C67E))
(comp (ref SW10)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C684))
(comp (ref D10)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C68A))
(comp (ref SW11)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C690))
(comp (ref D11)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C696))
(comp (ref SW12)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C69C))
(comp (ref D12)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C6A2))
(comp (ref SW13)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C966))
(comp (ref D13)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C96C))
(comp (ref SW14)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C972))
(comp (ref D14)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C978))
(comp (ref SW15)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C97E))
(comp (ref D15)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C984))
(comp (ref SW16)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C98A))
(comp (ref D16)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C990))
(comp (ref SW17)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C996))
(comp (ref D17)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C99C))
(comp (ref SW18)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9A2))
(comp (ref D18)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9A8))
(comp (ref SW19)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9AE))
(comp (ref D19)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9B4))
(comp (ref SW20)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9BA))
(comp (ref D20)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9C0))
(comp (ref SW21)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9C6))
(comp (ref D21)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9CC))
(comp (ref SW22)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9D2))
(comp (ref D22)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9D8))
(comp (ref SW23)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9DE))
(comp (ref D23)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9E4))
(comp (ref SW24)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9EA))
(comp (ref D24)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5986C9F0))
(comp (ref R2)
(value R)
(footprint MYLIB:R2)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5987250A))
(comp (ref SW33)
(value Reset)
(footprint MYLIB:SW_3.5x6.0_TH)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59875EC2))
(comp (ref P5)
(value ICSP)
(footprint MYLIB:MY_SIL-2x3)
(libsource (lib conn) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 59876046))
(comp (ref R1)
(value R)
(footprint MYLIB:R2)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59889F5A))
(comp (ref P3)
(value OLED)
(footprint MYLIB:MY_SIL-4)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 598B49C2))
(comp (ref P4)
(value LED)
(footprint MYLIB_REV:StripLED_rev)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 598DBE0E))
(comp (ref SW26)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D894))
(comp (ref D26)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D89A))
(comp (ref SW27)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8A0))
(comp (ref D27)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8A6))
(comp (ref SW28)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8AC))
(comp (ref D28)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8B2))
(comp (ref SW29)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8B8))
(comp (ref D29)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8BE))
(comp (ref SW30)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8C4))
(comp (ref D30)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8CA))
(comp (ref SW31)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8D0))
(comp (ref D31)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 59B8D8D6))
(comp (ref J1)
(value MJ-4PP-9)
(footprint MYLIB_REV:MJ-4PP-9_rev2)
(libsource (lib MYDEVICE) (part MJ-4PP-9))
(sheetpath (names /) (tstamps /))
(tstamp 59FDED6F))
(comp (ref P1)
(value CONN_01X01)
(footprint MYLIB:1PIN_0.1)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59FFEBF9))
(comp (ref P2)
(value CONN_01X01)
(footprint MYLIB:1PIN_0.1)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5A004496))
(comp (ref JP4)
(value GND)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A032534))
(comp (ref JP5)
(value VCC)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A035264))
(comp (ref JP6)
(value SCL)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A0354C4))
(comp (ref JP7)
(value SDA)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A035690))
(comp (ref JP8)
(value SDA)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A039B49))
(comp (ref JP9)
(value SCL)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A039B4F))
(comp (ref JP10)
(value VCC)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A039B55))
(comp (ref JP11)
(value GND)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A039B5B))
(comp (ref SW25)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5A04BA4A))
(comp (ref SW32)
(value SW_PUSH)
(footprint MYLIB_REV:MX_ALPS_PG1350_noLed)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5A04C914))
(comp (ref D25)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A04CB0D))
(comp (ref D32)
(value D)
(footprint MYLIB:D3_TH_SMD)
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A04CD15))
(comp (ref U7)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A064873))
(comp (ref U6)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07118D))
(comp (ref U5)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A0752EE))
(comp (ref U4)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A0760EE))
(comp (ref U3)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A077EEE))
(comp (ref U2)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07921E))
(comp (ref U13)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07AF8D))
(comp (ref U12)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07AF93))
(comp (ref U11)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07AF99))
(comp (ref U10)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07AF9F))
(comp (ref U9)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07AFA5))
(comp (ref U8)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A07AFAB))
(comp (ref U19)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3C2))
(comp (ref U18)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3C8))
(comp (ref U17)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3CE))
(comp (ref U16)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3D4))
(comp (ref U15)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3DA))
(comp (ref U14)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3E0))
(comp (ref U25)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3E6))
(comp (ref U24)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3EC))
(comp (ref U23)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3F2))
(comp (ref U22)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3F8))
(comp (ref U21)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A3FE))
(comp (ref U20)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08A404))
(comp (ref U26)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08D047))
(comp (ref U32)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08E7B9))
(comp (ref U31)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08E7BF))
(comp (ref U30)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08E7C5))
(comp (ref U29)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08E7CB))
(comp (ref U28)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08E7D1))
(comp (ref U27)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08E7D7))
(comp (ref U33)
(value SK6812mini)
(footprint MYLIB_REV:SK6812MINI_rev)
(libsource (lib MYDEVICE) (part SK6812mini))
(sheetpath (names /) (tstamps /))
(tstamp 5A08EAF5))
(comp (ref JP2)
(value JP2)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A0D4629))
(comp (ref JP3)
(value JP2)
(footprint MYLIB:Jumper)
(libsource (lib MYDEVICE) (part JP2))
(sheetpath (names /) (tstamps /))
(tstamp 5A0D7DF3))
(comp (ref JP1)
(value JPC2)
(footprint MYLIB:JPC2)
(libsource (lib MYDEVICE) (part JPC2))
(sheetpath (names /) (tstamps /))
(tstamp 59FE491D)))
(libparts
(libpart (lib conn) (part CONN_01X01)
(description "Connector 01x01")
(footprints
(fp Pin_Header_Straight_1X01)
(fp Pin_Header_Angled_1X01)
(fp Socket_Strip_Straight_1X01)
(fp Socket_Strip_Angled_1X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_01X04)
(description "Connector 01x04")
(footprints
(fp Pin_Header_Straight_1X04)
(fp Pin_Header_Angled_1X04)
(fp Socket_Strip_Straight_1X04)
(fp Socket_Strip_Angled_1X04))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X04))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))))
(libpart (lib conn) (part CONN_01X06)
(description "Connector 01x06")
(footprints
(fp Pin_Header_Straight_1X06)
(fp Pin_Header_Angled_1X06)
(fp Socket_Strip_Straight_1X06)
(fp Socket_Strip_Angled_1X06))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X06))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp Diode_*)
(fp D-Pak_TO252AA)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib MYDEVICE) (part JP2)
(fields
(field (name Reference) J)
(field (name Value) JP2))
(pins
(pin (num 1) (name G1) (type passive))
(pin (num 2) (name G2) (type passive))))
(libpart (lib MYDEVICE) (part JPC2)
(fields
(field (name Reference) JP)
(field (name Value) JPC2))
(pins
(pin (num 1) (name G1) (type passive))
(pin (num 2) (name G2) (type passive))))
(libpart (lib MYDEVICE) (part MJ-4PP-9)
(fields
(field (name Reference) J)
(field (name Value) MJ-4PP-9))
(pins
(pin (num A) (name ~) (type passive))
(pin (num B) (name ~) (type passive))
(pin (num C) (name ~) (type passive))
(pin (num D) (name ~) (type passive))))
(libpart (lib MYDEVICE) (part ProMicro)
(fields
(field (name Reference) U)
(field (name Value) ProMicro))
(pins
(pin (num 1) (name "TXO(PD3)") (type passive))
(pin (num 2) (name "RXI(PD2)") (type passive))
(pin (num 3) (name GND) (type passive))
(pin (num 4) (name GND) (type passive))
(pin (num 5) (name "D2(PD1)") (type passive))
(pin (num 6) (name "D3(PD0)") (type passive))
(pin (num 7) (name "D4(PD4)") (type passive))
(pin (num 8) (name "D5(PC6)") (type passive))
(pin (num 9) (name "D6(PD7)") (type passive))
(pin (num 10) (name "D7(PE6)") (type passive))
(pin (num 11) (name "D8(PB4)") (type passive))
(pin (num 12) (name "D9(PB5)") (type passive))
(pin (num 13) (name "D10(PB6)") (type passive))
(pin (num 14) (name "MOSI(PB2)") (type passive))
(pin (num 15) (name "MISO(PB3)") (type passive))
(pin (num 16) (name "SCK(PB1)") (type passive))
(pin (num 17) (name "A0(PF7)") (type passive))
(pin (num 18) (name "A1(PF6)") (type passive))
(pin (num 19) (name "A2(PF5)") (type passive))
(pin (num 20) (name "A3(PF4)") (type passive))
(pin (num 21) (name VCC) (type passive))
(pin (num 22) (name RESET) (type passive))
(pin (num 23) (name GND) (type passive))
(pin (num 24) (name RAW) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib MYDEVICE) (part SK6812mini)
(fields
(field (name Reference) U)
(field (name Value) SK6812mini))
(pins
(pin (num 1) (name DOUT) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name DIN) (type passive))
(pin (num 4) (name VDD) (type passive))))
(libpart (lib device) (part SW_PUSH)
(description Button)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive)))))
(libraries
(library (logical conn)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib"))
(library (logical MYDEVICE)
(uri "C:\\Users\\pluis\\Documents\\Magic Briefcase\\Documents\\KiCad\\ライブラリ\\MYDEVICE.lib"))
(library (logical device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib")))
(nets
(net (code 1) (name data)
(node (ref U1) (pin 2))
(node (ref JP1) (pin 1)))
(net (code 2) (name col3)
(node (ref SW16) (pin 1))
(node (ref SW22) (pin 1))
(node (ref SW10) (pin 1))
(node (ref SW4) (pin 1))
(node (ref U1) (pin 17))
(node (ref SW29) (pin 1)))
(net (code 3) (name "Net-(U21-Pad1)")
(node (ref U22) (pin 3))
(node (ref U21) (pin 1)))
(net (code 4) (name "Net-(U20-Pad1)")
(node (ref U21) (pin 3))
(node (ref U20) (pin 1)))
(net (code 5) (name "Net-(U31-Pad3)")
(node (ref U31) (pin 3))
(node (ref U32) (pin 1)))
(net (code 6) (name "Net-(U30-Pad3)")
(node (ref U30) (pin 3))
(node (ref U31) (pin 1)))
(net (code 7) (name "Net-(U29-Pad3)")
(node (ref U29) (pin 3))
(node (ref U30) (pin 1)))
(net (code 8) (name "Net-(U14-Pad1)")
(node (ref U20) (pin 3))
(node (ref U14) (pin 1)))
(net (code 9) (name "Net-(U24-Pad1)")
(node (ref U24) (pin 1))
(node (ref U25) (pin 3)))
(net (code 10) (name "Net-(U23-Pad1)")
(node (ref U23) (pin 1))
(node (ref U24) (pin 3)))
(net (code 11) (name "Net-(U22-Pad1)")
(node (ref U23) (pin 3))
(node (ref U22) (pin 1)))
(net (code 12) (name "Net-(JP2-Pad2)")
(node (ref U26) (pin 3))
(node (ref JP2) (pin 2))
(node (ref JP3) (pin 2))
(node (ref U25) (pin 1)))
(net (code 13) (name "Net-(U27-Pad1)")
(node (ref U27) (pin 1)))
(net (code 14) (name "Net-(U28-Pad3)")
(node (ref U28) (pin 3))
(node (ref U29) (pin 1)))
(net (code 15) (name "Net-(U27-Pad3)")
(node (ref U28) (pin 1))
(node (ref U27) (pin 3)))
(net (code 16) (name "Net-(JP2-Pad1)")
(node (ref U32) (pin 3))
(node (ref JP2) (pin 1))
(node (ref U33) (pin 1)))
(net (code 17) (name "Net-(JP3-Pad1)")
(node (ref U26) (pin 1))
(node (ref U33) (pin 3))
(node (ref JP3) (pin 1)))
(net (code 18) (name "Net-(J1-PadA)")
(node (ref P2) (pin 1))
(node (ref J1) (pin A)))
(net (code 19) (name /ex1)
(node (ref U1) (pin 12)))
(net (code 20) (name /ex2)
(node (ref U1) (pin 13)))
(net (code 21) (name "Net-(U3-Pad3)")
(node (ref U3) (pin 3))
(node (ref U4) (pin 1)))
(net (code 22) (name "Net-(U6-Pad3)")
(node (ref U7) (pin 1))
(node (ref U6) (pin 3)))
(net (code 23) (name "Net-(U5-Pad3)")
(node (ref U6) (pin 1))
(node (ref U5) (pin 3)))
(net (code 24) (name "Net-(U4-Pad3)")
(node (ref U5) (pin 1))
(node (ref U4) (pin 3)))
(net (code 25) (name "Net-(U2-Pad3)")
(node (ref U3) (pin 1))
(node (ref U2) (pin 3)))
(net (code 26) (name "Net-(U8-Pad1)")
(node (ref U9) (pin 3))
(node (ref U8) (pin 1)))
(net (code 27) (name "Net-(U10-Pad3)")
(node (ref U9) (pin 1))
(node (ref U10) (pin 3)))
(net (code 28) (name "Net-(U10-Pad1)")
(node (ref U10) (pin 1))
(node (ref U11) (pin 3)))
(net (code 29) (name "Net-(U11-Pad1)")
(node (ref U12) (pin 3))
(node (ref U11) (pin 1)))
(net (code 30) (name "Net-(JP4-Pad2)")
(node (ref JP8) (pin 2))
(node (ref P3) (pin 1))
(node (ref JP4) (pin 2)))
(net (code 31) (name "Net-(JP5-Pad2)")
(node (ref JP9) (pin 2))
(node (ref P3) (pin 2))
(node (ref JP5) (pin 2)))
(net (code 32) (name "Net-(U12-Pad1)")
(node (ref U13) (pin 3))
(node (ref U12) (pin 1)))
(net (code 33) (name "Net-(JP10-Pad2)")
(node (ref P3) (pin 3))
(node (ref JP10) (pin 2))
(node (ref JP6) (pin 2)))
(net (code 34) (name "Net-(JP11-Pad2)")
(node (ref JP11) (pin 2))
(node (ref P3) (pin 4))
(node (ref JP7) (pin 2)))
(net (code 35) (name "Net-(U14-Pad3)")
(node (ref U14) (pin 3))
(node (ref U15) (pin 1)))
(net (code 36) (name "Net-(U13-Pad1)")
(node (ref U13) (pin 1))
(node (ref U19) (pin 3)))
(net (code 37) (name "Net-(U18-Pad3)")
(node (ref U18) (pin 3))
(node (ref U19) (pin 1)))