-
Notifications
You must be signed in to change notification settings - Fork 5
/
dragon.net
1179 lines (1179 loc) · 41.6 KB
/
dragon.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware\dragon.sch)
(date "5/28/2018 11:50:33 PM")
(tool "Eeschema (5.0.0-rc2-dev-321-g78161b592)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "DC801 Badge - Defcon 26")
(company DC801)
(rev 1.0)
(date 2018-03-06)
(source dragon.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U7)
(value BMD-300-A-R)
(footprint lib_fp:RIGADO_BMD-300-A-R)
(datasheet 1604-1006-1-ND)
(fields
(field (name Field4) BMD-300-A-R)
(field (name Field5) "Mod Ble 4.2 Nordic Nrf52832 Soc")
(field (name Field6) https://www.digikey.com/product-detail/en/rigado-inc/BMD-300-A-R/1604-1006-1-ND/5878285?WT.z_cid=ref_snapeda&utm_source=snapeda&utm_medium=aggregator&utm_campaign=buynow)
(field (name Field7) "Module Rigado")
(field (name Field8) Rigado))
(libsource (lib BMD-300-A-R) (part BMD-300-A-R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E10CD))
(comp (ref D3)
(value RED)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E7712))
(comp (ref R7)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E780E))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E78CA))
(comp (ref J1)
(value "Micro USB")
(footprint lib_fp:MicroUSB-10118192-0001LF)
(libsource (lib Connector_Specialized) (part USB_B_Micro))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E79EA))
(comp (ref D4)
(value RED)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E872E))
(comp (ref R8)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E8734))
(comp (ref D5)
(value YEL)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E8B60))
(comp (ref R9)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E8B66))
(comp (ref D6)
(value YEL)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E8B6D))
(comp (ref R10)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E8B73))
(comp (ref D8)
(value GRN)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E9130))
(comp (ref R12)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E9136))
(comp (ref D9)
(value GRN)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E913D))
(comp (ref R13)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E9143))
(comp (ref D10)
(value GRN)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E914A))
(comp (ref R14)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E9150))
(comp (ref D11)
(value YEL)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E985C))
(comp (ref R15)
(value 75R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9E9862))
(comp (ref C4)
(value 4.7uF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AAD6BF8))
(comp (ref U3)
(value MCP73832-2-OT)
(footprint TO_SOT_Packages_SMD:TSOT-23-5)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf)
(libsource (lib mcp73832-2-ot) (part MCP73832-2-OT))
(sheetpath (names /) (tstamps /))
(tstamp 5AAE375A))
(comp (ref D1)
(value RED)
(footprint LEDs:LED_0603)
(libsource (lib Device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5AAEBDD7))
(comp (ref R3)
(value 470R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AAEBFC6))
(comp (ref R4)
(value 2.0k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AB21119))
(comp (ref C6)
(value 4.7uF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AB2AB89))
(comp (ref J3)
(value "LiPo Battery")
(footprint Connectors_JST:JST_PH_S2B-PH-SM4-TB_02x2.00mm_Angled)
(libsource (lib Connector_Generic) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 5AB34F78))
(comp (ref U2)
(value FT230XS)
(footprint Housings_SSOP:SSOP-16_3.9x4.9mm_Pitch0.635mm)
(datasheet http://www.ftdichip.com/Products/ICs/FT230X.html)
(libsource (lib Interface_USB) (part FT230XS))
(sheetpath (names /) (tstamps /))
(tstamp 5AB5F11B))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AB6A28D))
(comp (ref R1)
(value 27R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5ABA8C4B))
(comp (ref R2)
(value 27R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5ABA9005))
(comp (ref C2)
(value 47pF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5ABA923D))
(comp (ref C1)
(value 47pF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5ABAFD3B))
(comp (ref C5)
(value 1nF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5ABD88B7))
(comp (ref R5)
(value 806k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5ABE6923))
(comp (ref R6)
(value 2M)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5ABE6B7A))
(comp (ref U6)
(value TPS73633DBVT)
(footprint TO_SOT_Packages_SMD:TSOT-23-5)
(fields
(field (name Field4) "SOT-23-5 Texas Instruments")
(field (name Field5) TPS73633DBVT)
(field (name Field6) Good)
(field (name Field7) "Texas Instruments")
(field (name Field8) "Cap-Free, NMOS, 400mA Low Dropout Regulator with Reverse Current Protection 5-SOT-23 -40 to 125"))
(libsource (lib TPS73233DBVT) (part TPS73233DBVT))
(sheetpath (names /) (tstamps /))
(tstamp 5AC14820))
(comp (ref D2)
(value D_Schottky)
(footprint Diodes_SMD:D_0603)
(libsource (lib Device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5AC14BFB))
(comp (ref SW1)
(value Power)
(footprint Buttons_Switches_SMD:SW_SPDT_CK-JS102011SAQN)
(libsource (lib Switch) (part SW_SPDT))
(sheetpath (names /) (tstamps /))
(tstamp 5AC15199))
(comp (ref R17)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AC15DAB))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AC15EC5))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AC16D63))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5ACA666E))
(comp (ref SW2)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_B3S-1000)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD08444))
(comp (ref R21)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD08570))
(comp (ref SW3)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_B3S-1000)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD271AD))
(comp (ref R22)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD271B3))
(comp (ref SW4)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_B3S-1000)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD314A8))
(comp (ref R23)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD314AE))
(comp (ref SW5)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_B3S-1000)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD314BE))
(comp (ref R24)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD314C4))
(comp (ref SW6)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_B3S-1000)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD46F1C))
(comp (ref R25)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD46F22))
(comp (ref SW7)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_B3S-1000)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD46F32))
(comp (ref R26)
(value 10k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD46F38))
(comp (ref J5)
(value LCD)
(footprint lib_fp:XF2L-1035-1A)
(libsource (lib Connector_Generic) (part Conn_01x10))
(sheetpath (names /) (tstamps /))
(tstamp 5AD9FAB4))
(comp (ref R20)
(value 33R)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5ADCE1BC))
(comp (ref J2)
(value Micro_SD_Card_SPI)
(footprint lib_fp:MicroSD-Socket-1140084168)
(libsource (lib MicroSD-SPI) (part Micro_SD_Card_SPI))
(sheetpath (names /) (tstamps /))
(tstamp 5AA5E242))
(comp (ref U1)
(value "Minibadge 1")
(footprint lib_fp:SAINTCON-Minibadge)
(libsource (lib saintcon-minibadge) (part SAINTCON-Minibadge))
(sheetpath (names /) (tstamps /))
(tstamp 5AABA759))
(comp (ref U4)
(value "Minibadge 2")
(footprint lib_fp:SAINTCON-Minibadge)
(libsource (lib saintcon-minibadge) (part SAINTCON-Minibadge))
(sheetpath (names /) (tstamps /))
(tstamp 5AB80290))
(comp (ref J4)
(value JTAG)
(footprint Pin_Headers:Pin_Header_Straight_2x05_Pitch1.27mm_SMD)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even))
(sheetpath (names /) (tstamps /))
(tstamp 5AD23C8D))
(comp (ref R27)
(value 10M)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B131742))
(comp (ref J9)
(value SPKR_DRV)
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Connector_Generic) (part Conn_01x01))
(sheetpath (names /) (tstamps /))
(tstamp 5B4106CD))
(comp (ref U5)
(value SHITTY_ADDON)
(footprint lib_fp:Badgelife-Shitty-2x2-NotRotated)
(libsource (lib shitty_addon) (part SHITTY_ADDON))
(sheetpath (names /) (tstamps /))
(tstamp 5B4239F2))
(comp (ref R18)
(value 4.7k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B45C805))
(comp (ref R19)
(value 4.7k)
(footprint Resistors_SMD:R_0201)
(libsource (lib Device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B45D272))
(comp (ref J10)
(value SPKR_GND)
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Connector_Generic) (part Conn_01x01))
(sheetpath (names /) (tstamps /))
(tstamp 5B4F910C))
(comp (ref J11)
(value 3.3V)
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Connector_Generic) (part Conn_01x01))
(sheetpath (names /) (tstamps /))
(tstamp 5B4F925C))
(comp (ref J6)
(value GND)
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Connector_Generic) (part Conn_01x01))
(sheetpath (names /) (tstamps /))
(tstamp 5B4F946A))
(comp (ref J7)
(value UART_TX)
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Connector_Generic) (part Conn_01x01))
(sheetpath (names /) (tstamps /))
(tstamp 5B4F9470))
(comp (ref J8)
(value UART_RX)
(footprint Wire_Pads:SolderWirePad_single_0-8mmDrill)
(libsource (lib Connector_Generic) (part Conn_01x01))
(sheetpath (names /) (tstamps /))
(tstamp 5B4F9476))
(comp (ref Q1)
(value FDN360P)
(footprint Package_TO_SOT_SMD:SuperSOT-3)
(libsource (lib Device) (part Q_PMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5BC442C8))
(comp (ref SW8)
(value TEST_2P)
(footprint Measurement_Points:Test_Point_2Pads)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5ACC3058))
(comp (ref C11)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5ADE1AB5))
(comp (ref C12)
(value 0.1uF)
(footprint Capacitors_SMD:C_0201)
(libsource (lib Device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AE17F74))
(comp (ref U8)
(value SHITTY_ADDON)
(footprint lib_fp:Badgelife-Shitty-2x2-NotRotated)
(libsource (lib shitty_addon) (part SHITTY_ADDON))
(sheetpath (names /) (tstamps /))
(tstamp 5AC5433D)))
(libparts
(libpart (lib BMD-300-A-R) (part BMD-300-A-R)
(fields
(field (name Reference) U)
(field (name Value) BMD-300-A-R)
(field (name Footprint) RIGADO_BMD-300-A-R)
(field (name Datasheet) 1604-1006-1-ND)
(field (name Field4) BMD-300-A-R)
(field (name Field5) "Mod Ble 4.2 Nordic Nrf52832 Soc")
(field (name Field6) https://www.digikey.com/product-detail/en/rigado-inc/BMD-300-A-R/1604-1006-1-ND/5878285?WT.z_cid=ref_snapeda&utm_source=snapeda&utm_medium=aggregator&utm_campaign=buynow)
(field (name Field7) "Module Rigado")
(field (name Field8) Rigado))
(pins
(pin (num 1) (name GND1) (type power_in))
(pin (num 2) (name GND1) (type power_in))
(pin (num 3) (name GND1) (type power_in))
(pin (num 4) (name GND1) (type power_in))
(pin (num 5) (name GND1) (type power_in))
(pin (num 6) (name P0.25) (type BiDi))
(pin (num 7) (name P0.26) (type BiDi))
(pin (num 8) (name P0.27) (type BiDi))
(pin (num 9) (name P0.28) (type BiDi))
(pin (num 10) (name P0.29) (type BiDi))
(pin (num 11) (name P0.30) (type BiDi))
(pin (num 12) (name P0.31) (type BiDi))
(pin (num 13) (name P0.00/XTAL1) (type BiDi))
(pin (num 14) (name P0.01/XTAL2) (type BiDi))
(pin (num 15) (name P0.02/AIN0) (type BiDi))
(pin (num 16) (name GND1) (type power_in))
(pin (num 17) (name VCC) (type power_in))
(pin (num 18) (name GND1) (type power_in))
(pin (num 19) (name P0.03/AIN1) (type BiDi))
(pin (num 20) (name P0.04/AIN2) (type BiDi))
(pin (num 21) (name P0.05/AIN3) (type BiDi))
(pin (num 22) (name P0.06) (type BiDi))
(pin (num 23) (name P0.07) (type BiDi))
(pin (num 24) (name P0.08) (type BiDi))
(pin (num 25) (name P0.09/NFC1) (type BiDi))
(pin (num 26) (name P0.10/NFC2) (type BiDi))
(pin (num 27) (name P0.11) (type BiDi))
(pin (num 28) (name P0.12) (type BiDi))
(pin (num 29) (name GND1) (type power_in))
(pin (num 30) (name GND1) (type power_in))
(pin (num 31) (name P0.13) (type BiDi))
(pin (num 32) (name P0.14/TRACEDATA[3]) (type BiDi))
(pin (num 33) (name P0.15/TRACEDATA[2]) (type BiDi))
(pin (num 34) (name P0.16/TRACEDATA[1]) (type BiDi))
(pin (num 35) (name P0.17) (type BiDi))
(pin (num 36) (name P0.18/TRACEDATA[0]/SWO) (type BiDi))
(pin (num 37) (name P0.19) (type BiDi))
(pin (num 38) (name P0.20/TRACECLK) (type BiDi))
(pin (num 39) (name P0.21/!RESET) (type BiDi))
(pin (num 40) (name P0.22) (type BiDi))
(pin (num 41) (name P0.23) (type BiDi))
(pin (num 42) (name P0.24) (type BiDi))
(pin (num 43) (name SWCLK) (type input))
(pin (num 44) (name SWDIO) (type BiDi))
(pin (num 45) (name GND1) (type power_in))
(pin (num 46) (name GND1) (type power_in))
(pin (num 47) (name GND1) (type power_in))))
(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 Connector_Generic) (part Conn_01x01)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x02)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_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 Connector_Generic) (part Conn_01x10)
(description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x10))
(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))))
(libpart (lib Connector_Generic) (part Conn_02x05_Odd_Even)
(description "Generic connector, double row, 02x05, 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_02x05_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))))
(libpart (lib Device) (part D_Schottky)
(description "Schottky diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp *:D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Interface_USB) (part FT230XS)
(description "Full Speed USB to Basic UART, SSOP-16")
(docs http://www.ftdichip.com/Products/ICs/FT230X.html)
(footprints
(fp SSOP*3.9x4.9*P0.635mm*))
(fields
(field (name Reference) U)
(field (name Value) FT230XS)
(field (name Footprint) Package_SO:SSOP-16_3.9x4.9mm_P0.635mm))
(pins
(pin (num 1) (name TXD) (type output))
(pin (num 2) (name ~RTS) (type input))
(pin (num 3) (name VCCIO) (type power_in))
(pin (num 4) (name RXD) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name ~CTS) (type input))
(pin (num 7) (name CBUS2) (type BiDi))
(pin (num 8) (name USBDP) (type BiDi))
(pin (num 9) (name USBDM) (type BiDi))
(pin (num 10) (name 3V3OUT) (type power_out))
(pin (num 11) (name ~RESET) (type input))
(pin (num 12) (name VCC) (type power_in))
(pin (num 13) (name GND) (type power_in))
(pin (num 14) (name CBUS1) (type BiDi))
(pin (num 15) (name CBUS0) (type BiDi))
(pin (num 16) (name CBUS3) (type BiDi))))
(libpart (lib Device) (part LED)
(description "LED generic")
(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 mcp73832-2-ot) (part MCP73832-2-OT)
(aliases
(alias MCP73832-5-OT)
(alias MCP73832-4-OT)
(alias MCP73832-3-OT)
(alias MCP73831-2-OT)
(alias MCP73831-5-OT)
(alias MCP73831-4-OT)
(alias MCP73831-3-OT))
(description "Single cell, Li-Ion/Li-Po charge management controller, 4.20V, Open-Drain Status Output, in SOT23-5 package")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf)
(fields
(field (name Reference) U)
(field (name Value) MCP73832-2-OT)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23-5))
(pins
(pin (num 1) (name STAT) (type output))
(pin (num 2) (name Vss) (type power_in))
(pin (num 3) (name Vbat) (type power_out))
(pin (num 4) (name Vin) (type power_in))
(pin (num 5) (name PROG) (type input))))
(libpart (lib MicroSD-SPI) (part Micro_SD_Card_SPI)
(fields
(field (name Reference) J)
(field (name Value) Micro_SD_Card_SPI))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name /CS) (type input))
(pin (num 3) (name DI) (type input))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name CLK) (type input))
(pin (num 6) (name VSS) (type power_in))
(pin (num 7) (name DO) (type output))
(pin (num 8) (name RSV) (type input))
(pin (num 9) (name SHIELD) (type passive))))
(libpart (lib Device) (part Q_PMOS_GSD)
(description "Transistor P-MOSFET with substrate diode (general)")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_PMOS_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 saintcon-minibadge) (part SAINTCON-Minibadge)
(fields
(field (name Reference) U)
(field (name Value) SAINTCON-Minibadge))
(pins
(pin (num 1) (name +5V) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name MISO) (type output))
(pin (num 4) (name SCK) (type input))
(pin (num 5) (name MOSI) (type input))
(pin (num 6) (name CS) (type input))
(pin (num 7) (name +3v3) (type power_in))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name NC) (type NotConnected))
(pin (num 10) (name NC) (type NotConnected))
(pin (num 11) (name NC) (type NotConnected))
(pin (num 12) (name NC) (type NotConnected))
(pin (num 13) (name SCL) (type input))
(pin (num 14) (name SDA) (type BiDi))
(pin (num 15) (name +3v3) (type power_in))
(pin (num 16) (name GND) (type power_in))))
(libpart (lib shitty_addon) (part SHITTY_ADDON)
(fields
(field (name Reference) U)
(field (name Value) SHITTY_ADDON))
(pins
(pin (num 1) (name Vcc) (type power_in))
(pin (num 2) (name SDA) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name SCL) (type BiDi))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Switch) (part SW_SPDT)
(description "Switch, single pole double throw")
(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 TPS73233DBVT) (part TPS73233DBVT)
(fields
(field (name Reference) U)
(field (name Value) TPS73233DBVT)
(field (name Footprint) SOT95P280X145-5N)
(field (name Datasheet) "1.02 USD")
(field (name Field4) "SOT-23-5 Texas Instruments")
(field (name Field5) TPS73233DBVT)
(field (name Field7) "Texas Instruments")
(field (name Field8) "Cap-Free, NMOS, 250mA Low Dropout Regulator with Reverse Current Protection 5-SOT-23 -40 to 125"))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NR/FB) (type input))
(pin (num 5) (name OUT) (type output))))
(libpart (lib Connector_Specialized) (part USB_B_Micro)
(aliases
(alias USB_B_Mini))
(description "USB Micro Type B connector")
(docs ~)
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_B_Micro))
(pins
(pin (num 1) (name VBUS) (type power_out))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_out))
(pin (num 6) (name Shield) (type passive)))))
(libraries
(library (logical BMD-300-A-R)
(uri C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware//lib_sch/BMD-300-A-R.lib))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical Connector_Specialized)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Specialized.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Interface_USB)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Interface_USB.lib"))
(library (logical MicroSD-SPI)
(uri C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware//lib_sch/MicroSD-SPI.lib))
(library (logical Switch)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Switch.lib"))
(library (logical TPS73233DBVT)
(uri C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware//lib_sch/TPS73233DBVT.lib))
(library (logical mcp73832-2-ot)
(uri C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware//lib_sch/mcp73832-2-ot.lib))
(library (logical saintcon-minibadge)
(uri C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware//lib_sch/saintcon-minibadge.lib))
(library (logical shitty_addon)
(uri C:\Users\hamster\Documents\Development\dc801\gitlab\dc26-party-badge\Hardware//lib_sch/shitty_addon.lib)))
(nets
(net (code 1) (name "Net-(U4-Pad10)")
(node (ref U4) (pin 10)))
(net (code 2) (name "Net-(U4-Pad11)")
(node (ref U4) (pin 11)))
(net (code 3) (name "Net-(U4-Pad12)")
(node (ref U4) (pin 12)))
(net (code 4) (name +3V3)
(node (ref R22) (pin 1))
(node (ref R23) (pin 1))
(node (ref R24) (pin 1))
(node (ref R25) (pin 1))
(node (ref R26) (pin 1))
(node (ref C10) (pin 1))
(node (ref J5) (pin 8))
(node (ref U4) (pin 7))
(node (ref J5) (pin 7))
(node (ref R21) (pin 1))
(node (ref J11) (pin 1))
(node (ref C12) (pin 2))
(node (ref C11) (pin 2))
(node (ref U8) (pin 1))
(node (ref R19) (pin 2))
(node (ref U1) (pin 15))
(node (ref U1) (pin 7))
(node (ref R18) (pin 2))
(node (ref J2) (pin 4))
(node (ref R27) (pin 1))
(node (ref U7) (pin 17))
(node (ref J4) (pin 1))
(node (ref U4) (pin 15))
(node (ref C9) (pin 1))
(node (ref U5) (pin 1))
(node (ref U6) (pin 5)))
(net (code 5) (name GND)
(node (ref J10) (pin 1))
(node (ref C6) (pin 1))
(node (ref U7) (pin 30))
(node (ref C9) (pin 2))
(node (ref J3) (pin 2))
(node (ref J6) (pin 1))
(node (ref U5) (pin 3))
(node (ref U7) (pin 3))
(node (ref U7) (pin 29))
(node (ref C2) (pin 2))
(node (ref C1) (pin 1))
(node (ref U2) (pin 13))
(node (ref U7) (pin 1))
(node (ref U2) (pin 5))
(node (ref C3) (pin 1))
(node (ref U3) (pin 2))
(node (ref C4) (pin 1))
(node (ref U6) (pin 2))
(node (ref SW2) (pin 2))
(node (ref SW3) (pin 2))
(node (ref U7) (pin 4))
(node (ref SW4) (pin 2))
(node (ref U7) (pin 45))
(node (ref C8) (pin 2))
(node (ref C7) (pin 2))
(node (ref U7) (pin 46))
(node (ref C5) (pin 2))
(node (ref R6) (pin 1))
(node (ref J1) (pin 5))
(node (ref R17) (pin 1))
(node (ref U7) (pin 16))
(node (ref R4) (pin 1))
(node (ref U7) (pin 18))
(node (ref U7) (pin 2))
(node (ref U7) (pin 47))
(node (ref SW5) (pin 2))
(node (ref U7) (pin 5))
(node (ref C10) (pin 2))
(node (ref J5) (pin 6))
(node (ref SW6) (pin 2))
(node (ref SW7) (pin 2))
(node (ref U1) (pin 16))
(node (ref U1) (pin 2))
(node (ref U1) (pin 8))
(node (ref J2) (pin 6))
(node (ref U4) (pin 16))
(node (ref U4) (pin 2))
(node (ref U4) (pin 8))
(node (ref J4) (pin 3))
(node (ref J4) (pin 5))
(node (ref C12) (pin 1))
(node (ref U8) (pin 3))
(node (ref C11) (pin 1))
(node (ref SW8) (pin 2)))
(net (code 6) (name MINI2_CS)
(node (ref R27) (pin 2))
(node (ref SW8) (pin 1))
(node (ref U7) (pin 19))
(node (ref U4) (pin 6)))
(net (code 7) (name "Net-(U4-Pad9)")
(node (ref U4) (pin 9)))
(net (code 8) (name MOSI0)
(node (ref U1) (pin 5))
(node (ref J2) (pin 3))
(node (ref U4) (pin 5))
(node (ref U7) (pin 32)))
(net (code 9) (name MISO0)
(node (ref J2) (pin 7))
(node (ref U4) (pin 3))
(node (ref U1) (pin 3))
(node (ref U7) (pin 34)))
(net (code 10) (name SCK0)
(node (ref J2) (pin 5))
(node (ref U4) (pin 4))
(node (ref U7) (pin 33))
(node (ref U1) (pin 4)))
(net (code 11) (name SDA)
(node (ref U7) (pin 41))
(node (ref R18) (pin 1))
(node (ref U5) (pin 2))
(node (ref U1) (pin 14))
(node (ref U8) (pin 2))
(node (ref U4) (pin 14)))
(net (code 12) (name SCL)
(node (ref U5) (pin 4))
(node (ref U1) (pin 13))
(node (ref U8) (pin 4))
(node (ref R19) (pin 1))
(node (ref U4) (pin 13))
(node (ref U7) (pin 40)))
(net (code 13) (name +BATT_SW)
(node (ref R5) (pin 2))
(node (ref R10) (pin 2))
(node (ref R8) (pin 2))
(node (ref R7) (pin 2))
(node (ref U4) (pin 1))
(node (ref SW1) (pin 2))
(node (ref R12) (pin 2))
(node (ref R14) (pin 2))
(node (ref R20) (pin 1))
(node (ref R15) (pin 2))
(node (ref R13) (pin 2))
(node (ref U6) (pin 3))
(node (ref U6) (pin 1))
(node (ref R9) (pin 2))
(node (ref U1) (pin 1)))
(net (code 14) (name "Net-(J4-Pad9)")
(node (ref J4) (pin 9)))
(net (code 15) (name SWDIO)
(node (ref U7) (pin 44))
(node (ref J4) (pin 2)))
(net (code 16) (name SWCLK)
(node (ref J4) (pin 4))
(node (ref U7) (pin 43)))
(net (code 17) (name "Net-(J4-Pad6)")
(node (ref J4) (pin 6)))
(net (code 18) (name "Net-(J4-Pad7)")
(node (ref J4) (pin 7)))
(net (code 19) (name "Net-(J4-Pad8)")
(node (ref J4) (pin 8)))
(net (code 20) (name "Net-(J4-Pad10)")
(node (ref J4) (pin 10)))
(net (code 21) (name SPKR_DRV)
(node (ref U7) (pin 42))
(node (ref J9) (pin 1)))
(net (code 22) (name LCD_RESET)
(node (ref J5) (pin 4))
(node (ref U7) (pin 25)))
(net (code 23) (name "Net-(J5-Pad10)")
(node (ref J5) (pin 10))
(node (ref R20) (pin 2)))
(net (code 24) (name LCD_LED)
(node (ref U7) (pin 21))
(node (ref J5) (pin 9)))
(net (code 25) (name BUTTON_RIGHT)
(node (ref R24) (pin 2))
(node (ref SW5) (pin 1))
(node (ref U7) (pin 36)))
(net (code 26) (name BUTTON_A)
(node (ref U7) (pin 8))