-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalpha.net
1231 lines (1231 loc) · 40.8 KB
/
alpha.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/trygvis/dev/com.github/jonnor/dlock-oslo/hardware/alpha-1/alpha.sch)
(date "fr. 17. nov. 2017 kl. 15.32 +0100")
(tool "Eeschema 4.0.7+dfsg1-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date "15 nov 2012")
(source alpha.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MK1)
(value M2.5)
(footprint Mounting_Holes:MountingHole_2.5mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib mechanical) (part Mounting_Hole))
(sheetpath (names /) (tstamps /))
(tstamp 5834FB2E))
(comp (ref MK2)
(value M2.5)
(footprint Mounting_Holes:MountingHole_2.5mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib mechanical) (part Mounting_Hole))
(sheetpath (names /) (tstamps /))
(tstamp 5834FBEF))
(comp (ref MK3)
(value M2.5)
(footprint Mounting_Holes:MountingHole_2.5mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib mechanical) (part Mounting_Hole))
(sheetpath (names /) (tstamps /))
(tstamp 5834FC19))
(comp (ref MK4)
(value M2.5)
(footprint Mounting_Holes:MountingHole_2.5mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib mechanical) (part Mounting_Hole))
(sheetpath (names /) (tstamps /))
(tstamp 5834FC4F))
(comp (ref Q2)
(value DMN2041L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name mpn) DMN2041L-7))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5A01616C))
(comp (ref R3)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A016186))
(comp (ref D3)
(value S1MTR)
(footprint Diodes_SMD:D_SMA)
(datasheet http://www.smc-diodes.com/propdf/S1A-S1M%20N0560%20REV.B.pdf)
(fields
(field (name mpn) S1MTR)
(field (name digikey) 1655-1506-2-ND))
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A01619F))
(comp (ref D13)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A01D063))
(comp (ref R13)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A01D14E))
(comp (ref P2)
(value INPUTS)
(footprint Bitraf:har-flexicon_2,54_TSPH-08_T56_BK)
(fields
(field (name mpn) 14010813102000))
(libsource (lib conn) (part Conn_01x08))
(sheetpath (names /) (tstamps /))
(tstamp 5A01D793))
(comp (ref J1)
(value POWER)
(footprint Pin_Headers:Pin_Header_Straight_2x02_Pitch2.54mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib conn) (part Conn_02x02_Odd_Even))
(sheetpath (names /) (tstamps /))
(tstamp 5A05952B))
(comp (ref J2)
(value SERIAL)
(footprint Pin_Headers:Pin_Header_Straight_1x05_Pitch2.54mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib conn) (part Conn_01x05))
(sheetpath (names /) (tstamps /))
(tstamp 5A05A056))
(comp (ref D21)
(value POWER)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Green)
(field (name mpn) CMD15-21VGD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) "2.0 V")
(field (name req_Vin) 5V)
(field (name ds_Vf) "2.1 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A05B1E4))
(comp (ref R23)
(value 560)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A05B9EF))
(comp (ref D4)
(value LED)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Red)
(field (name mpn) CMD15-21VRD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) 1.9V)
(field (name req_Vin) "3.3 V")
(field (name ds_Vf) "2.0 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A05D008))
(comp (ref R4)
(value 270)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A05D00E))
(comp (ref Q1)
(value DMN2041L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name mpn) DMN2041L-7))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5A06194D))
(comp (ref R1)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A061965))
(comp (ref D1)
(value S1MTR)
(footprint Diodes_SMD:D_SMA)
(datasheet http://www.smc-diodes.com/propdf/S1A-S1M%20N0560%20REV.B.pdf)
(fields
(field (name mpn) S1MTR)
(field (name digikey) 1655-1506-2-ND))
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A061983))
(comp (ref D2)
(value LED)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Red)
(field (name mpn) CMD15-21VRD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) 1.9V)
(field (name req_Vin) "3.3 V")
(field (name ds_Vf) "2.0 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A06198E))
(comp (ref R2)
(value 270)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A061994))
(comp (ref D23)
(value STATUS_2)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Green)
(field (name mpn) CMD15-21VGD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) "2.0 V")
(field (name req_Vin) 5V)
(field (name ds_Vf) "2.1 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A066DDB))
(comp (ref R28)
(value 560)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A066DE1))
(comp (ref D22)
(value STATUS_1)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Green)
(field (name mpn) CMD15-21VGD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) "2.0 V")
(field (name req_Vin) 5V)
(field (name ds_Vf) "2.1 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A067224))
(comp (ref R27)
(value 560)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06722A))
(comp (ref D14)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A069DE5))
(comp (ref R14)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A069DEB))
(comp (ref D15)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A06A029))
(comp (ref R15)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06A02F))
(comp (ref D16)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A06A50A))
(comp (ref R16)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06A510))
(comp (ref D17)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A06A522))
(comp (ref R17)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06A528))
(comp (ref Q3)
(value DMN2041L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name mpn) DMN2041L-7))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B691))
(comp (ref R5)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B6A9))
(comp (ref D5)
(value S1MTR)
(footprint Diodes_SMD:D_SMA)
(datasheet http://www.smc-diodes.com/propdf/S1A-S1M%20N0560%20REV.B.pdf)
(fields
(field (name mpn) S1MTR)
(field (name digikey) 1655-1506-2-ND))
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B6C1))
(comp (ref D6)
(value LED)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Red)
(field (name mpn) CMD15-21VRD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) 1.9V)
(field (name req_Vin) "3.3 V")
(field (name ds_Vf) "2.0 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B6CE))
(comp (ref R6)
(value 270)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B6D4))
(comp (ref Q4)
(value DMN2041L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name mpn) DMN2041L-7))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B8DF))
(comp (ref R7)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B8F7))
(comp (ref D7)
(value S1MTR)
(footprint Diodes_SMD:D_SMA)
(datasheet http://www.smc-diodes.com/propdf/S1A-S1M%20N0560%20REV.B.pdf)
(fields
(field (name mpn) S1MTR)
(field (name digikey) 1655-1506-2-ND))
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B90F))
(comp (ref D8)
(value LED)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Red)
(field (name mpn) CMD15-21VRD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) 1.9V)
(field (name req_Vin) "3.3 V")
(field (name ds_Vf) "2.0 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B91C))
(comp (ref R8)
(value 270)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A06B922))
(comp (ref U2)
(value TMP102)
(footprint Bitraf:SOT-563)
(fields
(field (name ds_Vin) "1.4 - 3.6 V")
(field (name mpn) TMP102AIDRLT))
(libsource (lib tmp102) (part TMP102))
(sheetpath (names /) (tstamps /))
(tstamp 5A06EA28))
(comp (ref R24)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A0704C8))
(comp (ref R25)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A07097D))
(comp (ref R26)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A070B7E))
(comp (ref Q5)
(value DMN2041L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name mpn) DMN2041L-7))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5A0750FA))
(comp (ref R9)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A075112))
(comp (ref D9)
(value S1MTR)
(footprint Diodes_SMD:D_SMA)
(datasheet http://www.smc-diodes.com/propdf/S1A-S1M%20N0560%20REV.B.pdf)
(fields
(field (name mpn) S1MTR)
(field (name digikey) 1655-1506-2-ND))
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A075130))
(comp (ref D10)
(value LED)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Red)
(field (name mpn) CMD15-21VRD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) 1.9V)
(field (name req_Vin) "3.3 V")
(field (name ds_Vf) "2.0 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A07513D))
(comp (ref R10)
(value 270)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A075143))
(comp (ref D18)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A078559))
(comp (ref R18)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A07855F))
(comp (ref D19)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A078774))
(comp (ref R19)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A07877A))
(comp (ref D20)
(value BZX384C4V7)
(footprint smd-semi:SOD-323)
(fields
(field (name mpn) BZX384C4V7-E3-08))
(libsource (lib device) (part D_Zener))
(sheetpath (names /) (tstamps /))
(tstamp 5A0799D3))
(comp (ref R20)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A0799D9))
(comp (ref Q6)
(value DMN2041L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(fields
(field (name mpn) DMN2041L-7))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5A07A501))
(comp (ref R11)
(value 10k)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A07A519))
(comp (ref D11)
(value S1MTR)
(footprint Diodes_SMD:D_SMA)
(datasheet http://www.smc-diodes.com/propdf/S1A-S1M%20N0560%20REV.B.pdf)
(fields
(field (name mpn) S1MTR)
(field (name digikey) 1655-1506-2-ND))
(libsource (lib device) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A07A531))
(comp (ref D12)
(value LED)
(footprint IPC7351-Nominal:LEDC3216X110)
(fields
(field (name color) Red)
(field (name mpn) CMD15-21VRD/TR8)
(field (name role) LED)
(field (name req_I) "5 mA")
(field (name req_Vf) 1.9V)
(field (name req_Vin) "3.3 V")
(field (name ds_Vf) "2.0 V"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A07A53E))
(comp (ref R12)
(value 270)
(footprint IPC7351-Nominal:RESC1005X38)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A07A544))
(comp (ref C3)
(value 0.1u)
(footprint IPC7351-Nominal:CAPC2012X70)
(fields
(field (name ta_value) 0.1u)
(field (name req_voltage) 35V)
(field (name mpn) GMK212BJ104KGHT))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A06012E))
(comp (ref C5)
(value 22u)
(footprint IPC7351-Nominal:CAPC2012X70)
(fields
(field (name ta_ref) C4)
(field (name voltage) 10V)
(field (name mpn) CL21A226MQCLQNC))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A060138))
(comp (ref C2)
(value 10u)
(footprint IPC7351-Nominal:CAPC2012X70)
(fields
(field (name ta_ref) C1)
(field (name req_voltage) 35V)
(field (name mpn) GMK212BBJ106KG-T))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A060142))
(comp (ref C6)
(value 22u)
(footprint IPC7351-Nominal:CAPC2012X70)
(fields
(field (name ta_ref) C5)
(field (name voltage) 10V)
(field (name mpn) CL21A226MQCLQNC))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A06014C))
(comp (ref P4)
(value 12V)
(footprint Bitraf:har-flexicon_2,54_TSPH-02_T56_BK)
(fields
(field (name mpn) 14010213102000))
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 5A060154))
(comp (ref U1)
(value TPS54202)
(footprint TO_SOT_Packages_SMD:SOT-23-6_Handsoldering)
(datasheet http://www.ti.com/lit/ds/symlink/tps54202.pdf)
(fields
(field (name ta) "Figure 16. 5-V, 2-A Reference Design")
(field (name mpn) TPS54202DDCT)
(field (name Iout) 2A)
(field (name Vout) 5V))
(libsource (lib tps54202) (part TPS54202))
(sheetpath (names /) (tstamps /))
(tstamp 5A06016B))
(comp (ref R21)
(value 100k)
(footprint IPC7351-Nominal:RESC1005X38)
(fields
(field (name ta_ref) R2)
(field (name mpn) RC0402FR-07100KL))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A060174))
(comp (ref C1)
(value 0.1u)
(footprint IPC7351-Nominal:CAPC2012X70)
(fields
(field (name ta_ref) C3)
(field (name voltage) 10V)
(field (name mpn) CL21B104MBCNNNC))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A06019C))
(comp (ref L1)
(value 15u)
(footprint Inductors_SMD:L_Taiyo-Yuden_NR-80xx)
(fields
(field (name ta_ref) L1)
(field (name mpn) NRS8040T150MJGJ))
(libsource (lib device) (part L_Core_Ferrite))
(sheetpath (names /) (tstamps /))
(tstamp 5A0601A5))
(comp (ref R22)
(value 13.3k)
(footprint IPC7351-Nominal:RESC1005X38)
(fields
(field (name ta_ref) R3)
(field (name mpn) RC0402FR-0713K3L))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A0601BB))
(comp (ref C4)
(value 75p)
(footprint IPC7351-Nominal:CAPC1005X55)
(fields
(field (name ta_ref) C6)
(field (name voltage) 10V)
(field (name mpn) GRM1555C1H750JA01D))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A0601C5))
(comp (ref TP1)
(value +5V)
(footprint Connectors_TestPoints:Test_Point_Pad_d1.0mm)
(fields
(field (name assembly) "footprint only"))
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 5A0601CE))
(comp (ref P1)
(value OUTPUTS)
(footprint Bitraf:har-flexicon_2,54_TSPH-12_T56_BK)
(fields
(field (name mpn) 14011213102000))
(libsource (lib conn) (part Conn_01x12))
(sheetpath (names /) (tstamps /))
(tstamp 5A0A1C14))
(comp (ref P3)
(value RASPBERRY_PI)
(footprint Socket_Strips:Socket_Strip_Straight_2x20_Pitch2.54mm)
(fields
(field (name mpn) PPTC202LFBN-RC))
(libsource (lib alpha-misc) (part RASPBERRY_PI))
(sheetpath (names /) (tstamps /))
(tstamp 5A0C8956)))
(libparts
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(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 conn) (part Conn_01x02)
(description "Generic connector, single row, 01x02")
(docs ~)
(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 conn) (part Conn_01x05)
(description "Generic connector, single row, 01x05")
(docs ~)
(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 conn) (part Conn_01x08)
(description "Generic connector, single row, 01x08")
(docs ~)
(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_01x08))
(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))))
(libpart (lib conn) (part Conn_01x12)
(description "Generic connector, single row, 01x12")
(docs ~)
(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_01x12))
(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))))
(libpart (lib conn) (part Conn_02x02_Odd_Even)
(description "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers)")
(docs ~)
(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_02x02_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))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part D_Zener)
(description "Zener Diode")
(docs https://en.wikipedia.org/wiki/Zener_diode)
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Zener))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(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 device) (part L_Core_Ferrite)
(description "Inductor with Ferrite Core")
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L_Core_Ferrite))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib mechanical) (part Mounting_Hole)
(description "Mounting Hole without connection")
(footprints
(fp Mounting?Hole*)
(fp Hole*))
(fields
(field (name Reference) MK)
(field (name Value) Mounting_Hole)))
(libpart (lib device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFETwith substrate diode (general)")
(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)
(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 alpha-misc) (part RASPBERRY_PI)
(fields
(field (name Reference) U)
(field (name Value) RASPBERRY_PI))
(pins
(pin (num 1) (name 3.3V) (type power_in))
(pin (num 2) (name 5V) (type power_in))
(pin (num 3) (name GPIO2/SDA1) (type BiDi))
(pin (num 4) (name 5V) (type power_in))
(pin (num 5) (name GPIO3/SCL1) (type BiDi))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name GPIO4/GCLK) (type BiDi))
(pin (num 8) (name GPIO14/TXD0) (type BiDi))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name GPIO15/RXD0) (type BiDi))
(pin (num 11) (name GPIO17/GEN0) (type BiDi))
(pin (num 12) (name GPIO18/GEN1/PWM0) (type BiDi))
(pin (num 13) (name GPIO27/GEN2) (type BiDi))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name GPIO22/GEN3) (type BiDi))
(pin (num 16) (name GPIO23/GEN4) (type BiDi))
(pin (num 17) (name 3.3V) (type input))
(pin (num 18) (name GPIO24/GEN5) (type BiDi))
(pin (num 19) (name GPIO10/SPI0_MOSI) (type BiDi))
(pin (num 20) (name GND) (type power_in))
(pin (num 21) (name GPIO9/SPI0_MISO) (type BiDi))
(pin (num 22) (name GPIO25/GEN6) (type BiDi))
(pin (num 23) (name GPIO11/SPI0_SCK) (type BiDi))
(pin (num 24) (name GPIO08/~SPI0_CE) (type BiDi))
(pin (num 25) (name GND) (type power_in))
(pin (num 26) (name GPIO07/~SPI1_CE) (type BiDi))
(pin (num 27) (name ID_SD) (type BiDi))
(pin (num 28) (name ID_SC) (type output))
(pin (num 29) (name GPIO5) (type BiDi))
(pin (num 30) (name GND) (type power_in))
(pin (num 31) (name GPIO6) (type BiDi))
(pin (num 32) (name GPIO12/PWM0) (type BiDi))
(pin (num 33) (name GPIO13/PWM1) (type BiDi))
(pin (num 34) (name GND) (type power_in))
(pin (num 35) (name GPIO19/SPI1_MISO) (type BiDi))
(pin (num 36) (name GPIO16) (type BiDi))
(pin (num 37) (name GPIO26) (type BiDi))
(pin (num 38) (name GPIO20/SPI1_MOSI) (type BiDi))
(pin (num 39) (name GND) (type power_in))
(pin (num 40) (name GPIO21/SPI1_SCK) (type BiDi))))
(libpart (lib conn) (part TEST_1P)
(description point)
(fields
(field (name Reference) J)
(field (name Value) TEST_1P))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib tmp102) (part TMP102)
(description "Low-Power Digital Temperature Sensor With SMBus and Two-Wire Serial")
(footprints
(fp SOT-*))
(fields
(field (name Reference) U)
(field (name Value) TMP102))
(pins
(pin (num 1) (name SCL) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ALERT) (type input))
(pin (num 4) (name ADD0) (type input))
(pin (num 5) (name V+) (type power_in))
(pin (num 6) (name SDA) (type BiDi))))
(libpart (lib tps54202) (part TPS54202)
(docs http://www.ti.com/lit/ds/symlink/tps54202.pdf)
(footprints
(fp SOT-23-6*))
(fields
(field (name Reference) U)
(field (name Value) TPS54202))
(pins
(pin (num 1) (name GND) (type input))
(pin (num 2) (name SW) (type input))
(pin (num 3) (name Vin) (type input))
(pin (num 4) (name FB) (type input))
(pin (num 5) (name En) (type input))
(pin (num 6) (name BOOT) (type input)))))
(libraries
(library (logical mechanical)
(uri /usr/share/kicad/library/mechanical.lib))
(library (logical tps54202)
(uri /home/trygvis/dev/com.github/jonnor/dlock-oslo/hardware/alpha-1/symbols/tps54202.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical tmp102)
(uri /home/trygvis/dev/com.github/jonnor/dlock-oslo/hardware/alpha-1/symbols/tmp102.lib))
(library (logical alpha-misc)
(uri /home/trygvis/dev/com.github/jonnor/dlock-oslo/hardware/alpha-1/symbols/alpha-misc.lib))
(library (logical device)
(uri /usr/share/kicad/library/device.lib)))
(nets
(net (code 1) (name "Net-(D12-Pad1)")
(node (ref R12) (pin 2))
(node (ref D12) (pin 1)))
(net (code 2) (name "Net-(P2-Pad6)")
(node (ref P2) (pin 6))
(node (ref R18) (pin 2)))
(net (code 3) (name "Net-(P2-Pad7)")
(node (ref P2) (pin 7))
(node (ref R19) (pin 2)))
(net (code 4) (name "Net-(P2-Pad8)")
(node (ref P2) (pin 8))
(node (ref R20) (pin 2)))
(net (code 5) (name /BOOT)
(node (ref U1) (pin 6))
(node (ref C1) (pin 1)))
(net (code 6) (name /SW)
(node (ref C1) (pin 2))
(node (ref L1) (pin 2))
(node (ref U1) (pin 2)))
(net (code 7) (name /FB)
(node (ref C4) (pin 2))
(node (ref R21) (pin 2))
(node (ref U1) (pin 4))
(node (ref R22) (pin 1)))
(net (code 8) (name "Net-(D8-Pad1)")
(node (ref R8) (pin 2))
(node (ref D8) (pin 1)))
(net (code 9) (name "Net-(P2-Pad3)")
(node (ref P2) (pin 3))
(node (ref R15) (pin 2)))
(net (code 10) (name "Net-(P2-Pad4)")
(node (ref R16) (pin 2))
(node (ref P2) (pin 4)))
(net (code 11) (name "Net-(P2-Pad5)")
(node (ref R17) (pin 2))
(node (ref P2) (pin 5)))
(net (code 12) (name "Net-(D6-Pad1)")
(node (ref R6) (pin 2))
(node (ref D6) (pin 1)))
(net (code 13) (name "Net-(D10-Pad1)")
(node (ref D10) (pin 1))
(node (ref R10) (pin 2)))
(net (code 14) (name /TMP102_SDA)
(node (ref U2) (pin 6))
(node (ref R25) (pin 2))
(node (ref P3) (pin 3)))
(net (code 15) (name /TMP102_SCL)