-
Notifications
You must be signed in to change notification settings - Fork 1
/
CheeseUnua.net
1020 lines (1020 loc) · 37 KB
/
CheeseUnua.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/dango/kicad/project/CheeseUnua/CheeseUnua.sch)
(date "2018年10月17日 22時54分10秒")
(tool "Eeschema 5.0.0")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source CheeseUnua.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J2)
(value Battery)
(footprint Connectors_JST:JST_XH_B02B-XH-A_02x2.50mm_Straight)
(libsource (lib CheeseUnua-rescue) (part Conn_01x02-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75CDD1))
(comp (ref J1)
(value Jack-DC)
(footprint Connectors:BARREL_JACK)
(libsource (lib CheeseUnua-rescue) (part Jack-DC-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75CEAB))
(comp (ref F1)
(value Polyfuse)
(footprint Fuse_Holders_and_Fuses:Fuse_TE5_Littlefuse-395Series)
(libsource (lib CheeseUnua-rescue) (part Polyfuse-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D3DF))
(comp (ref R5)
(value 100k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D400))
(comp (ref SW2)
(value SW_SPST)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part SW_SPST-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D4E7))
(comp (ref U1)
(value R-78E3.3-0.5)
(footprint Pin_Headers:Pin_Header_Angled_1x03_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part AP2204R-3.3-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D5CD))
(comp (ref R8)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D632))
(comp (ref D2)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib CheeseUnua-rescue) (part LED-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D659))
(comp (ref R9)
(value 10)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D783))
(comp (ref L1)
(value 100u)
(footprint Inductors:INDUCTOR_V)
(libsource (lib CheeseUnua-rescue) (part L-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D7B4))
(comp (ref C5)
(value 10u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75D837))
(comp (ref R12)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75DAE1))
(comp (ref R13)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75DB61))
(comp (ref C7)
(value 0.1u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75DD86))
(comp (ref U2)
(value SLA7073MPRT)
(footprint SLA7073:SLA7073)
(libsource (lib CheeseUnua-rescue) (part SLA7073MPRT-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75DF2F))
(comp (ref C3)
(value 0.1u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75E2F1))
(comp (ref R6)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75E36A))
(comp (ref R3)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75E56F))
(comp (ref R4)
(value 510)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75E5EF))
(comp (ref C2)
(value 0.1u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75E672))
(comp (ref C4)
(value 10u)
(footprint Capacitors_THT:CP_Radial_D5.0mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part CP-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75ECC5))
(comp (ref C6)
(value 100u)
(footprint Capacitors_THT:CP_Radial_D5.0mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part CP-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75EDAD))
(comp (ref J5)
(value Conn_01x06)
(footprint Connectors_JST:JST_XH_S06B-XH-A_06x2.50mm_Angled)
(libsource (lib CheeseUnua-rescue) (part Conn_01x06-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75EE6D))
(comp (ref J3)
(value Conn_01x05)
(footprint Pin_Headers:Pin_Header_Straight_1x05_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part Conn_01x05-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75F44A))
(comp (ref J4)
(value Conn_01x03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part Conn_01x03-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75F848))
(comp (ref D1)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib CheeseUnua-rescue) (part LED-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75FA7F))
(comp (ref R7)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75FB2C))
(comp (ref R11)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75FE72))
(comp (ref R10)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A75FFDC))
(comp (ref D3)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib CheeseUnua-rescue) (part LED-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A76002F))
(comp (ref SW3)
(value SW_DPST_x2)
(footprint Buttons_Switches_THT:SW_PUSH_6mm_h4.3mm)
(libsource (lib CheeseUnua-rescue) (part SW_DPST_x2-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A760291))
(comp (ref LS1)
(value Speaker)
(footprint Buzzers_Beepers:BUZZER)
(libsource (lib CheeseUnua-rescue) (part Speaker-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A7606D9))
(comp (ref R1)
(value 3.3k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A760A80))
(comp (ref R2)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A760AE3))
(comp (ref C1)
(value 1u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A760BFB))
(comp (ref R14)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A760F61))
(comp (ref U4)
(value NJM2742D)
(footprint Housings_DIP:DIP-8_W7.62mm)
(libsource (lib CheeseUnua-rescue) (part NJM2043-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A761156))
(comp (ref R23)
(value 10)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A7615A1))
(comp (ref C8)
(value 0.1u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A7617C8))
(comp (ref Q2)
(value 2SK2796L)
(footprint TO_SOT_Packages_THT:TO-220-3_Vertical)
(libsource (lib CheeseUnua-rescue) (part Q_NMOS_GDS-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A761A56))
(comp (ref D4)
(value VSLY5850)
(footprint LEDs:LED_D5.0mm)
(libsource (lib CheeseUnua-rescue) (part LED-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A76218D))
(comp (ref R24)
(value 33)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A76286D))
(comp (ref D6)
(value SFH213FA)
(footprint LEDs:LED_D5.0mm)
(libsource (lib CheeseUnua-rescue) (part LED-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A762DFD))
(comp (ref R25)
(value 100k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A762FA1))
(comp (ref C9)
(value 0.01u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A763104))
(comp (ref U5)
(value NJU7072D)
(footprint Housings_DIP:DIP-8_W7.62mm)
(libsource (lib CheeseUnua-rescue) (part NJM2043-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A76317F))
(comp (ref R26)
(value 220k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A7634FC))
(comp (ref C10)
(value 22p)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A763577))
(comp (ref C11)
(value 0.1u)
(footprint Capacitors_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(libsource (lib CheeseUnua-rescue) (part C-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A764267))
(comp (ref J6)
(value AE-AQM0802)
(footprint Pin_Headers:Pin_Header_Straight_1x05_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part Conn_01x05-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A764526))
(comp (ref U3)
(value 7SEGMENT_CA)
(footprint Displays_7-Segment:7SegmentLED_LTS6760_LTS6780)
(libsource (lib CheeseUnua-rescue) (part 7SEGMENT_CA-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A764CCE))
(comp (ref R15)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A7654BE))
(comp (ref R16)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A76582B))
(comp (ref R17)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A9153DE))
(comp (ref R18)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A9153E4))
(comp (ref R19)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A91563A))
(comp (ref R20)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A915640))
(comp (ref R21)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A915646))
(comp (ref R22)
(value 1k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib CheeseUnua-rescue) (part R-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A91564C))
(comp (ref J7)
(value CN2)
(footprint Pin_Headers:Pin_Header_Straight_2x13_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part Conn_02x13_Odd_Even-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A9211E3))
(comp (ref J8)
(value CN1)
(footprint Pin_Headers:Pin_Header_Straight_2x13_Pitch2.54mm)
(libsource (lib CheeseUnua-rescue) (part Conn_02x13_Odd_Even-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A92169F))
(comp (ref Q1)
(value 2SJ681)
(footprint TO_SOT_Packages_THT:TO-220-3_Vertical)
(libsource (lib CheeseUnua-rescue) (part Q_PMOS_GDS-) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A923F85))
(comp (ref JP1)
(value Jumper_3_Bridged12)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(datasheet ~)
(libsource (lib Jumper) (part Jumper_3_Bridged12) (description "Jumper, 3-pole, pins 1+2 closed/bridged"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC87AB5)))
(libparts
(libpart (lib CheeseUnua-rescue) (part 7SEGMENT_CA-)
(fields
(field (name Reference) U)
(field (name Value) 7SEGMENT_CA-))
(pins
(pin (num 1) (name E) (type input))
(pin (num 2) (name D) (type input))
(pin (num 3) (name CA) (type input))
(pin (num 4) (name C) (type input))
(pin (num 5) (name DP) (type input))
(pin (num 6) (name B) (type input))
(pin (num 7) (name A) (type input))
(pin (num 8) (name CA) (type input))
(pin (num 9) (name F) (type input))
(pin (num 10) (name G) (type input))))
(libpart (lib CheeseUnua-rescue) (part AP2204R-3.3-)
(footprints
(fp SOT?89*))
(fields
(field (name Reference) U)
(field (name Value) AP2204R-3.3-)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-89-3))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VOUT) (type power_out))))
(libpart (lib CheeseUnua-rescue) (part C-)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C-))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib CheeseUnua-rescue) (part CP-)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP-))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Conn_01x02-)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02-))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Conn_01x03-)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03-))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Conn_01x05-)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x05-))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Conn_01x06-)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06-))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Conn_02x13_Odd_Even-)
(footprints
(fp Connector*:*2x??x*mm*)
(fp Connector*:*2x???Pitch*)
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x13_Odd_Even-))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Jack-DC-)
(fields
(field (name Reference) J)
(field (name Value) Jack-DC-))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib CheeseUnua-rescue) (part L-)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L-))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib CheeseUnua-rescue) (part LED-)
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED-))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib CheeseUnua-rescue) (part NJM2043-)
(footprints
(fp SOIC*3.9x4.9mm*Pitch1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*Pitch0.65mm*)
(fp TSSOP*4.4x3mm*Pitch0.65mm*)
(fp MSOP*3x3mm*Pitch0.65mm*)
(fp SSOP*3.9x4.9mm*Pitch0.635mm*)
(fp LFCSP*2x2mm*Pitch0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*Pitch1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) NJM2043-))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib CheeseUnua-rescue) (part Polyfuse-)
(footprints
(fp *polyfuse*)
(fp *PTC*))
(fields
(field (name Reference) F)
(field (name Value) Polyfuse-))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Q_NMOS_GDS-)
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GDS-))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name D) (type passive))
(pin (num 3) (name S) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Q_PMOS_GDS-)
(fields
(field (name Reference) Q)
(field (name Value) Q_PMOS_GDS-))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name D) (type passive))
(pin (num 3) (name S) (type passive))))
(libpart (lib CheeseUnua-rescue) (part R-)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R-))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib CheeseUnua-rescue) (part SLA7073MPRT-)
(footprints
(fp ZIP23))
(fields
(field (name Reference) U)
(field (name Value) SLA7073MPRT-))
(pins
(pin (num 1) (name OUTA) (type output))
(pin (num 2) (name OUTA) (type output))
(pin (num 3) (name ~OUTA~) (type output))
(pin (num 4) (name ~OUTA~) (type output))
(pin (num 5) (name SENSE_A) (type output))
(pin (num 6) (name N.C.) (type NotConnected))
(pin (num 7) (name M1) (type input))
(pin (num 8) (name M2) (type input))
(pin (num 9) (name M3) (type input))
(pin (num 10) (name CLOCK) (type input))
(pin (num 11) (name VBB) (type power_in))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name REF/SLEEP1) (type input))
(pin (num 14) (name VDD) (type power_in))
(pin (num 15) (name RESET) (type input))
(pin (num 16) (name CW/CCW) (type input))
(pin (num 17) (name SYNC) (type input))
(pin (num 18) (name FLAG) (type output))
(pin (num 19) (name SENSE_B) (type output))
(pin (num 20) (name ~OUTB~) (type output))
(pin (num 21) (name ~OUTB~) (type output))
(pin (num 22) (name OUTB) (type output))
(pin (num 23) (name OUTB) (type output))))
(libpart (lib CheeseUnua-rescue) (part SW_DPST_x2-)
(fields
(field (name Reference) SW)
(field (name Value) SW_DPST_x2-))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name A) (type input))
(pin (num 4) (name B) (type input))))
(libpart (lib CheeseUnua-rescue) (part SW_SPST-)
(fields
(field (name Reference) SW)
(field (name Value) SW_SPST-))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))))
(libpart (lib CheeseUnua-rescue) (part Speaker-)
(fields
(field (name Reference) LS)
(field (name Value) Speaker-))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib Jumper) (part Jumper_3_Bridged12)
(description "Jumper, 3-pole, pins 1+2 closed/bridged")
(docs ~)
(footprints
(fp Jumper*Bridged12*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_3_Bridged12))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name C) (type input))
(pin (num 3) (name B) (type passive)))))
(libraries
(library (logical CheeseUnua-rescue)
(uri /home/dango/kicad/project/CheeseUnua/CheeseUnua-rescue.lib))
(library (logical Jumper)
(uri /usr/share/kicad/library/Jumper.lib)))
(nets
(net (code 1) (name "Net-(J7-Pad7)")
(node (ref J7) (pin 7)))
(net (code 2) (name "Net-(J8-Pad6)")
(node (ref J8) (pin 6)))
(net (code 3) (name "Net-(J8-Pad5)")
(node (ref J8) (pin 5)))
(net (code 4) (name "Net-(J8-Pad7)")
(node (ref J8) (pin 7)))
(net (code 5) (name "Net-(J8-Pad20)")
(node (ref J8) (pin 20)))
(net (code 6) (name "Net-(J8-Pad21)")
(node (ref J8) (pin 21)))
(net (code 7) (name "Net-(J1-Pad1)")
(node (ref JP1) (pin 1))
(node (ref J1) (pin 1)))
(net (code 8) (name "Net-(J7-Pad9)")
(node (ref J7) (pin 9)))
(net (code 9) (name +3.3VA)
(node (ref C11) (pin 1))
(node (ref C5) (pin 1))
(node (ref D6) (pin 1))
(node (ref R12) (pin 1))
(node (ref L1) (pin 1))
(node (ref U5) (pin 8)))
(net (code 10) (name "Net-(J7-Pad10)")
(node (ref J7) (pin 10)))
(net (code 11) (name "Net-(J7-Pad8)")
(node (ref J7) (pin 8)))
(net (code 12) (name +3V3)
(node (ref J8) (pin 2))
(node (ref J7) (pin 2))
(node (ref R9) (pin 2))
(node (ref U2) (pin 14))
(node (ref U2) (pin 17))
(node (ref U1) (pin 3))
(node (ref C4) (pin 1))
(node (ref U2) (pin 8))
(node (ref C3) (pin 1))
(node (ref R3) (pin 1))
(node (ref U2) (pin 7))
(node (ref U3) (pin 3))
(node (ref J3) (pin 1))
(node (ref U3) (pin 8))
(node (ref J8) (pin 25))
(node (ref J6) (pin 1))
(node (ref R7) (pin 1))
(node (ref SW3) (pin 2))
(node (ref LS1) (pin 1)))
(net (code 13) (name "Net-(J7-Pad18)")
(node (ref J7) (pin 18)))
(net (code 14) (name "Net-(J5-Pad3)")
(node (ref U2) (pin 23))
(node (ref U2) (pin 22))
(node (ref J5) (pin 3)))
(net (code 15) (name "Net-(J5-Pad1)")
(node (ref U2) (pin 21))
(node (ref U2) (pin 20))
(node (ref J5) (pin 1)))
(net (code 16) (name "Net-(J5-Pad6)")
(node (ref U2) (pin 4))
(node (ref U2) (pin 3))
(node (ref J5) (pin 6)))
(net (code 17) (name "Net-(J5-Pad4)")
(node (ref U2) (pin 2))
(node (ref J5) (pin 4))
(node (ref U2) (pin 1)))
(net (code 18) (name "Net-(C2-Pad1)")
(node (ref C2) (pin 1))
(node (ref U2) (pin 13)))
(net (code 19) (name 7SEG_E)
(node (ref J8) (pin 13))
(node (ref R19) (pin 2)))
(net (code 20) (name "Net-(R19-Pad1)")
(node (ref R19) (pin 1))
(node (ref U3) (pin 1)))
(net (code 21) (name 7SEG_D)
(node (ref R18) (pin 2))
(node (ref J7) (pin 26)))
(net (code 22) (name "Net-(R18-Pad1)")
(node (ref U3) (pin 2))
(node (ref R18) (pin 1)))
(net (code 23) (name "Net-(R17-Pad1)")
(node (ref R17) (pin 1))
(node (ref U3) (pin 4)))
(net (code 24) (name 7SEG_G)
(node (ref J8) (pin 15))
(node (ref R21) (pin 2)))
(net (code 25) (name 7SEG_C)
(node (ref R17) (pin 2))
(node (ref J7) (pin 25)))
(net (code 26) (name 7SEG_B)
(node (ref R16) (pin 2))
(node (ref J7) (pin 24)))
(net (code 27) (name "Net-(R16-Pad1)")
(node (ref U3) (pin 6))
(node (ref R16) (pin 1)))
(net (code 28) (name "Net-(R20-Pad1)")
(node (ref U3) (pin 9))
(node (ref R20) (pin 1)))
(net (code 29) (name 7SEG_A)
(node (ref R15) (pin 2))
(node (ref J7) (pin 23)))
(net (code 30) (name "Net-(R15-Pad1)")
(node (ref R15) (pin 1))
(node (ref U3) (pin 7)))
(net (code 31) (name "Net-(R22-Pad1)")
(node (ref R22) (pin 1))
(node (ref U3) (pin 5)))
(net (code 32) (name "Net-(R21-Pad1)")
(node (ref R21) (pin 1))
(node (ref U3) (pin 10)))
(net (code 33) (name "Net-(J7-Pad4)")
(node (ref J7) (pin 4)))
(net (code 34) (name "Net-(J7-Pad3)")
(node (ref J7) (pin 3)))
(net (code 35) (name 7SEG_H)
(node (ref J8) (pin 16))
(node (ref R22) (pin 2)))
(net (code 36) (name 7SEG_F)
(node (ref J8) (pin 14))
(node (ref R20) (pin 2)))
(net (code 37) (name LED)
(node (ref D1) (pin 1))
(node (ref J8) (pin 17)))
(net (code 38) (name MOTOR_CLK)
(node (ref J8) (pin 10))
(node (ref U2) (pin 10)))
(net (code 39) (name "Net-(J8-Pad11)")
(node (ref J8) (pin 11)))
(net (code 40) (name "Net-(J8-Pad12)")
(node (ref J8) (pin 12)))
(net (code 41) (name LCD_RESET)
(node (ref J6) (pin 2))
(node (ref J8) (pin 18)))
(net (code 42) (name "Net-(J8-Pad19)")
(node (ref J8) (pin 19)))
(net (code 43) (name MOTOR_MODE)
(node (ref U2) (pin 9))
(node (ref J8) (pin 22)))
(net (code 44) (name MOTOR_DIR)
(node (ref J8) (pin 23))
(node (ref U2) (pin 16)))
(net (code 45) (name MOTOR_RESET)
(node (ref J8) (pin 24))
(node (ref U2) (pin 15)))
(net (code 46) (name RX)
(node (ref J7) (pin 6))
(node (ref J4) (pin 1)))
(net (code 47) (name TX)
(node (ref J7) (pin 5))
(node (ref J4) (pin 2)))
(net (code 48) (name BUZZER)
(node (ref J7) (pin 22))
(node (ref LS1) (pin 2)))
(net (code 49) (name SW)
(node (ref J7) (pin 21))
(node (ref R10) (pin 1)))
(net (code 50) (name LCD_SDA)
(node (ref J6) (pin 4))
(node (ref J7) (pin 20)))
(net (code 51) (name LCD_SCL)
(node (ref J7) (pin 19))
(node (ref J6) (pin 3)))
(net (code 52) (name "Net-(F1-Pad2)")
(node (ref F1) (pin 2))
(node (ref JP1) (pin 2)))
(net (code 53) (name "Net-(J2-Pad1)")
(node (ref JP1) (pin 3))
(node (ref J2) (pin 1)))
(net (code 54) (name "Net-(F1-Pad1)")
(node (ref Q1) (pin 2))
(node (ref F1) (pin 1)))
(net (code 55) (name "Net-(Q1-Pad1)")
(node (ref Q1) (pin 1))
(node (ref R5) (pin 2))
(node (ref SW2) (pin 1)))
(net (code 56) (name "Net-(C10-Pad2)")
(node (ref U5) (pin 2))
(node (ref C10) (pin 2))
(node (ref R26) (pin 2))
(node (ref C9) (pin 1)))
(net (code 57) (name IR_LED)
(node (ref J8) (pin 9))
(node (ref U4) (pin 3)))
(net (code 58) (name "Net-(J8-Pad8)")
(node (ref J8) (pin 8)))
(net (code 59) (name IR_SENSOR)
(node (ref C10) (pin 1))
(node (ref R26) (pin 1))
(node (ref J8) (pin 4))
(node (ref U5) (pin 1)))
(net (code 60) (name BATT_MONITOR)
(node (ref J8) (pin 3))
(node (ref R1) (pin 2))
(node (ref R2) (pin 1)))
(net (code 61) (name NRST)
(node (ref J8) (pin 26))
(node (ref J3) (pin 5)))
(net (code 62) (name /1.65V)
(node (ref R13) (pin 1))
(node (ref U5) (pin 3))
(node (ref C7) (pin 1))
(node (ref R12) (pin 2)))
(net (code 63) (name "Net-(C9-Pad2)")
(node (ref R25) (pin 1))
(node (ref C9) (pin 2))
(node (ref D6) (pin 2)))
(net (code 64) (name "Net-(Q2-Pad3)")
(node (ref R24) (pin 1))
(node (ref Q2) (pin 3))
(node (ref U4) (pin 2)))
(net (code 65) (name "Net-(J7-Pad12)")
(node (ref J7) (pin 12)))
(net (code 66) (name SWCLK)
(node (ref J3) (pin 2))
(node (ref J7) (pin 17)))
(net (code 67) (name SWDIO)
(node (ref J3) (pin 4))
(node (ref J7) (pin 16)))
(net (code 68) (name "Net-(J7-Pad15)")
(node (ref J7) (pin 15)))
(net (code 69) (name "Net-(J7-Pad14)")
(node (ref J7) (pin 14)))
(net (code 70) (name "Net-(J7-Pad13)")
(node (ref J7) (pin 13)))
(net (code 71) (name "Net-(J7-Pad11)")
(node (ref J7) (pin 11)))
(net (code 72) (name GND)
(node (ref R2) (pin 2))
(node (ref R24) (pin 2))
(node (ref R25) (pin 2))
(node (ref U5) (pin 4))
(node (ref J3) (pin 3))
(node (ref D3) (pin 1))
(node (ref R11) (pin 2))
(node (ref C11) (pin 2))
(node (ref J4) (pin 3))
(node (ref C1) (pin 2))
(node (ref J6) (pin 5))
(node (ref U4) (pin 4))
(node (ref C8) (pin 1))
(node (ref R14) (pin 2))
(node (ref SW2) (pin 2))
(node (ref C2) (pin 2))
(node (ref R4) (pin 2))
(node (ref C6) (pin 2))
(node (ref D2) (pin 1))
(node (ref U1) (pin 2))
(node (ref J7) (pin 1))
(node (ref R6) (pin 2))
(node (ref C4) (pin 2))
(node (ref J8) (pin 1))
(node (ref U2) (pin 12))
(node (ref J2) (pin 2))
(node (ref J1) (pin 2))
(node (ref J1) (pin 3))
(node (ref R13) (pin 2))
(node (ref C5) (pin 2))
(node (ref C7) (pin 2)))
(net (code 73) (name "Net-(U2-Pad18)")
(node (ref U2) (pin 18)))
(net (code 74) (name "Net-(U2-Pad19)")
(node (ref U2) (pin 19)))
(net (code 75) (name "Net-(U2-Pad5)")
(node (ref U2) (pin 5)))
(net (code 76) (name "Net-(C3-Pad2)")
(node (ref C3) (pin 2))
(node (ref R6) (pin 1)))
(net (code 77) (name +BATT)
(node (ref R1) (pin 1))
(node (ref U4) (pin 8))
(node (ref D4) (pin 2))
(node (ref U1) (pin 1))
(node (ref Q1) (pin 3))
(node (ref C8) (pin 2))
(node (ref C6) (pin 1))
(node (ref J5) (pin 2))
(node (ref J5) (pin 5))
(node (ref U2) (pin 11)))
(net (code 78) (name "Net-(U2-Pad6)")
(node (ref U2) (pin 6)))
(net (code 79) (name "Net-(R3-Pad2)")
(node (ref R4) (pin 1))
(node (ref R3) (pin 2)))
(net (code 80) (name "Net-(D2-Pad2)")
(node (ref D2) (pin 2))
(node (ref R8) (pin 2)))
(net (code 81) (name "Net-(R8-Pad1)")
(node (ref R8) (pin 1)))
(net (code 82) (name "Net-(R5-Pad1)")
(node (ref R5) (pin 1)))
(net (code 83) (name "Net-(L1-Pad2)")
(node (ref L1) (pin 2))
(node (ref R9) (pin 1)))
(net (code 84) (name "Net-(D4-Pad1)")
(node (ref D4) (pin 1))