-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhh2020v1.net
executable file
·1326 lines (1326 loc) · 46.1 KB
/
hh2020v1.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/renze/Documents/Projects/Badge.team/HH2020 badge/HH2020 final design/hh2020v1.sch")
(date "Sun 22 Dec 2019 09:06:31 PM CET")
(tool "Eeschema 5.1.5")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Hackerhotel 2020 badge")
(company BADGE.TEAM)
(rev 1.0.0)
(date 2019-12-13)
(source hh2020v1.sch)
(comment (number 1) (value "License: Cern OSHW"))
(comment (number 2) (value "Authors: Benadski, Nikolett and Renze"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ATtiny1617-M)
(footprint Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/ATtiny3217_1617-Data-Sheet-40001999B.pdf)
(libsource (lib prototype2-rescue) (part ATtiny1617-M-MCU_Microchip_ATtiny) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD47069))
(comp (ref D8)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD4C6E5))
(comp (ref D14)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD4D779))
(comp (ref D20)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD4DDDE))
(comp (ref D26)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD4E334))
(comp (ref D32)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD4E9AD))
(comp (ref D28)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5451D))
(comp (ref D29)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5495F))
(comp (ref D30)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD54D45))
(comp (ref D31)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD550F6))
(comp (ref D25)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5568F))
(comp (ref D24)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD55A88))
(comp (ref D18)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD55E5B))
(comp (ref D19)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD565A9))
(comp (ref D13)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD569DD))
(comp (ref D23)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD56F3D))
(comp (ref D22)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5729B))
(comp (ref D17)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD574DC))
(comp (ref D12)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD57B24))
(comp (ref D7)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD58210))
(comp (ref D6)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5863F))
(comp (ref D11)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD58B0D))
(comp (ref D16)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD58ED6))
(comp (ref D5)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD59FFB))
(comp (ref D4)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5A6A8))
(comp (ref R16)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD9073))
(comp (ref R15)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD94C4))
(comp (ref R14)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD97B1))
(comp (ref R13)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD9AED))
(comp (ref R12)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DDD9D8C))
(comp (ref R1)
(value 2k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DEA07D6))
(comp (ref R2)
(value 2k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DEA0FC8))
(comp (ref U2)
(value CAT24C256)
(footprint SMD_Packages:SOIC-8-N)
(datasheet https://www.onsemi.cn/PowerSolutions/document/CAT24C256-D.PDF)
(libsource (lib Memory_EEPROM) (part CAT24C256) (description "256 kb CMOS Serial EEPROM, DIP-8/SOIC-8/TSSOP-8/DFN-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5DECCB71))
(comp (ref SW3)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_SKQG)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF22C29))
(comp (ref SW4)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_SKQG)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF234C4))
(comp (ref SW5)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_SKQG)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF23A16))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DF486DA))
(comp (ref R8)
(value 4k7)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DF48F9F))
(comp (ref R10)
(value 1k2)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4967F))
(comp (ref R11)
(value 4k7)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DFA57BB))
(comp (ref C4)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6154D6))
(comp (ref C6)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E617352))
(comp (ref R22)
(value 1k2)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EB929C0))
(comp (ref R21)
(value 1k2)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EB93252))
(comp (ref R4)
(value 33k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5ED713FD))
(comp (ref J1)
(value SAO)
(footprint Pin_Headers:Pin_Header_Straight_2x03_Pitch2.54mm)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A9D1F))
(comp (ref BT2)
(value AA)
(footprint version2:BatteryHolder_Keystone_2460_1xAA)
(datasheet ~)
(libsource (lib Device) (part Battery_Cell) (description "Single-cell battery"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEBB0DA))
(comp (ref BT1)
(value AA)
(footprint version2:BatteryHolder_Keystone_2460_1xAA)
(datasheet ~)
(libsource (lib Device) (part Battery_Cell) (description "Single-cell battery"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEBC758))
(comp (ref C3)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF1E637))
(comp (ref D1)
(value 1N5819)
(footprint Diodes_SMD:D_SOD-123)
(datasheet http://www.vishay.com/docs/88525/1n5817.pdf)
(libsource (lib Diode) (part 1N5819) (description "40V 1A Schottky Barrier Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAB8FB))
(comp (ref L1)
(value L)
(footprint Inductor_SMD:L_Bourns-SRN8040_8x8.15mm)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5DE21DC2))
(comp (ref U3)
(value QX2303L33E)
(footprint TO_SOT_Packages_SMD:SOT-89-3)
(libsource (lib QX2303L33E) (part QX2303L33E) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDABB78))
(comp (ref C1)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE7839D))
(comp (ref J3)
(value Audio)
(footprint Connectors:PJ320D_3.5mm_Jack)
(datasheet ~)
(libsource (lib audiojack) (part pj320d) (description "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1C943F))
(comp (ref D27)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE4E45D))
(comp (ref D21)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE4E463))
(comp (ref D15)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE4E469))
(comp (ref D9)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE4E46F))
(comp (ref D3)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE4E475))
(comp (ref Q2)
(value Q_NMOS_GSD)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE3C95C))
(comp (ref Q3)
(value Q_NMOS_GSD)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE5E91F))
(comp (ref Q4)
(value Q_NMOS_GSD)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE639D3))
(comp (ref Q5)
(value Q_NMOS_GSD)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE64CDF))
(comp (ref Q6)
(value Q_NMOS_GSD)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE65B3D))
(comp (ref R19)
(value 150)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DEDE157))
(comp (ref R18)
(value 150)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1375BF))
(comp (ref R20)
(value 150)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E137AA1))
(comp (ref R23)
(value 150)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E137D44))
(comp (ref R24)
(value 150)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1380C2))
(comp (ref D10)
(value LED)
(footprint hh2020:led-sideways-2.0x0.5)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD59B28))
(comp (ref R17)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E245145))
(comp (ref U5)
(value LMV321B)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/ds/symlink/lmv324.pdf)
(libsource (lib Amplifier_Operational) (part LMV321) (description "Low-Voltage Rail-to-Rail Output Operational Amplifiers, SOT-23-5/SC-70-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE3A782))
(comp (ref C5)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AA3C1))
(comp (ref C2)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CAF41))
(comp (ref Q1)
(value Q_Photo_NPN)
(footprint Resistors_SMD:R_0805)
(datasheet ~)
(libsource (lib phototransistor) (part Q_Photo_NPN) (description "NPN phototransistor, collector/emitter"))
(sheetpath (names /) (tstamps /))
(tstamp 5E135856))
(comp (ref R3)
(value 47)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1465A4))
(comp (ref SW2)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_SKQG)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF22112))
(comp (ref R9)
(value 2k4)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4936D))
(comp (ref C7)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFF1553))
(comp (ref TP12)
(value 3.3V)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF8D6A4))
(comp (ref TP13)
(value GND)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF8DAF2))
(comp (ref TP14)
(value BTN)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB8D8D))
(comp (ref TP15)
(value SP)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB93FF))
(comp (ref TP16)
(value LDR)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB9616))
(comp (ref TP17)
(value HALL)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB9760))
(comp (ref TP11)
(value 3)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB9956))
(comp (ref TP10)
(value A)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB9A45))
(comp (ref TP9)
(value F)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB9C40))
(comp (ref TP8)
(value C)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB9F63))
(comp (ref TP7)
(value 1)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBA1CC))
(comp (ref TP6)
(value 2)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBA418))
(comp (ref TP5)
(value 0)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBA64C))
(comp (ref TP4)
(value 4)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBA871))
(comp (ref TP3)
(value E)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBA9D8))
(comp (ref TP2)
(value D)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBABF0))
(comp (ref TP1)
(value B)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFBAD6F))
(comp (ref SW1)
(value ON/OFF)
(footprint Button_Switch_SMD:SW_SPDT_PCM12)
(datasheet ~)
(libsource (lib Switch) (part SW_SPDT) (description "Switch, single pole double throw"))
(sheetpath (names /) (tstamps /))
(tstamp 5E73164D))
(comp (ref J2)
(value Programmer)
(footprint Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4AD698))
(comp (ref D2)
(value 1N5819)
(footprint Diodes_SMD:D_SOD-123)
(datasheet http://www.vishay.com/docs/88525/1n5817.pdf)
(libsource (lib Diode) (part 1N5819) (description "40V 1A Schottky Barrier Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFE2A2D))
(comp (ref R5)
(value 2k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E46EF4A))
(comp (ref U4)
(value OH49E)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.diodes.com/assets/Datasheets/AH1806.pdf)
(libsource (lib oh49e) (part OH49E) (description "High Sensitivity Micropower Omnipolar Hall-Effect Switch, SIP-3"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0270E9)))
(libparts
(libpart (lib Amplifier_Operational) (part LMV321)
(aliases
(alias MCP6401UT-xOT)
(alias MCP6001U)
(alias OPA333xxDCK)
(alias OPA376xxDCK)
(alias OPA330xxDCK))
(description "Low-Voltage Rail-to-Rail Output Operational Amplifiers, SOT-23-5/SC-70-5")
(docs http://www.ti.com/lit/ds/symlink/lmv324.pdf)
(footprints
(fp SOT?23*)
(fp *SC*70*))
(fields
(field (name Reference) U)
(field (name Value) LMV321))
(pins
(pin (num 1) (name +) (type input))
(pin (num 2) (name V-) (type power_in))
(pin (num 3) (name -) (type input))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name V+) (type power_in))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(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))))
(libpart (lib Connector_Generic) (part Conn_02x03_Odd_Even)
(description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x03_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))))
(libpart (lib Device) (part Battery_Cell)
(description "Single-cell battery")
(docs ~)
(fields
(field (name Reference) BT)
(field (name Value) Battery_Cell))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(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 Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(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 Device) (part L)
(description Inductor)
(docs ~)
(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 Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(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 Device) (part Q_NMOS_GSD)
(description "N-MOSFET transistor, gate/source/drain")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(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 Diode) (part SB120)
(aliases
(alias SB130)
(alias SB140)
(alias SB150)
(alias SB160)
(alias 1N5817)
(alias 1N5818)
(alias 1N5819))
(description "20V 1A Schottky Barrier Rectifier Diode, DO-41")
(docs http://www.diodes.com/_files/datasheets/ds23022.pdf)
(footprints
(fp D*DO?41*))
(fields
(field (name Reference) D)
(field (name Value) SB120)
(field (name Footprint) Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Memory_EEPROM) (part 24LC16)
(aliases
(alias 24LC02)
(alias 24LC00)
(alias 24LC04)
(alias 24LC08)
(alias 24LC01)
(alias 24LC512)
(alias 24LC64)
(alias 24LC1025)
(alias 24LC32)
(alias 24LC256)
(alias 24LC128)
(alias CAT24C256)
(alias CAT24C128))
(description "I2C Serial EEPROM, 16Kb, DIP-8/SOIC-8/TSSOP-8/DFN-8")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/21703d.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x4.9mm*)
(fp TSSOP*4.4x3mm*P0.65mm*)
(fp DFN*3x2mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) 24LC16))
(pins
(pin (num 1) (name A0) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SDA) (type BiDi))
(pin (num 6) (name SCL) (type input))
(pin (num 7) (name WP) (type input))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib QX2303L33E) (part QX2303L33E)
(fields
(field (name Reference) U)
(field (name Value) QX2303L33E))
(pins
(pin (num 1) (name GND) (type passive))
(pin (num 2) (name VOUT) (type power_out))
(pin (num 3) (name LX) (type power_in))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(docs ~)
(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 Switch) (part SW_SPDT)
(description "Switch, single pole double throw")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_SPDT))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib audiojack) (part pj320d)
(description "Audio Jack, 3 Poles (Stereo / TRS), Grounded Sleeve")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) pj320d))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))))
(libpart (lib oh49e) (part OH49E)
(description "High Sensitivity Micropower Omnipolar Hall-Effect Switch, SIP-3")
(docs https://www.diodes.com/assets/Datasheets/AH1806.pdf)
(footprints
(fp Diodes*SIP*4.1x1.5mm*P1.27mm*)
(fp Diodes*SIP*4.1x1.5mm*P2.65mm*))
(fields
(field (name Reference) U)
(field (name Value) OH49E))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name OUTPUT) (type openCol))
(pin (num 3) (name GND) (type power_in))))
(libpart (lib phototransistor) (part Q_Photo_NPN)
(aliases
(alias Q_Photo_NPN_CE))
(description "NPN phototransistor, collector/emitter")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_Photo_NPN))
(pins
(pin (num 1) (name C) (type passive))
(pin (num 2) (name E) (type passive))))
(libpart (lib prototype2-rescue) (part ATtiny1617-M-MCU_Microchip_ATtiny)
(footprints
(fp QFN*1EP*4x4mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) ATtiny1617-M-MCU_Microchip_ATtiny)
(field (name Footprint) Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm))
(pins
(pin (num 1) (name PA2) (type 3state))
(pin (num 2) (name PA3) (type 3state))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name PA4) (type 3state))
(pin (num 6) (name PA5) (type 3state))
(pin (num 7) (name PA6) (type 3state))
(pin (num 8) (name PA7) (type 3state))
(pin (num 9) (name PB7) (type 3state))
(pin (num 10) (name PB6) (type 3state))
(pin (num 11) (name PB5) (type 3state))