-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbadge-kicad.net
1735 lines (1735 loc) · 60.4 KB
/
badge-kicad.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source "/Users/jna/Dropbox/Badge Stuff/badge files/badge-kicad/badge-kicad.sch")
(date "Sunday, January 29, 2017 'PMt' 02:52:30 PM")
(tool "Eeschema (2016-12-18 revision 3ffa37c)-master")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Defcon 25 Caesar Basge")
(company Retina)
(rev 1)
(date)
(source badge-kicad.sch)
(comment (number 1) (value "John Adams"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J2)
(value JTAG)
(footprint Pin_Headers:Pin_Header_Straight_2x05_Pitch1.27mm)
(libsource (lib badge-kicad-cache) (part JTAG))
(sheetpath (names /) (tstamps /))
(tstamp 5802E37D))
(comp (ref C1)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58035AE5))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58037277))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 580372D2))
(comp (ref C4)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5803731C))
(comp (ref C5)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5803738E))
(comp (ref C6)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 580373DF))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5803745B))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 580374DE))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 580376BF))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58037719))
(comp (ref C11)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58037777))
(comp (ref C12)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 580377D9))
(comp (ref BT1)
(value "Battery 3.7v 1000mAh")
(footprint Connectors_JST:JST_PH_S2B-PH-SM4-TB_02x2.00mm_Angled)
(libsource (lib badge-kicad-cache) (part Battery-RESCUE-badge-kicad))
(sheetpath (names /) (tstamps /))
(tstamp 58038C19))
(comp (ref C22)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5803A954))
(comp (ref SW1)
(value RESET)
(footprint MF_Switches:MF_Switches-TACT4.2MM)
(libsource (lib w_device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 58055EE5))
(comp (ref R7)
(value 100)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5805B227))
(comp (ref L3)
(value "0.0068 uH")
(footprint Inductors_NEOSID:Neosid_Inductor_SM0603CG)
(libsource (lib w_device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 5805C1BF))
(comp (ref L4)
(value "0.0068 uH")
(footprint Inductors_NEOSID:Neosid_Inductor_SM0603CG)
(libsource (lib w_device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 5805D136))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 580B278E))
(comp (ref C21)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 582A6867))
(comp (ref C20)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 582A6FBA))
(comp (ref SW3)
(value TM1000)
(footprint jna-parts:TM1000)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 584675B9))
(comp (ref R1)
(value 1K)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584792A7))
(comp (ref U13)
(value MKW01Z128)
(footprint jna-parts:98ASA00302D)
(libsource (lib badge-kicad-cache) (part MKW01Z128-RESCUE-badge-kicad))
(sheetpath (names /) (tstamps /))
(tstamp 5802DCCE))
(comp (ref U14)
(value "FT232RL SSOP")
(footprint Housings_SSOP:SSOP-28_5.3x10.2mm_Pitch0.65mm)
(libsource (lib badge-kicad-rescue) (part FT232RL-RESCUE-badge-kicad))
(sheetpath (names /) (tstamps /))
(tstamp 5848A6A4))
(comp (ref C30)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 584920D9))
(comp (ref R9)
(value 220)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584A35C6))
(comp (ref R11)
(value 220)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584A381B))
(comp (ref SP1)
(value "TDK PS1720P02")
(footprint jna-parts:TDK_PS1720PD2)
(libsource (lib badge-kicad-cache) (part SPEAKER))
(sheetpath (names /) (tstamps /))
(tstamp 58488852))
(comp (ref C32)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 584D0FE5))
(comp (ref C31)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 584D16AF))
(comp (ref D3)
(value "RED UTX")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 584D5776))
(comp (ref D4)
(value "GREEN URX")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 584D5E8B))
(comp (ref R14)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584D682C))
(comp (ref R13)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584D6967))
(comp (ref R8)
(value 10K)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584EF67E))
(comp (ref TP1)
(value PTA4)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 584FE9E2))
(comp (ref D1)
(value "RED PWROK")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5850711A))
(comp (ref R12)
(value 220)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 585083AD))
(comp (ref U15)
(value MF-REG-SOT235-3.3V-300mA)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(libsource (lib regul) (part TPS76333))
(sheetpath (names /) (tstamps /))
(tstamp 584E9D9C))
(comp (ref C13)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 584F3F01))
(comp (ref C14)
(value 10uF)
(footprint Capacitors_SMD:C_1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 584F6EC1))
(comp (ref D5)
(value "RED (CHARGING)")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 584F713D))
(comp (ref D6)
(value "GRN (DONE)")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 584F73F5))
(comp (ref R5)
(value 2k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 584FE105))
(comp (ref R15)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58503144))
(comp (ref U16)
(value MCP73831T-2ACI/OT)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(libsource (lib badge-kicad-cache) (part MCP73831T-2ACI/OT))
(sheetpath (names /) (tstamps /))
(tstamp 58506E81))
(comp (ref R16)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5850C4CF))
(comp (ref TP5)
(value GND)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 585239DE))
(comp (ref TP4)
(value VBAT)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 585246D7))
(comp (ref R2)
(value 100)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 585282BF))
(comp (ref A1)
(value 7488910092_ANTENNA)
(footprint jna-parts:Antenna_Wurth_7488910092)
(libsource (lib badge-kicad-cache) (part 7488910092_ANTENNA))
(sheetpath (names /) (tstamps /))
(tstamp 58546DF6))
(comp (ref C15)
(value 10uF)
(footprint Capacitors_SMD:C_1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 585242B5))
(comp (ref R3)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5851F753))
(comp (ref P2)
(value CONN_02X20)
(footprint jna-parts:IDC_HEADER_FEMALE)
(libsource (lib conn) (part CONN_02X20))
(sheetpath (names /) (tstamps /))
(tstamp 584E9DFB))
(comp (ref P3)
(value "FTDI BACKUP")
(footprint Pin_Headers:Pin_Header_Straight_1x06)
(libsource (lib conn) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 58528933))
(comp (ref D2)
(value "GREEN SDIO")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58573A51))
(comp (ref D7)
(value "RED RFTX")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58573C56))
(comp (ref D8)
(value "GRN RFRX")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5859231D))
(comp (ref R10)
(value 220)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5859244E))
(comp (ref SW2)
(value POWERON)
(footprint Buttons_Switches_SMD:SW_SPDT_PCM12)
(libsource (lib w_device) (part SW_SPDT))
(sheetpath (names /) (tstamps /))
(tstamp 585C7C26))
(comp (ref P4)
(value USB_MICRO_RIGHT)
(footprint MF_Connectors:MF_Connectors-MICROUSB-RIGHT)
(libsource (lib MF_Connectors) (part USB_MICRO_RIGHT))
(sheetpath (names /) (tstamps /))
(tstamp 585CC20B))
(comp (ref Q1)
(value NPN_BJT_SOT-23-3)
(footprint MF_Discrete_Semiconductor:MF_Discrete_Semiconductor-SOT-23-3)
(libsource (lib MF_Discrete_Semiconductor) (part NPN_BJT_SOT-23-3))
(sheetpath (names /) (tstamps /))
(tstamp 585D3D8E))
(comp (ref U1)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585DC2B3))
(comp (ref U2)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585DDF06))
(comp (ref U3)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585DE023))
(comp (ref U4)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585DE144))
(comp (ref U5)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E0864))
(comp (ref U6)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E086A))
(comp (ref U7)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E0870))
(comp (ref U8)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E0876))
(comp (ref U9)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E09AC))
(comp (ref U10)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E09B2))
(comp (ref U11)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E09B8))
(comp (ref U12)
(value WS2812B)
(footprint MF_LEDs:MF_LEDs-WS2812B)
(libsource (lib MF_LEDs) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 585E09BE))
(comp (ref C19)
(value 2pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58617215))
(comp (ref C24)
(value 7.5pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58617CCF))
(comp (ref C25)
(value 5.6pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58618868))
(comp (ref C23)
(value 6.8pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58618CC2))
(comp (ref C16)
(value 220pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5862F7EE))
(comp (ref C18)
(value 0.01uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5862F920))
(comp (ref L2)
(value 33nH)
(footprint Inductors_NEOSID:Neosid_Inductor_SM0603CG)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 58631573))
(comp (ref L1)
(value 4.7nH)
(footprint Inductors_NEOSID:Neosid_Inductor_SM0603CG)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 58632A45))
(comp (ref C26)
(value 100pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5863581D))
(comp (ref C27)
(value 1.2pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58635B03))
(comp (ref C28)
(value 3.3pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58635C57))
(comp (ref L5)
(value 15nH)
(footprint Inductors_NEOSID:Neosid_Inductor_SM0603CG)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 58636BF7))
(comp (ref C29)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58661270))
(comp (ref H5)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_DIN965)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5866FEEA))
(comp (ref H3)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_DIN965)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 586701C1))
(comp (ref H1)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_DIN965)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5867030E))
(comp (ref H2)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_DIN965)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 58670463))
(comp (ref H4)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_DIN965)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 586705B8))
(comp (ref H6)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_DIN965)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5867070A))
(comp (ref P5)
(value "LED OUT (DNP)")
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58679A05))
(comp (ref TP2)
(value GND)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588AFD42))
(comp (ref TP6)
(value GND)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588AFEAC))
(comp (ref TP8)
(value GND)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588B0006))
(comp (ref TP10)
(value GND)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588B0164))
(comp (ref TP3)
(value VCC)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588B2F09))
(comp (ref TP7)
(value VCC)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588B31C7))
(comp (ref TP9)
(value VCC)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588B332D))
(comp (ref TP11)
(value VCC)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 588B3497))
(comp (ref Y1)
(value EXS00A-CS02368)
(footprint Crystals:Crystal_SMD_0603_4Pads)
(libsource (lib device) (part Crystal_GND24))
(sheetpath (names /) (tstamps /))
(tstamp 588DDE4E))
(comp (ref C17)
(value 11pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588E344F))
(comp (ref C33)
(value 11pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588E3757))
(comp (ref SW4)
(value UP)
(footprint MF_Switches:MF_Switches-TACT4.2MM)
(libsource (lib w_device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 588EA42A))
(comp (ref SW5)
(value DN)
(footprint MF_Switches:MF_Switches-TACT4.2MM)
(libsource (lib w_device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 588EAFFF))
(comp (ref SW6)
(value LEFT)
(footprint MF_Switches:MF_Switches-TACT4.2MM)
(libsource (lib w_device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 588EB175))
(comp (ref SW7)
(value RIGHT)
(footprint MF_Switches:MF_Switches-TACT4.2MM)
(libsource (lib w_device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 588EB2EF))
(comp (ref SW8)
(value OK)
(footprint MF_Switches:MF_Switches-TACT4.2MM)
(libsource (lib w_device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 588EC5DC))
(comp (ref TP19)
(value SPI_CH1_MOSI)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5890C8CB))
(comp (ref TP20)
(value SPI_CH1_MISO)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5890D859))
(comp (ref TP18)
(value CLOCKOUT)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5890E013))
(comp (ref TP17)
(value SPI_CH1_SCLK)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5890E765))
(comp (ref TP12)
(value PTA19)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 589113C9))
(comp (ref TP13)
(value PTB1)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 589122A2))
(comp (ref TP14)
(value PTC1)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 58912B2C))
(comp (ref TP15)
(value PTC3)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 589130E9))
(comp (ref TP16)
(value PTC4)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5891326C)))
(libparts
(libpart (lib badge-kicad-cache) (part 7488910092_ANTENNA)
(fields
(field (name Reference) A)
(field (name Value) 7488910092_ANTENNA))
(pins
(pin (num 1) (name 1) (type NotConnected))
(pin (num 2) (name FEED) (type input))
(pin (num 3) (name 3) (type NotConnected))
(pin (num 4) (name 4) (type NotConnected))
(pin (num 5) (name 5) (type NotConnected))
(pin (num 6) (name 6) (type NotConnected))
(pin (num 7) (name 7) (type NotConnected))
(pin (num 8) (name 8) (type NotConnected))))
(libpart (lib badge-kicad-cache) (part Battery-RESCUE-badge-kicad)
(fields
(field (name Reference) BT)
(field (name Value) Battery-RESCUE-badge-kicad))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X01)
(description "Connector, single row, 01x01")
(footprints
(fp Pin_Header_Straight_1X01)
(fp Pin_Header_Angled_1X01)
(fp Socket_Strip_Straight_1X01)
(fp Socket_Strip_Angled_1X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector, single row, 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_01X06)
(description "Connector, single row, 01x06")
(footprints
(fp Pin_Header_Straight_1X06)
(fp Pin_Header_Angled_1X06)
(fp Socket_Strip_Straight_1X06)
(fp Socket_Strip_Angled_1X06))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X06))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib conn) (part CONN_02X20)
(description "Connector, double row, 02x20")
(footprints
(fp Pin_Header_Straight_2X20)
(fp Pin_Header_Angled_2X20)
(fp Socket_Strip_Straight_2X20)
(fp Socket_Strip_Angled_2X20))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X20))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P24) (type passive))
(pin (num 25) (name P25) (type passive))
(pin (num 26) (name P26) (type passive))
(pin (num 27) (name P27) (type passive))
(pin (num 28) (name P28) (type passive))
(pin (num 29) (name P29) (type passive))
(pin (num 30) (name P30) (type passive))
(pin (num 31) (name P31) (type passive))
(pin (num 32) (name P32) (type passive))
(pin (num 33) (name P33) (type passive))
(pin (num 34) (name P34) (type passive))
(pin (num 35) (name P35) (type passive))
(pin (num 36) (name P36) (type passive))
(pin (num 37) (name P37) (type passive))
(pin (num 38) (name P38) (type passive))
(pin (num 39) (name P39) (type passive))
(pin (num 40) (name P40) (type passive))))
(libpart (lib device) (part CP1)
(description "Polarised capacitor")
(footprints
(fp SMD*_Pol)
(fp C_Axial*)
(fp C_Radial*)
(fp c_elec*)
(fp C*elec)
(fp TantalC*)
(fp CP*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Crystal_GND24)
(description "Four pin crystal (GND on pins 2 and 4), e.g. in SMD package")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib badge-kicad-rescue) (part FT232RL-RESCUE-badge-kicad)
(footprints
(fp *SSOP28*))
(fields
(field (name Reference) U)
(field (name Value) FT232RL-RESCUE-badge-kicad))
(pins
(pin (num 1) (name TXD) (type output))
(pin (num 2) (name ~DTR) (type output))
(pin (num 3) (name ~RTS) (type output))
(pin (num 4) (name VCCIO) (type power_in))
(pin (num 5) (name RXD) (type input))
(pin (num 6) (name ~RI) (type input))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name NC) (type NotConnected))
(pin (num 9) (name ~DSR) (type input))
(pin (num 10) (name ~DCD) (type input))
(pin (num 11) (name ~CTS) (type input))
(pin (num 12) (name SLEEP) (type input))
(pin (num 13) (name CBUS2) (type BiDi))
(pin (num 14) (name PWREN) (type input))
(pin (num 15) (name USBD+) (type BiDi))
(pin (num 16) (name USBD-) (type BiDi))
(pin (num 17) (name 3V3OUT) (type power_out))
(pin (num 18) (name GND) (type power_in))
(pin (num 19) (name ~RESET) (type input))
(pin (num 20) (name VCC) (type power_in))
(pin (num 21) (name GND) (type power_in))
(pin (num 22) (name RXLED) (type output))
(pin (num 23) (name TXLED) (type output))
(pin (num 24) (name NC) (type NotConnected))
(pin (num 25) (name AGND) (type power_in))
(pin (num 26) (name TEST) (type input))
(pin (num 27) (name OSCI) (type input))
(pin (num 28) (name OSCO) (type output))))
(libpart (lib w_device) (part INDUCTOR)
(description Inductor)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib badge-kicad-cache) (part JTAG)
(fields
(field (name Reference) J)
(field (name Value) JTAG))
(pins
(pin (num 1) (name VTref) (type passive))
(pin (num 2) (name SWDIO/TMS) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name SWDCLK/TCK) (type output))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name SWO/TDO) (type input))
(pin (num 7) (name KEY) (type NotConnected))
(pin (num 8) (name TDI) (type output))
(pin (num 9) (name GNDdetect) (type passive))
(pin (num 10) (name ~RESET) (type openCol))))
(libpart (lib device) (part L)
(description Inductor)
(footprints
(fp Choke_*)
(fp *Coil*))
(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 "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 badge-kicad-cache) (part MCP73831T-2ACI/OT)
(fields
(field (name Reference) U)
(field (name Value) MCP73831T-2ACI/OT)
(field (name Footprint) Housings_SOT-23_SOT-143_TSOT-6:SOT-23-5))
(pins
(pin (num 1) (name STAT) (type input))
(pin (num 2) (name VSS) (type input))
(pin (num 3) (name VBAT) (type input))
(pin (num 4) (name VDD) (type input))
(pin (num 5) (name PROG) (type input))))
(libpart (lib badge-kicad-cache) (part MKW01Z128-RESCUE-badge-kicad)
(footprints
(fp LGA*))
(fields
(field (name Reference) U)
(field (name Value) MKW01Z128-RESCUE-badge-kicad)
(field (name Footprint) MKW01Z128))
(pins
(pin (num 1) (name VREFH) (type input))
(pin (num 2) (name VREFL) (type input))