-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHangul.net
1015 lines (1015 loc) · 32.3 KB
/
Hangul.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 /Users/gimseung-gwon/Documents/KiCAD/Hangul/Hangul.sch)
(date "2017년 05월 21일 일요일 AM 02:02:16")
(tool "Eeschema 4.0.5")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Hangul.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref P3)
(value DS1302)
(footprint Pin_Headers:Pin_Header_Straight_1x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 5900CC4D))
(comp (ref P1)
(value NANO_1)
(footprint Pin_Headers:Pin_Header_Straight_1x15_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X15))
(sheetpath (names /) (tstamps /))
(tstamp 5900CF21))
(comp (ref P2)
(value NANO_2)
(footprint Pin_Headers:Pin_Header_Straight_1x15_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X15))
(sheetpath (names /) (tstamps /))
(tstamp 5900D029))
(comp (ref SW1)
(value SW_R)
(footprint NEWFOOTPRINT:SW_PUSH-12mmBCU)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5900E6D0))
(comp (ref SW2)
(value SW_G)
(footprint NEWFOOTPRINT:SW_PUSH-12mmBCU)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5900E7FB))
(comp (ref SW3)
(value SW_B)
(footprint NEWFOOTPRINT:SW_PUSH-12mmBCU)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5900E906))
(comp (ref R1)
(value R)
(footprint NEWFOOTPRINT:R_0805BCU)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5900F063))
(comp (ref R2)
(value R)
(footprint NEWFOOTPRINT:R_0805BCU)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5900F396))
(comp (ref R3)
(value R)
(footprint NEWFOOTPRINT:R_0805BCU)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5900F4AD))
(comp (ref U1)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901B388))
(comp (ref C1)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901B3D8))
(comp (ref U8)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901BB85))
(comp (ref C8)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901BB8B))
(comp (ref U14)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901BE47))
(comp (ref C15)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901BE4D))
(comp (ref U20)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901BEDF))
(comp (ref C21)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901BEE5))
(comp (ref U26)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901BEEB))
(comp (ref C27)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901BEF1))
(comp (ref U32)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901BF5D))
(comp (ref C33)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901BF63))
(comp (ref U9)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C079))
(comp (ref C9)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C07F))
(comp (ref U15)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C085))
(comp (ref C16)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C08B))
(comp (ref U21)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C091))
(comp (ref C22)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C097))
(comp (ref U27)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C09D))
(comp (ref C28)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C0A3))
(comp (ref U33)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C0A9))
(comp (ref C34)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C0AF))
(comp (ref U10)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2A1))
(comp (ref C10)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2A7))
(comp (ref U16)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2AD))
(comp (ref C17)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2B3))
(comp (ref U22)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2B9))
(comp (ref C23)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2BF))
(comp (ref U28)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2C5))
(comp (ref C29)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2CB))
(comp (ref U34)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2D1))
(comp (ref C35)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2D7))
(comp (ref U11)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2DD))
(comp (ref C11)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2E3))
(comp (ref U17)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2E9))
(comp (ref C18)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2EF))
(comp (ref U23)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2F5))
(comp (ref C24)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C2FB))
(comp (ref U29)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C301))
(comp (ref C30)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C307))
(comp (ref U35)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901C30D))
(comp (ref C36)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901C313))
(comp (ref U12)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB2F))
(comp (ref C12)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB35))
(comp (ref U18)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB3B))
(comp (ref C19)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB41))
(comp (ref U24)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB47))
(comp (ref C25)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB4D))
(comp (ref U30)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB53))
(comp (ref C31)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB59))
(comp (ref U36)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB5F))
(comp (ref C37)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB65))
(comp (ref U13)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB6B))
(comp (ref C13)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB71))
(comp (ref U19)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB77))
(comp (ref C20)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB7D))
(comp (ref U25)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB83))
(comp (ref C26)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB89))
(comp (ref U31)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB8F))
(comp (ref C32)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB95))
(comp (ref U37)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DB9B))
(comp (ref C38)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DBA1))
(comp (ref U2)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD1B))
(comp (ref C2)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD21))
(comp (ref U3)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD27))
(comp (ref C3)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD2D))
(comp (ref U4)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD33))
(comp (ref C4)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD39))
(comp (ref U5)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD3F))
(comp (ref C5)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD45))
(comp (ref U6)
(value WS2812B)
(footprint LEDs:LED_WS2812B-PLCC4)
(libsource (lib ws2812) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD4B))
(comp (ref C6)
(value C)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5901DD51))
(comp (ref P5)
(value POWER)
(footprint Pin_Headers:Pin_Header_Straight_1x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 5901B7D8))
(comp (ref P4)
(value CONN_01X03)
(footprint CON-MOLEX:MOLEX-5045-03A)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 591001A5))
(comp (ref P6)
(value S)
(footprint Connectors:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59101AAA))
(comp (ref P7)
(value S)
(footprint Connectors:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59101B8E))
(comp (ref P8)
(value S)
(footprint Connectors:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59101C4F))
(comp (ref P9)
(value S)
(footprint Connectors:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59101D11))
(comp (ref P10)
(value s)
(footprint Connectors:1pin)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5910305B)))
(libparts
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X01)
(description "Connector, single row, 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, single row, 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_01X05)
(description "Connector, single row, 01x05")
(footprints
(fp Pin_Header_Straight_1X05)
(fp Pin_Header_Angled_1X05)
(fp Socket_Strip_Straight_1X05)
(fp Socket_Strip_Angled_1X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X05))
(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))))
(libpart (lib conn) (part CONN_01X15)
(description "Connector, single row, 01x15")
(footprints
(fp Pin_Header_Straight_1X15)
(fp Pin_Header_Angled_1X15)
(fp Socket_Strip_Straight_1X15)
(fp Socket_Strip_Angled_1X15))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X15))
(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))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (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 switches) (part SW_Push)
(description "Push button switch, generic, two pins")
(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))))
(libpart (lib ws2812) (part WS2812B)
(fields
(field (name Reference) U)
(field (name Value) WS2812B))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name DOUT) (type output))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name DIN) (type input)))))
(libraries
(library (logical conn)
(uri "/Library/Application Support/kicad/library/conn.lib"))
(library (logical switches)
(uri "/Library/Application Support/kicad/library/switches.lib"))
(library (logical device)
(uri "/Library/Application Support/kicad/library/device.lib"))
(library (logical ws2812)
(uri /Users/gimseung-gwon/Documents/KiCAD/library/ws2812.lib)))
(nets
(net (code 1) (name "Net-(U1-Pad2)")
(node (ref U1) (pin 2))
(node (ref U8) (pin 4)))
(net (code 2) (name "Net-(U14-Pad4)")
(node (ref U8) (pin 2))
(node (ref U14) (pin 4)))
(net (code 3) (name "Net-(U14-Pad2)")
(node (ref U14) (pin 2))
(node (ref U20) (pin 4)))
(net (code 4) (name "Net-(U20-Pad2)")
(node (ref U26) (pin 4))
(node (ref U20) (pin 2)))
(net (code 5) (name "Net-(U26-Pad2)")
(node (ref U26) (pin 2))
(node (ref U32) (pin 4)))
(net (code 6) (name "Net-(U2-Pad4)")
(node (ref U32) (pin 2))
(node (ref U2) (pin 4)))
(net (code 7) (name "Net-(U2-Pad2)")
(node (ref U2) (pin 2))
(node (ref U9) (pin 4)))
(net (code 8) (name "Net-(U15-Pad4)")
(node (ref U9) (pin 2))
(node (ref U15) (pin 4)))
(net (code 9) (name "Net-(U15-Pad2)")
(node (ref U15) (pin 2))
(node (ref U21) (pin 4)))
(net (code 10) (name "Net-(U21-Pad2)")
(node (ref U27) (pin 4))
(node (ref U21) (pin 2)))
(net (code 11) (name "Net-(U27-Pad2)")
(node (ref U27) (pin 2))
(node (ref U33) (pin 4)))
(net (code 12) (name "Net-(U3-Pad4)")
(node (ref U3) (pin 4))
(node (ref U33) (pin 2)))
(net (code 13) (name "Net-(U12-Pad4)")
(node (ref U5) (pin 2))
(node (ref U12) (pin 4)))
(net (code 14) (name "Net-(U13-Pad4)")
(node (ref U6) (pin 2))
(node (ref U13) (pin 4)))
(net (code 15) (name +5VA)
(node (ref C19) (pin 2))
(node (ref U3) (pin 1))
(node (ref C2) (pin 2))
(node (ref U2) (pin 1))
(node (ref C38) (pin 2))
(node (ref U30) (pin 1))
(node (ref C25) (pin 2))
(node (ref U24) (pin 1))
(node (ref P4) (pin 1))
(node (ref U18) (pin 1))
(node (ref C12) (pin 2))
(node (ref P5) (pin 5))
(node (ref U27) (pin 1))
(node (ref C22) (pin 2))
(node (ref U29) (pin 1))
(node (ref C24) (pin 2))
(node (ref U21) (pin 1))
(node (ref U16) (pin 1))
(node (ref C10) (pin 2))
(node (ref C16) (pin 2))
(node (ref U15) (pin 1))
(node (ref U10) (pin 1))
(node (ref C34) (pin 2))
(node (ref C9) (pin 2))
(node (ref C37) (pin 2))
(node (ref U33) (pin 1))
(node (ref C28) (pin 2))
(node (ref U13) (pin 1))
(node (ref U34) (pin 1))
(node (ref C29) (pin 2))
(node (ref U1) (pin 1))
(node (ref U23) (pin 1))
(node (ref C18) (pin 2))
(node (ref P2) (pin 1))
(node (ref U17) (pin 1))
(node (ref C11) (pin 2))
(node (ref U9) (pin 1))
(node (ref C33) (pin 2))
(node (ref U11) (pin 1))
(node (ref C35) (pin 2))
(node (ref U32) (pin 1))
(node (ref C27) (pin 2))
(node (ref U12) (pin 1))
(node (ref C36) (pin 2))
(node (ref U26) (pin 1))
(node (ref C21) (pin 2))
(node (ref C31) (pin 2))
(node (ref U35) (pin 1))
(node (ref C30) (pin 2))
(node (ref U36) (pin 1))
(node (ref U31) (pin 1))
(node (ref C26) (pin 2))
(node (ref U25) (pin 1))
(node (ref C20) (pin 2))
(node (ref U4) (pin 1))
(node (ref C3) (pin 2))
(node (ref C1) (pin 2))
(node (ref U28) (pin 1))
(node (ref C23) (pin 2))
(node (ref U20) (pin 1))
(node (ref C15) (pin 2))
(node (ref C13) (pin 2))
(node (ref U22) (pin 1))
(node (ref C17) (pin 2))
(node (ref U19) (pin 1))
(node (ref C4) (pin 2))
(node (ref U5) (pin 1))
(node (ref U14) (pin 1))
(node (ref C8) (pin 2))
(node (ref C5) (pin 2))
(node (ref U6) (pin 1))
(node (ref U8) (pin 1))
(node (ref U37) (pin 1))
(node (ref C6) (pin 2))
(node (ref C32) (pin 2)))
(net (code 16) (name DIN)
(node (ref U1) (pin 4))
(node (ref P1) (pin 8))
(node (ref P4) (pin 2)))
(net (code 17) (name "Net-(P6-Pad1)")
(node (ref P6) (pin 1)))
(net (code 18) (name "Net-(P7-Pad1)")
(node (ref P7) (pin 1)))
(net (code 19) (name "Net-(P8-Pad1)")
(node (ref P8) (pin 1)))
(net (code 20) (name "Net-(P9-Pad1)")
(node (ref P9) (pin 1)))
(net (code 21) (name "Net-(P10-Pad1)")
(node (ref P10) (pin 1)))
(net (code 22) (name "Net-(P2-Pad14)")
(node (ref P3) (pin 1))
(node (ref P2) (pin 14)))
(net (code 23) (name "Net-(P5-Pad2)")
(node (ref P5) (pin 2)))
(net (code 24) (name "Net-(P5-Pad3)")
(node (ref P5) (pin 3)))
(net (code 25) (name "Net-(P5-Pad4)")
(node (ref P5) (pin 4)))
(net (code 26) (name +5V)
(node (ref SW1) (pin 1))
(node (ref P2) (pin 4))
(node (ref SW2) (pin 1))
(node (ref SW3) (pin 1)))
(net (code 27) (name "Net-(U12-Pad2)")
(node (ref U18) (pin 4))
(node (ref U12) (pin 2)))
(net (code 28) (name "Net-(U18-Pad2)")
(node (ref U18) (pin 2))
(node (ref U24) (pin 4)))
(net (code 29) (name "Net-(U24-Pad2)")
(node (ref U24) (pin 2))
(node (ref U30) (pin 4)))
(net (code 30) (name "Net-(U30-Pad2)")
(node (ref U36) (pin 4))
(node (ref U30) (pin 2)))
(net (code 31) (name "Net-(U36-Pad2)")
(node (ref U6) (pin 4))
(node (ref U36) (pin 2)))
(net (code 32) (name "Net-(U13-Pad2)")
(node (ref U19) (pin 4))
(node (ref U13) (pin 2)))
(net (code 33) (name "Net-(U19-Pad2)")
(node (ref U25) (pin 4))
(node (ref U19) (pin 2)))
(net (code 34) (name "Net-(U25-Pad2)")
(node (ref U25) (pin 2))
(node (ref U31) (pin 4)))
(net (code 35) (name "Net-(U31-Pad2)")
(node (ref U37) (pin 4))
(node (ref U31) (pin 2)))
(net (code 36) (name "Net-(U10-Pad4)")
(node (ref U10) (pin 4))
(node (ref U3) (pin 2)))
(net (code 37) (name "Net-(U10-Pad2)")
(node (ref U10) (pin 2))
(node (ref U16) (pin 4)))
(net (code 38) (name "Net-(U16-Pad2)")
(node (ref U16) (pin 2))
(node (ref U22) (pin 4)))
(net (code 39) (name "Net-(U22-Pad2)")
(node (ref U28) (pin 4))
(node (ref U22) (pin 2)))
(net (code 40) (name "Net-(U28-Pad2)")
(node (ref U28) (pin 2))
(node (ref U34) (pin 4)))
(net (code 41) (name "Net-(U34-Pad2)")
(node (ref U34) (pin 2))
(node (ref U4) (pin 4)))
(net (code 42) (name "Net-(U11-Pad4)")
(node (ref U4) (pin 2))
(node (ref U11) (pin 4)))
(net (code 43) (name "Net-(U11-Pad2)")
(node (ref U17) (pin 4))
(node (ref U11) (pin 2)))
(net (code 44) (name "Net-(U17-Pad2)")
(node (ref U23) (pin 4))
(node (ref U17) (pin 2)))
(net (code 45) (name "Net-(U23-Pad2)")
(node (ref U29) (pin 4))
(node (ref U23) (pin 2)))
(net (code 46) (name "Net-(U29-Pad2)")
(node (ref U29) (pin 2))
(node (ref U35) (pin 4)))
(net (code 47) (name "Net-(U35-Pad2)")
(node (ref U35) (pin 2))
(node (ref U5) (pin 4)))
(net (code 48) (name "Net-(P1-Pad9)")
(node (ref P1) (pin 9))
(node (ref R1) (pin 2))
(node (ref SW1) (pin 2)))
(net (code 49) (name "Net-(P1-Pad10)")
(node (ref SW2) (pin 2))
(node (ref R2) (pin 2))
(node (ref P1) (pin 10)))
(net (code 50) (name "Net-(P1-Pad11)")
(node (ref R3) (pin 2))
(node (ref SW3) (pin 2))
(node (ref P1) (pin 11)))
(net (code 51) (name RST)
(node (ref P1) (pin 14))
(node (ref P3) (pin 5)))
(net (code 52) (name "Net-(P1-Pad15)")
(node (ref P1) (pin 15)))
(net (code 53) (name "Net-(P2-Pad3)")
(node (ref P2) (pin 3)))
(net (code 54) (name "Net-(P2-Pad5)")
(node (ref P2) (pin 5)))
(net (code 55) (name "Net-(P2-Pad6)")
(node (ref P2) (pin 6)))
(net (code 56) (name "Net-(P2-Pad7)")
(node (ref P2) (pin 7)))
(net (code 57) (name "Net-(P2-Pad8)")
(node (ref P2) (pin 8)))
(net (code 58) (name "Net-(P2-Pad9)")
(node (ref P2) (pin 9)))
(net (code 59) (name "Net-(P2-Pad10)")
(node (ref P2) (pin 10)))
(net (code 60) (name "Net-(P2-Pad11)")
(node (ref P2) (pin 11)))
(net (code 61) (name "Net-(P2-Pad12)")
(node (ref P2) (pin 12)))
(net (code 62) (name "Net-(P2-Pad13)")
(node (ref P2) (pin 13)))
(net (code 63) (name "Net-(P2-Pad15)")
(node (ref P2) (pin 15)))
(net (code 64) (name CLK)
(node (ref P1) (pin 12))
(node (ref P3) (pin 3)))
(net (code 65) (name "Net-(P1-Pad1)")
(node (ref P1) (pin 1)))
(net (code 66) (name "Net-(P1-Pad2)")
(node (ref P1) (pin 2)))
(net (code 67) (name "Net-(P1-Pad3)")
(node (ref P1) (pin 3)))
(net (code 68) (name "Net-(P1-Pad5)")
(node (ref P1) (pin 5)))
(net (code 69) (name "Net-(P1-Pad6)")
(node (ref P1) (pin 6)))
(net (code 70) (name "Net-(P1-Pad7)")
(node (ref P1) (pin 7)))
(net (code 71) (name DAT)
(node (ref P3) (pin 4))
(node (ref P1) (pin 13)))
(net (code 72) (name "Net-(U37-Pad2)")
(node (ref U37) (pin 2)))
(net (code 73) (name GND)
(node (ref U23) (pin 3))
(node (ref C24) (pin 1))
(node (ref C18) (pin 1))
(node (ref C23) (pin 1))
(node (ref U22) (pin 3))
(node (ref C17) (pin 1))
(node (ref C38) (pin 1))
(node (ref U37) (pin 3))
(node (ref U19) (pin 3))
(node (ref C32) (pin 1))
(node (ref U31) (pin 3))
(node (ref C26) (pin 1))
(node (ref U25) (pin 3))
(node (ref C4) (pin 1))
(node (ref U4) (pin 3))
(node (ref C3) (pin 1))
(node (ref U3) (pin 3))
(node (ref C2) (pin 1))
(node (ref U2) (pin 3))
(node (ref C31) (pin 1))
(node (ref U30) (pin 3))
(node (ref C25) (pin 1))
(node (ref U24) (pin 3))
(node (ref C19) (pin 1))
(node (ref U18) (pin 3))
(node (ref C20) (pin 1))
(node (ref U17) (pin 3))
(node (ref C11) (pin 1))
(node (ref U11) (pin 3))
(node (ref C35) (pin 1))
(node (ref C12) (pin 1))
(node (ref U12) (pin 3))
(node (ref C36) (pin 1))
(node (ref U35) (pin 3))
(node (ref C30) (pin 1))
(node (ref U29) (pin 3))
(node (ref U36) (pin 3))
(node (ref U16) (pin 3))
(node (ref C10) (pin 1))
(node (ref C37) (pin 1))
(node (ref U10) (pin 3))
(node (ref C34) (pin 1))
(node (ref U33) (pin 3))
(node (ref C28) (pin 1))
(node (ref U13) (pin 3))
(node (ref U34) (pin 3))
(node (ref C29) (pin 1))
(node (ref U28) (pin 3))
(node (ref C13) (pin 1))
(node (ref C6) (pin 1))
(node (ref U6) (pin 3))
(node (ref C5) (pin 1))
(node (ref U5) (pin 3))
(node (ref U27) (pin 3))
(node (ref C22) (pin 1))
(node (ref U21) (pin 3))
(node (ref C16) (pin 1))
(node (ref U15) (pin 3))
(node (ref C9) (pin 1))
(node (ref U20) (pin 3))
(node (ref C15) (pin 1))
(node (ref U14) (pin 3))
(node (ref C8) (pin 1))
(node (ref U8) (pin 3))
(node (ref P5) (pin 1))