-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRHS_3.net
1158 lines (1158 loc) · 43.7 KB
/
RHS_3.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 D:\holger\KiCad\Projects\HB-Sec-RHS-3\RHS_3.sch)
(date "10/15/20 19:30:59")
(tool "Eeschema (5.1.5)-3")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "RHS 3 - CR2477")
(company)
(rev 2.0)
(date)
(source RHS_3.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref IC1)
(value ATMEGA328P-A)
(footprint Package_QFP:TQFP-32_7x7mm_P0.8mm)
(fields
(field (name "LCSC Part #") C14877))
(libsource (lib RHS_3-rescue) (part ATMEGA328P-A-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 591050B1))
(comp (ref SW1)
(value Reset)
(footprint libraries:MicroSwitch_3x4)
(libsource (lib RHS_3-rescue) (part SW_PUSH-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 59105136))
(comp (ref SW2)
(value Config)
(footprint libraries:MicroSwitch_3x4)
(libsource (lib RHS_3-rescue) (part SW_PUSH-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 591051B2))
(comp (ref C1)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C49678))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5910567F))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C49678))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 59105700))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C49678))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5910572D))
(comp (ref D1)
(value "LED Red")
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C84256))
(libsource (lib RHS_3-rescue) (part LED-RESCUE-RHS_2-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 59105752))
(comp (ref D2)
(value "LED Green")
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C2297))
(libsource (lib RHS_3-rescue) (part LED-RESCUE-RHS_2-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 591057B3))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17414))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 591057F4))
(comp (ref R2)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C4310))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5910582F))
(comp (ref R3)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C4310))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5910585E))
(comp (ref P4)
(value "ISP Bottom")
(footprint libraries:ISP_Side)
(libsource (lib RHS_3-rescue) (part CONN_01X05-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5911BC8A))
(comp (ref P5)
(value "ISP Top")
(footprint libraries:ISP_Side)
(libsource (lib RHS_3-rescue) (part CONN_01X05-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5911BCE7))
(comp (ref BT1)
(value Battery)
(footprint libraries:CR2477_Surface_Mount)
(libsource (lib RHS_3-rescue) (part Battery-RESCUE-RHS_2-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 59120DBA))
(comp (ref IC2)
(value CC1101)
(footprint libraries:CC1101_Module)
(libsource (lib RHS_3-rescue) (part CC1101-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5A5E6278))
(comp (ref U1)
(value TLE4913)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name "LCSC Part #") C126654))
(libsource (lib cc1101) (part TLE4913) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E689563))
(comp (ref U2)
(value TLE4913)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name "LCSC Part #") C126654))
(libsource (lib cc1101) (part TLE4913) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E689871))
(comp (ref U3)
(value TLE4913)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name "LCSC Part #") C126654))
(libsource (lib cc1101) (part TLE4913) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E689DD5))
(comp (ref R4)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17514))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E6B2724))
(comp (ref R5)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17514))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E6B2D85))
(comp (ref R6)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17514))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E6B2F0E))
(comp (ref C4)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1710))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E732C61))
(comp (ref C5)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1710))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E733C11))
(comp (ref C6)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1710))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E733F44))
(comp (ref P6)
(value FTDI)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E68E886))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C49678))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E6B080D))
(comp (ref P7)
(value "ISP 10")
(footprint Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (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/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6B808B))
(comp (ref C10)
(value 10p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1785))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E714706))
(comp (ref C9)
(value 10p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1785))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E714ECC))
(comp (ref C8)
(value 10p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1785))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E7159B0))
(comp (ref Y1)
(value Crystal_Small)
(footprint Crystal:Crystal_SMD_3215-2Pin_3.2x1.5mm)
(datasheet https://www.mouser.de/datasheet/2/137/C-255_en-1649561.pdf)
(libsource (lib Device) (part Crystal_Small) (description "Two pin crystal, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E71C89C))
(comp (ref C11)
(value 9p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E71DA5C))
(comp (ref C12)
(value 9p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E71E581))
(comp (ref R7)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17514))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E930F67))
(comp (ref C13)
(value 10p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C1785))
(libsource (lib RHS_3-rescue) (part C-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E931226))
(comp (ref J1)
(value "Glass Breakage Detector")
(footprint Connector_JST:JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal)
(datasheet https://cdn-reichelt.de/documents/datenblatt/C100/JST_XH_DB_EN.pdf)
(fields
(field (name Reichelt) https://www.reichelt.de/jst-stiftleiste-gerade-1x2-polig-xh-jst-xh2p-st-p185073.html?&trstct=pol_1&nbc=1))
(libsource (lib Connector) (part Screw_Terminal_01x02) (description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E95EDB4))
(comp (ref J2)
(value ANT)
(footprint Connector_Pin:Pin_D1.0mm_L10.0mm)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EA46A63))
(comp (ref C14)
(value 330µ)
(footprint Capacitor_SMD:CP_Elec_6.3x5.8)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2796CB))
(comp (ref IC3)
(value CC1101_Chip)
(footprint Package_DFN_QFN:QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm)
(fields
(field (name "LCSC Part #") C29953))
(libsource (lib cc1101) (part CC1101_Chip) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F827448))
(comp (ref X1)
(value Resonator)
(footprint Oscillator:Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm)
(fields
(field (name "LCSC Part #") C91747))
(libsource (lib cc1101) (part Resonator) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82A6AB))
(comp (ref C23)
(value 12p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1547))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F925C88))
(comp (ref C24)
(value 15p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1548))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F926ACE))
(comp (ref R8)
(value 56k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25796))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F9EA150))
(comp (ref C22)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA04295))
(comp (ref L1)
(value 12nH)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C24563))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8BFC5))
(comp (ref L2)
(value 12nH)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C24563))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8D83E))
(comp (ref C26)
(value 1p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1550))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8DEED))
(comp (ref C25)
(value 1p5)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1552))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8E692))
(comp (ref L3)
(value 18nH)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C24562))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8EC95))
(comp (ref L4)
(value 18nH)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C24562))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8F387))
(comp (ref C28)
(value 1p5)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1552))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8FF9E))
(comp (ref L5)
(value 12nH)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C24563))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA909C7))
(comp (ref L6)
(value 12nH)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C24563))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA9185C))
(comp (ref C29)
(value 3p3)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1565))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA91DBC))
(comp (ref C27)
(value 100p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1546))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA93203))
(comp (ref C21)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB9479E))
(comp (ref C20)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB9510E))
(comp (ref C19)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB952EC))
(comp (ref C18)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB954CC))
(comp (ref C17)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB956CB))
(comp (ref C16)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB95920))
(comp (ref C15)
(value 4u7)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C23733))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB95B4A))
(comp (ref JP1)
(value Jumper_NO_Small)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8BD3FD))
(comp (ref JP2)
(value Jumper_NO_Small)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8BE151))
(comp (ref Q1)
(value Si2305CDS)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name "LCSC Part #") C37577))
(libsource (lib Transistor_FET) (part Si2319CDS) (description "-4.4A Id, -40V Vds, P-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8C85CD))
(comp (ref Q2)
(value Si2305CDS)
(footprint Package_TO_SOT_SMD:SOT-23)
(fields
(field (name "LCSC Part #") C37577))
(libsource (lib Transistor_FET) (part Si2319CDS) (description "-4.4A Id, -40V Vds, P-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5F922FF9))
(comp (ref R9)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17414))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F9810D1))
(comp (ref R10)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(fields
(field (name "LCSC Part #") C17414))
(libsource (lib RHS_3-rescue) (part R-RHS_2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F98187C)))
(libparts
(libpart (lib Connector) (part Screw_Terminal_01x02)
(description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (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*:*_1x??_*))
(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_01x06)
(description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib 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 CP_Small)
(description "Polarized capacitor, small symbol")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal_Small)
(description "Two pin crystal, small symbol")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part Jumper_NO_Small)
(description "Jumper, normally open, small symbol")
(docs ~)
(footprints
(fp SolderJumper*Open*)
(fp Jumper*)
(fp TestPoint*2Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NO_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part L_Small)
(description "Inductor, small symbol")
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib RHS_3-rescue) (part ATMEGA328P-A-RHS_2-rescue)
(fields
(field (name Reference) IC)
(field (name Value) ATMEGA328P-A-RHS_2-rescue)
(field (name Footprint) TQFP32))
(pins
(pin (num 1) (name "(PCINT19/OC2B/INT1)PD3") (type BiDi))
(pin (num 2) (name "(PCINT20/XCK/T0)PD4") (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VCC) (type power_in))
(pin (num 7) (name "(PCINT6/XTAL1/TOSC1)PB6") (type BiDi))
(pin (num 8) (name "(PCINT7/XTAL2/TOSC2)PB7") (type BiDi))
(pin (num 9) (name "(PCINT21/OC0B/T1)PD5") (type BiDi))
(pin (num 10) (name "(PCINT22/OC0A/AIN0)PD6") (type BiDi))
(pin (num 11) (name "(PCINT23/AIN1)PD7") (type BiDi))
(pin (num 12) (name "(PCINT0/CLKO/ICP1)PB0") (type BiDi))
(pin (num 13) (name "(PCINT1/OC1A)PB1") (type BiDi))
(pin (num 14) (name "(PCINT2/OC1B/~SS~)PB2") (type BiDi))
(pin (num 15) (name "(PCINT3/OC2A/MOSI)PB3") (type BiDi))
(pin (num 16) (name "(PCINT4/MISO)PB4") (type BiDi))
(pin (num 17) (name "(PCINT5/SCK)PB5") (type BiDi))
(pin (num 18) (name AVCC) (type power_in))
(pin (num 19) (name ADC6) (type input))
(pin (num 20) (name AREF) (type BiDi))
(pin (num 21) (name GND) (type power_in))
(pin (num 22) (name ADC7) (type input))
(pin (num 23) (name "(PCINT8/ADC0)PC0") (type BiDi))
(pin (num 24) (name "(PCINT9/ADC1)PC1") (type BiDi))
(pin (num 25) (name "(PCINT10/ADC2)PC2") (type BiDi))
(pin (num 26) (name "(PCINT11/ADC3)PC3") (type BiDi))
(pin (num 27) (name "(PCINT12/SDA/ADC4)PC4") (type BiDi))
(pin (num 28) (name "(PCINT13/SCL/ADC5)PC5") (type BiDi))
(pin (num 29) (name "(PCINT14/~RESET~)PC6") (type BiDi))
(pin (num 30) (name "(PCINT16/RXD)PD0") (type BiDi))
(pin (num 31) (name "(PCINT17/TXD)PD1") (type BiDi))
(pin (num 32) (name "(PCINT18/INT0)PD2") (type BiDi))))
(libpart (lib RHS_3-rescue) (part Battery-RESCUE-RHS_2-RHS_2-rescue)
(fields
(field (name Reference) BT)
(field (name Value) Battery-RESCUE-RHS_2-RHS_2-rescue))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib RHS_3-rescue) (part C-RHS_2-rescue)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C-RHS_2-rescue))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib RHS_3-rescue) (part CC1101-RHS_2-rescue)
(fields
(field (name Reference) IC)
(field (name Value) CC1101-RHS_2-rescue))
(pins
(pin (num 1) (name VCC) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name SI) (type BiDi))
(pin (num 4) (name SCLK) (type BiDi))
(pin (num 5) (name SO) (type BiDi))
(pin (num 6) (name GDO2) (type BiDi))
(pin (num 7) (name GDO0) (type BiDi))
(pin (num 8) (name CSN) (type BiDi))
(pin (num 9) (name ANT) (type BiDi))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name GND) (type power_in))))
(libpart (lib RHS_3-rescue) (part CONN_01X05-RHS_2-rescue)
(footprints
(fp Pin_Header_Straight_1X05)
(fp Pin_Header_Angled_1X05)
(fp Socket_Strip_Straight_1X05)
(fp Socket_Strip_Angled_1X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X05-RHS_2-rescue))
(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))))
(libpart (lib RHS_3-rescue) (part LED-RESCUE-RHS_2-RHS_2-rescue)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED-RESCUE-RHS_2-RHS_2-rescue))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib RHS_3-rescue) (part R-RHS_2-rescue)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R-RHS_2-rescue))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib RHS_3-rescue) (part SW_PUSH-RHS_2-rescue)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH-RHS_2-rescue))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Transistor_FET) (part TP0610T)
(aliases
(alias VP0610T)
(alias BSS84)
(alias NTR2101P)
(alias BSS83P)
(alias Si2319CDS)
(alias IRLML6402)
(alias DMG2301L)
(alias AO3401A)
(alias IRLML9301)
(alias IRLML5203)
(alias Si2371EDS)
(alias TSM2301ACX))
(description "-0.18A Id, -60V Vds, P-Channel MOSFET, SOT-23")
(docs http://www.vishay.com/docs/70209/70209.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) TP0610T)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib cc1101) (part CC1101_Chip)
(fields
(field (name Reference) U)
(field (name Value) CC1101_Chip))
(pins
(pin (num 1) (name SCLK) (type input))
(pin (num 2) (name GDO1) (type input))
(pin (num 3) (name GDO2) (type input))
(pin (num 4) (name DVDD) (type input))
(pin (num 5) (name DCOUPL) (type input))
(pin (num 6) (name GDO0) (type input))
(pin (num 7) (name CSn) (type input))
(pin (num 8) (name XOSC_Q1) (type input))
(pin (num 9) (name AVDD) (type input))
(pin (num 10) (name XOSC_Q2) (type input))
(pin (num 11) (name AVDD) (type input))
(pin (num 12) (name RF_P) (type input))
(pin (num 13) (name RF_N) (type input))
(pin (num 14) (name AVDD) (type input))
(pin (num 15) (name AVDD) (type input))
(pin (num 16) (name GND) (type input))
(pin (num 17) (name RBIAS) (type input))
(pin (num 18) (name DGUARD) (type input))
(pin (num 19) (name GND) (type input))
(pin (num 20) (name SI) (type input))
(pin (num 21) (name GND) (type input))))
(libpart (lib cc1101) (part Resonator)
(fields
(field (name Reference) X)
(field (name Value) Resonator))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type input))))
(libpart (lib cc1101) (part TLE4913)
(fields
(field (name Reference) U)
(field (name Value) TLE4913))
(pins
(pin (num 1) (name VS) (type input))
(pin (num 2) (name Q) (type output))
(pin (num 3) (name GND) (type input)))))
(libraries
(library (logical Connector)
(uri D:\holger\KiCad\Libraries\Offical\kicad-symbols/Connector.lib))
(library (logical Connector_Generic)
(uri D:\holger\KiCad\Libraries\Offical\kicad-symbols/Connector_Generic.lib))
(library (logical Device)
(uri D:\holger\KiCad\Libraries\Offical\kicad-symbols/Device.lib))
(library (logical RHS_3-rescue)
(uri D:\holger\KiCad\Projects\HB-Sec-RHS-3/RHS_3-rescue.lib))
(library (logical Transistor_FET)
(uri D:\holger\KiCad\Libraries\Offical\kicad-symbols/Transistor_FET.lib))
(library (logical cc1101)
(uri D:\holger\KiCad\Libraries\User/libraries/cc1101.lib)))
(nets
(net (code 1) (name GND)
(node (ref BT1) (pin 2))
(node (ref C17) (pin 2))
(node (ref C18) (pin 2))
(node (ref C19) (pin 2))
(node (ref C20) (pin 2))
(node (ref C21) (pin 2))
(node (ref SW2) (pin 2))
(node (ref IC1) (pin 21))
(node (ref IC1) (pin 3))
(node (ref IC1) (pin 5))
(node (ref SW1) (pin 2))
(node (ref IC2) (pin 2))
(node (ref IC2) (pin 11))
(node (ref IC2) (pin 10))
(node (ref C27) (pin 2))
(node (ref C29) (pin 2))
(node (ref C15) (pin 2))
(node (ref X1) (pin 4))
(node (ref X1) (pin 2))
(node (ref C25) (pin 1))
(node (ref IC3) (pin 21))
(node (ref C16) (pin 2))
(node (ref U3) (pin 3))
(node (ref U2) (pin 3))
(node (ref C12) (pin 2))
(node (ref C11) (pin 2))
(node (ref C6) (pin 2))
(node (ref C5) (pin 2))
(node (ref C4) (pin 2))
(node (ref P6) (pin 6))
(node (ref U1) (pin 3))
(node (ref D2) (pin 1))
(node (ref D1) (pin 1))
(node (ref C3) (pin 2))
(node (ref C2) (pin 2))
(node (ref C1) (pin 2))
(node (ref C10) (pin 2))
(node (ref P5) (pin 5))
(node (ref P5) (pin 4))
(node (ref P7) (pin 10))
(node (ref P7) (pin 8))
(node (ref C8) (pin 2))
(node (ref C9) (pin 2))
(node (ref C22) (pin 2))
(node (ref C13) (pin 2))
(node (ref R8) (pin 1))
(node (ref IC3) (pin 19))
(node (ref IC3) (pin 16))
(node (ref J1) (pin 2))
(node (ref C23) (pin 2))
(node (ref C14) (pin 2))
(node (ref C24) (pin 2)))
(net (code 2) (name "Net-(C24-Pad1)")
(node (ref IC3) (pin 10))
(node (ref C24) (pin 1))
(node (ref X1) (pin 3)))
(net (code 3) (name "Net-(C23-Pad1)")
(node (ref C23) (pin 1))
(node (ref IC3) (pin 8))
(node (ref X1) (pin 1)))
(net (code 4) (name /MOSI)
(node (ref IC3) (pin 20))
(node (ref IC1) (pin 15))
(node (ref P4) (pin 5))
(node (ref IC2) (pin 3))
(node (ref P7) (pin 1)))
(net (code 5) (name "Net-(C22-Pad1)")
(node (ref IC3) (pin 5))
(node (ref C22) (pin 1)))
(net (code 6) (name /CS)
(node (ref IC2) (pin 8))
(node (ref IC3) (pin 7))
(node (ref IC1) (pin 14)))
(net (code 7) (name /MISO)
(node (ref P7) (pin 9))
(node (ref IC3) (pin 2))
(node (ref P4) (pin 1))
(node (ref IC1) (pin 16))
(node (ref IC2) (pin 5)))
(net (code 8) (name /GDO0)
(node (ref IC2) (pin 7))
(node (ref IC3) (pin 6))
(node (ref IC1) (pin 32)))
(net (code 9) (name /SCK)
(node (ref P7) (pin 7))
(node (ref IC1) (pin 17))
(node (ref IC3) (pin 1))
(node (ref IC2) (pin 4))
(node (ref P4) (pin 2)))
(net (code 10) (name "Net-(C25-Pad2)")
(node (ref C25) (pin 2))
(node (ref L4) (pin 1))
(node (ref L1) (pin 2))
(node (ref C26) (pin 1)))
(net (code 11) (name "Net-(C26-Pad2)")
(node (ref C26) (pin 2))
(node (ref L2) (pin 2))
(node (ref L3) (pin 1))
(node (ref C28) (pin 2)))
(net (code 12) (name "Net-(IC3-Pad17)")
(node (ref IC3) (pin 17))
(node (ref R8) (pin 2)))
(net (code 13) (name "Net-(IC3-Pad12)")
(node (ref L2) (pin 1))
(node (ref IC3) (pin 12)))
(net (code 14) (name /A3)
(node (ref R7) (pin 2))
(node (ref IC1) (pin 26))
(node (ref C13) (pin 1))
(node (ref J1) (pin 1)))