Newer
Older
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\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q\LoRaTracker_NEO.sch)
(date "19.12.2018 14:13:54")
(tool "Eeschema (5.0.1)-3")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source LoRaTracker_NEO.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref Q1)
(value BS250)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.vishay.com/docs/70209/70209.pdf)
(libsource (lib Transistor_FET) (part BS250) (description "-0.18A Id, -60V Vds, P-Channel MOSFET, TO-92"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF836FE))
(comp (ref R4)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF8EE15))
(comp (ref C1)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BFB3EE2))
(comp (ref R5)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BFC962F))
(comp (ref C2)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BFE5EA1))
(comp (ref C3)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BFF2417))
(comp (ref CN1)
(value S2B-PH-SM4-TB)
(footprint SparkFun-Connectors:JST-2-SMD)
(libsource (lib JST_Battery_Connector) (part S2B-PH-SM4-TB) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C022B06))
(comp (ref C4)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0365A6))
(comp (ref SW1)
(value SW_Push)
(footprint Racon8Switch:Racon8SMTSwitch)
(libsource (lib Racon8_PushButton) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C043779))
(comp (ref R9)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C0506CC))
(comp (ref Q2)
(value BS250)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.vishay.com/docs/70209/70209.pdf)
(libsource (lib Transistor_FET) (part BS250) (description "-0.18A Id, -60V Vds, P-Channel MOSFET, TO-92"))
(sheetpath (names /) (tstamps /))
(tstamp 5C05D52B))
(comp (ref U3)
(value RFM95W-868S2)
(footprint RFM95W-868S2:XCVR_RFM95W-868S2)
(datasheet http://www.hoperf.com/upload/rf/RFM95_96_97_98W.pdf)
(libsource (lib RF_AM_FM) (part RFM95W-868S2) (description "Low power long range transceiver module, SPI and parallel interface, 868 MHz, spreading factor 6 to12, bandwith 7.8 to 500kHz, -111 to -148 dBm, SMD-16, DIP-16"))
(sheetpath (names /) (tstamps /))
(tstamp 5C07D236))
(comp (ref X1)
(value ANTENNA_U.FL)
(footprint adafruit:U.FL)
(libsource (lib LoRaTracker_M8Q-rescue) (part ANTENNA_U.FL-Adafruit) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C0F71D0))
(comp (ref M1)
(value USBSMD)
(footprint SparkFun-Connectors:USB-MICROB)
(libsource (lib SparkfunConnectors) (part USBSMD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C108F26))
(comp (ref Q3)
(value BS250)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.vishay.com/docs/70209/70209.pdf)
(libsource (lib Transistor_FET) (part BS250) (description "-0.18A Id, -60V Vds, P-Channel MOSFET, TO-92"))
(sheetpath (names /) (tstamps /))
(tstamp 5C114CDF))
(comp (ref R3)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C13CB35))
(comp (ref R1)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1555E9))
(comp (ref R2)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C155651))
(comp (ref U1)
(value ESP32-WROOM-32)
(footprint ESP32-footprints-Lib:ESP32-WROOM)
(libsource (lib ESP32-Wroom) (part ESP32-WROOM-32) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C12B6F5))
(comp (ref D2)
(value 19-337_R6GHBHC-A01_2T)
(footprint 19-337_R6GHBHC-A01_2T:LED_19-337%2fR6GHBHC-A01%2f2T)
(datasheet None)
(fields
(field (name Feld4) Everlight)
(field (name Feld5) "LED Tri-Color Blue/Green/Red 468nm/518nm/632nm 6-Pin T/R")
(field (name Feld6) Unavailable)
(field (name Feld7) 19-337/R6GHBHC-A01/2T)
(field (name Feld8) "SMD-2 Everlight"))
(libsource (lib RGBLED_R6GHBHC) (part 19-337_R6GHBHC-A01_2T) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C1DB0C5))
(comp (ref R6)
(value R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E1E80))
(comp (ref R7)
(value R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E1EF4))
(comp (ref R8)
(value R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E1F52))
(comp (ref JP1)
(value M01NOSILK-KIT)
(footprint Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm)
(libsource (lib SparkfunConnectors) (part M01NOSILK-KIT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C2208E7))
(comp (ref JP4)
(value M01NOSILK-KIT)
(footprint Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm)
(libsource (lib SparkfunConnectors) (part M01NOSILK-KIT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C220AF8))
(comp (ref IC2)
(value MCP73831-2-OT)
(footprint TO_SOT_Packages_SMD:SOT-23-5_HandSoldering)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf)
(libsource (lib Battery_Management) (part MCP73831-2-OT) (description "Single cell, Li-Ion/Li-Po charge management controller, 4.20V, Tri-State Status Output, in SOT23-5 package"))
(sheetpath (names /) (tstamps /))
(tstamp 5C26303D))
(comp (ref D3)
(value LED)
(footprint LEDs:LED_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2636CB))
(comp (ref R10)
(value 100)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C263870))
(comp (ref R12)
(value 2k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C277A12))
(comp (ref BT1)
(value Battery_Cell)
(footprint WinLib:MS621FE-FL11E)
(datasheet ~)
(libsource (lib Device) (part Battery_Cell) (description "Single-cell battery"))
(sheetpath (names /) (tstamps /))
(tstamp 5C004F1A))
(comp (ref C5)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C010D60))
(comp (ref Q4)
(value MMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf)
(libsource (lib Transistor_BJT) (part MMBT3904) (description "0.2A Ic, 40V Vce, Small Signal NPN Transistor, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0AC21C))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C0AC3E3))
(comp (ref R16)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C0AC4C0))
(comp (ref Q5)
(value MMBT3906)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3906.pdf)
(libsource (lib Transistor_BJT) (part MMBT3906) (description "-0.2A Ic, -40V Vce, Small Signal PNP Transistor, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0DDCAC))
(comp (ref U2)
(value AP2112K-3.3)
(footprint TO_SOT_Packages_SMD:SOT-23-5_HandSoldering)
(datasheet https://www.diodes.com/assets/Datasheets/AP2112.pdf)
(libsource (lib Regulator_Linear) (part AP2112K-3.3) (description "600mA low dropout linear regulator, with enable pin, 3.8V-6V input voltage range, 3.3V fixed positive output, SOT-23-5 package"))
(sheetpath (names /) (tstamps /))
(tstamp 5C146BB0))
(comp (ref R11)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C18FE94))
(comp (ref C6)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1AE185))
(comp (ref R13)
(value 1k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1B594B))
(comp (ref JP7)
(value M01NOSILK-KIT)
(footprint Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm)
(libsource (lib SparkfunConnectors) (part M01NOSILK-KIT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C2BC96E))
(comp (ref JP10)
(value M01NOSILK-KIT)
(footprint Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm)
(libsource (lib SparkfunConnectors) (part M01NOSILK-KIT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C2BCA94))
(comp (ref JP11)
(value M01NOSILK-KIT)
(footprint Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm)
(libsource (lib SparkfunConnectors) (part M01NOSILK-KIT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C2BCB3E))
(comp (ref JP12)
(value M01NOSILK-KIT)
(footprint SparkFun-Connectors:1X01NS-KIT)
(libsource (lib SparkfunConnectors) (part M01NOSILK-KIT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C2E117F))
(comp (ref C9)
(value 0u1)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1F8060))
(comp (ref U4)
(value FT231XS)
(footprint adafruit:TSSOP20)
(datasheet http://www.ftdichip.com/Products/ICs/FT231X.html)
(libsource (lib Interface_USB) (part FT231XS) (description "Full Speed USB to Full Handshake UART, SSOP-20"))
(sheetpath (names /) (tstamps /))
(tstamp 5C109200))
(comp (ref U5)
(value NEO-M8P)
(footprint NEO-M8P:NEO-M8P)
(datasheet IC-14069)
(libsource (lib NEO-M8P) (part NEO-M8P) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C1A2581))
(comp (ref R17)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C396E))
(comp (ref C7)
(value 47pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1D9E6D))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1F0CB2))
(comp (ref X2)
(value ANTENNA_U.FL)
(footprint adafruit:U.FL)
(libsource (lib LoRaTracker_M8Q-rescue) (part ANTENNA_U.FL-Adafruit) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C2C4B35))
(comp (ref R20)
(value 100)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C30241E))
(comp (ref D5)
(value LED)
(footprint LEDs:LED_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C30F0E8))
(comp (ref R18)
(value 27)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C3431B2))
(comp (ref R19)
(value 27)
(footprint Resistors_SMD:R_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C34329A))
(comp (ref L1)
(value 27nH)
(footprint Inductors_SMD:L_0603_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C5DF4))
(comp (ref D1)
(value D_Schottky)
(footprint Diodes_SMD:D_0603)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1DEA7B))
(comp (ref D4)
(value D_Schottky)
(footprint Diodes_SMD:D_0603)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1F6334)))
(libparts
(libpart (lib Battery_Management) (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)
(footprints
(fp *SOT*23*))
(fields
(field (name Reference) U)
(field (name Value) MCP73832-2-OT)
(field (name Footprint) Package_TO_SOT_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 VDD) (type power_in))
(pin (num 5) (name PROG) (type input))))
(libpart (lib Device) (part Battery_Cell)
(description "Single-cell battery")
(docs ~)
(fields
(field (name Reference) BT)
(field (name Value) Battery_Cell))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_Schottky)
(description "Schottky diode")
(docs ~)
(footprints
(fp TO-???*)
(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 Device) (part L)
(description Inductor)
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part 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 ESP32-Wroom) (part ESP32-WROOM-32)
(fields
(field (name Reference) U)
(field (name Value) ESP32-WROOM-32))
(pins
(pin (num 1) (name GND) (type passive))
(pin (num 2) (name 3V3) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name SENSOR_VP) (type input))
(pin (num 5) (name SENSOR_VN) (type input))
(pin (num 6) (name IO34) (type input))
(pin (num 7) (name IO35) (type input))
(pin (num 8) (name IO32) (type BiDi))
(pin (num 9) (name IO33) (type BiDi))
(pin (num 10) (name IO25) (type BiDi))
(pin (num 11) (name IO26) (type BiDi))
(pin (num 12) (name IO27) (type BiDi))
(pin (num 13) (name IO14) (type BiDi))
(pin (num 14) (name IO12) (type BiDi))
(pin (num 15) (name GND) (type passive))
(pin (num 16) (name IO13) (type BiDi))
(pin (num 17) (name SH/SD2*) (type BiDi))
(pin (num 18) (name SWP/SD3*) (type BiDi))
(pin (num 19) (name SCS/CMD*) (type BiDi))
(pin (num 20) (name SCK/CLK*) (type BiDi))
(pin (num 21) (name SDO/SD0*) (type BiDi))
(pin (num 22) (name SDI/SD1*) (type BiDi))
(pin (num 23) (name IO15) (type BiDi))
(pin (num 24) (name IO2) (type BiDi))
(pin (num 25) (name IO0) (type BiDi))
(pin (num 26) (name IO4) (type BiDi))
(pin (num 27) (name IO16) (type BiDi))
(pin (num 28) (name IO17) (type BiDi))
(pin (num 29) (name IO5) (type BiDi))
(pin (num 30) (name IO18) (type BiDi))
(pin (num 31) (name IO19) (type BiDi))
(pin (num 32) (name nc) (type NotConnected))
(pin (num 33) (name IO21) (type BiDi))
(pin (num 34) (name RXD0) (type BiDi))
(pin (num 35) (name TXD0) (type BiDi))
(pin (num 36) (name IO22) (type BiDi))
(pin (num 37) (name IO23) (type BiDi))
(pin (num 38) (name GND) (type passive))
(pin (num 39) (name GND) (type passive))))
(libpart (lib Interface_USB) (part FT231XS)
(description "Full Speed USB to Full Handshake UART, SSOP-20")
(docs http://www.ftdichip.com/Products/ICs/FT231X.html)
(footprints
(fp *SSOP*3.9x8.7mm*P0.635mm*))
(fields
(field (name Reference) U)
(field (name Value) FT231XS)
(field (name Footprint) Package_SO:SSOP-20_3.9x8.7mm_P0.635mm))
(pins
(pin (num 1) (name ~DTR) (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 ~RI) (type input))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name ~DSR) (type output))
(pin (num 8) (name ~DCD) (type input))
(pin (num 9) (name ~CTS) (type input))
(pin (num 10) (name CBUS2) (type BiDi))
(pin (num 11) (name USBDP) (type BiDi))
(pin (num 12) (name USBDM) (type BiDi))
(pin (num 13) (name 3V3OUT) (type power_out))
(pin (num 14) (name ~RESET) (type input))
(pin (num 15) (name VCC) (type power_in))
(pin (num 16) (name GND) (type power_in))
(pin (num 17) (name CBUS1) (type BiDi))
(pin (num 18) (name CBUS0) (type BiDi))
(pin (num 19) (name CBUS3) (type BiDi))
(pin (num 20) (name TXD) (type output))))
(libpart (lib JST_Battery_Connector) (part S2B-PH-SM4-TB)
(fields
(field (name Reference) P)
(field (name Value) S2B-PH-SM4-TB)
(field (name Footprint) JST_S2B-PH-SM4-TB))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib LoRaTracker_M8Q-rescue) (part ANTENNA_U.FL-Adafruit)
(footprints
(fp *U.FL*))
(fields
(field (name Reference) X)
(field (name Value) ANTENNA_U.FL-Adafruit))
(pins
(pin (num 1) (name GND) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name SIGNAL) (type passive))))
(libpart (lib NEO-M8P) (part NEO-M8P)
(fields
(field (name Reference) U)
(field (name Value) NEO-M8P)
(field (name Footprint) NEO-M8P)
(field (name Datasheet) IC-14069))
(pins
(pin (num 1) (name ~SAFEBOOT!~) (type BiDi))
(pin (num 2) (name D_SEL) (type BiDi))
(pin (num 3) (name TIMEPULSE) (type BiDi))
(pin (num 4) (name INT) (type BiDi))
(pin (num 5) (name USB_D-) (type BiDi))
(pin (num 6) (name USB_D+) (type BiDi))
(pin (num 7) (name VDD_USB) (type BiDi))
(pin (num 8) (name ~RST~) (type BiDi))
(pin (num 9) (name VCC_RF) (type BiDi))
(pin (num 10) (name GND) (type BiDi))
(pin (num 11) (name RF_IN) (type BiDi))
(pin (num 12) (name GND) (type BiDi))
(pin (num 13) (name GND) (type BiDi))
(pin (num 14) (name LNA_EN) (type BiDi))
(pin (num 15) (name RTK_STAT) (type BiDi))
(pin (num 16) (name GEO_STAT) (type BiDi))
(pin (num 18) (name SDA/SPI_!CS!) (type BiDi))
(pin (num 19) (name SCL/SPI_CLK) (type BiDi))
(pin (num 20) (name TX/SPI_MISO) (type BiDi))
(pin (num 21) (name RX/SPI_MOSI) (type BiDi))
(pin (num 22) (name V_BKCP) (type BiDi))
(pin (num 23) (name VCC) (type BiDi))
(pin (num 24) (name GND) (type BiDi))))
(libpart (lib RF_AM_FM) (part RFM95W-868S2)
(aliases
(alias RFM95W-915S2)
(alias RFM96W-315S2)
(alias RFM96W-433S2)
(alias RFM97W-868S2)
(alias RFM97W-915S2)
(alias RFM98W-315S2)
(alias RFM98W-433S2)
(alias RFM69HCW))
(description "Low power long range transceiver module, SPI and parallel interface, 868 MHz, spreading factor 6 to12, bandwith 7.8 to 500kHz, -111 to -148 dBm, SMD-16, DIP-16")
(docs http://www.hoperf.com/upload/rf/RFM95_96_97_98W.pdf)
(footprints
(fp HOPERF?RFM9XW*SMD*)
(fp HOPERF?RFM9XW*THT*))
(fields
(field (name Reference) U)
(field (name Value) RFM95W-868S2))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name MISO) (type output))
(pin (num 3) (name MOSI) (type input))
(pin (num 4) (name SCK) (type input))
(pin (num 5) (name NSS) (type input))
(pin (num 6) (name RESET) (type BiDi))
(pin (num 7) (name DIO5) (type BiDi))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name ANT) (type BiDi))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name DIO3) (type BiDi))
(pin (num 12) (name DIO4) (type BiDi))
(pin (num 13) (name 3.3V) (type power_in))
(pin (num 14) (name DIO0) (type BiDi))
(pin (num 15) (name DIO1) (type BiDi))
(pin (num 16) (name DIO2) (type BiDi))))
(libpart (lib RGBLED_R6GHBHC) (part 19-337_R6GHBHC-A01_2T)
(fields
(field (name Reference) D)
(field (name Value) 19-337_R6GHBHC-A01_2T)
(field (name Footprint) LED_19-337/R6GHBHC-A01/2T)
(field (name Datasheet) None)
(field (name Feld4) Everlight)
(field (name Feld5) "LED Tri-Color Blue/Green/Red 468nm/518nm/632nm 6-Pin T/R")
(field (name Feld6) Unavailable)
(field (name Feld7) 19-337/R6GHBHC-A01/2T)
(field (name Feld8) "SMD-2 Everlight"))
(pins
(pin (num 1) (name C1) (type passive))
(pin (num 2) (name C2) (type passive))
(pin (num 3) (name C3) (type passive))
(pin (num 4) (name A1) (type passive))
(pin (num 5) (name A2) (type passive))
(pin (num 6) (name A3) (type passive))))
(libpart (lib Racon8_PushButton) (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 Regulator_Linear) (part AP2204K-1.5)
(aliases
(alias AP2204K-1.8)
(alias AP2204K-2.5)
(alias AP2204K-2.8)
(alias AP2204K-3.0)
(alias AP2204K-3.3)
(alias AP2204K-5.0)
(alias AP2127K-1.0)
(alias AP2127K-1.2)
(alias AP2127K-1.5)
(alias AP2127K-1.8)
(alias AP2127K-2.5)
(alias AP2127K-2.8)
(alias AP2127K-3.0)
(alias AP2127K-3.3)
(alias AP2127K-4.2)
(alias AP2127K-4.75)
(alias AP2112K-1.2)
(alias AP2112K-1.8)
(alias AP2112K-2.5)
(alias AP2112K-2.6)
(alias AP2112K-3.3))
(description "150mA low dropout linear regulator, wide input voltage range, 1.5V fixed positive output, SOT-23-5 package")
(docs https://www.diodes.com/assets/Datasheets/AP2204.pdf)
(footprints
(fp SOT?23?5*))
(fields
(field (name Reference) U)
(field (name Value) AP2204K-1.5)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name VOUT) (type power_out))))
(libpart (lib SparkfunConnectors) (part M01NOSILK-KIT)
(footprints
(fp *1X01NS-KIT*)
(fp *1X01_OFFSET*)
(fp *1X01_POGOPIN_HOLE_0.58*)
(fp *1X01_POGOPIN_HOLE_LARGE*)
(fp *1X01*)
(fp *1X01_2MM*)
(fp *1X01_LONGPAD*)
(fp *1X01_NO_SILK*)
(fp *1X01NS*)
(fp *SNAP-FEMALE*))
(fields
(field (name Reference) J)
(field (name Value) M01NOSILK-KIT)
(field (name Footprint) 1X01NS-KIT))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib SparkfunConnectors) (part USBSMD)
(footprints
(fp *USB-MINIB*))
(fields
(field (name Reference) J)
(field (name Value) USBSMD)
(field (name Footprint) USB-MINIB))
(pins
(pin (num D+) (name D+) (type BiDi))
(pin (num D-) (name D-) (type BiDi))
(pin (num GND) (name GND) (type BiDi))
(pin (num VBUS) (name VBUS) (type BiDi))))
(libpart (lib Transistor_BJT) (part BC807)
(aliases
(alias BC808)
(alias BC856)
(alias BC857)
(alias BC858)
(alias BC859)
(alias BC860)
(alias MMBT3906))
(description "0.8A Ic, 45V Vce, PNP Transistor, SOT-23")
(docs http://www.fairchildsemi.com/ds/BC/BC807.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BC807)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib Transistor_BJT) (part BC817)
(aliases
(alias BC818)
(alias BC847)
(alias BC848)
(alias BC849)
(alias BC850)
(alias MMBT3904)
(alias MMBT5550L)
(alias MMBT5551L))
(description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23")
(docs http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BC817)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib Transistor_FET) (part BS250)
(description "-0.18A Id, -60V Vds, P-Channel MOSFET, TO-92")
(docs http://www.vishay.com/docs/70209/70209.pdf)
(footprints
(fp TO?92*))
(fields
(field (name Reference) Q)
(field (name Value) BS250)
(field (name Footprint) Package_TO_SOT_THT:TO-92_Inline))
(pins
(pin (num 1) (name D) (type passive))
(pin (num 2) (name G) (type input))
(pin (num 3) (name S) (type passive)))))
(libraries
(library (logical Battery_Management)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Battery_Management.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical ESP32-Wroom)
(uri C:\Users\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q/KiCadLibs/esp32-wroom-32.lib))
(library (logical Interface_USB)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Interface_USB.lib"))
(library (logical JST_Battery_Connector)
(uri C:\Users\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q/KiCadLibs/S2B-PH-SM4-TB.lib))
(library (logical LoRaTracker_M8Q-rescue)
(uri C:\Users\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q/LoRaTracker_M8Q-rescue.lib))
(library (logical NEO-M8P)
(uri C:/Users/quandt/Desktop/MONICA/MonicaGit/LoraTest/TrackerPCB_M8Q/KiCadLibs/NEO-M8P/NEO-M8P.lib))
(library (logical RF_AM_FM)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/RF_AM_FM.lib"))
(library (logical RGBLED_R6GHBHC)
(uri C:\Users\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q/KiCadLibs/19-337_R6GHBHC-A01_2T.lib))
(library (logical Racon8_PushButton)
(uri C:\Users\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q/KiCadLibs/Racon8Switch/Racon8.lib))
(library (logical Regulator_Linear)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Regulator_Linear.lib"))
(library (logical SparkfunConnectors)
(uri C:\Users\quandt\Desktop\MONICA\MonicaGit\LoraTest\TrackerPCB_M8Q/KiCadLibs/SparkFun-Kicad-Libraries-master/SparkFun-Connectors.lib))
(library (logical Transistor_BJT)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Transistor_BJT.lib"))
(library (logical Transistor_FET)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Transistor_FET.lib")))
(nets
(net (code 1) (name "Net-(U1-Pad18)")
(node (ref U1) (pin 18)))
(net (code 2) (name +3V3)
(node (ref R11) (pin 1))
(node (ref R3) (pin 1))
(node (ref JP1) (pin 1))
(node (ref Q3) (pin 1))
(node (ref U1) (pin 2))
(node (ref C4) (pin 1))
(node (ref C2) (pin 1))
(node (ref U2) (pin 5))
(node (ref C3) (pin 1))
(node (ref D4) (pin 2))
(node (ref R9) (pin 1))
(node (ref Q2) (pin 1)))
(net (code 3) (name "Net-(D4-Pad1)")
(node (ref R13) (pin 2))
(node (ref D4) (pin 1)))
(net (code 4) (name "Net-(U1-Pad16)")
(node (ref U1) (pin 16)))
(net (code 5) (name "Net-(U1-Pad17)")
(node (ref U1) (pin 17)))
(net (code 6) (name "Net-(U1-Pad19)")
(node (ref U1) (pin 19)))
(net (code 7) (name "Net-(U1-Pad20)")
(node (ref U1) (pin 20)))
(net (code 8) (name "Net-(U1-Pad21)")
(node (ref U1) (pin 21)))
(net (code 9) (name "Net-(U1-Pad22)")
(node (ref U1) (pin 22)))
(net (code 10) (name "Net-(U1-Pad23)")
(node (ref U1) (pin 23)))
(net (code 11) (name "Net-(U1-Pad37)")
(node (ref U1) (pin 37)))
(net (code 12) (name "Net-(U1-Pad4)")
(node (ref U1) (pin 4)))
(net (code 13) (name "Net-(U1-Pad5)")
(node (ref U1) (pin 5)))
(net (code 14) (name "Net-(U1-Pad6)")
(node (ref U1) (pin 6)))
(net (code 15) (name "Net-(U1-Pad10)")
(node (ref U1) (pin 10)))
(net (code 16) (name GND)
(node (ref C7) (pin 2))
(node (ref U1) (pin 15))
(node (ref R4) (pin 2))
(node (ref C1) (pin 2))
(node (ref X2) (pin 1))
(node (ref X2) (pin 2))
(node (ref C6) (pin 2))
(node (ref U4) (pin 16))
(node (ref U3) (pin 10))
(node (ref U3) (pin 1))
(node (ref C2) (pin 2))
(node (ref C3) (pin 2))
(node (ref C9) (pin 2))
(node (ref D5) (pin 1))
(node (ref R2) (pin 2))
(node (ref SW1) (pin 2))
(node (ref R12) (pin 1))
(node (ref X1) (pin 1))
(node (ref U3) (pin 8))
(node (ref X1) (pin 2))
(node (ref U1) (pin 1))
(node (ref CN1) (pin 2))
(node (ref U5) (pin 13))
(node (ref U4) (pin 6))
(node (ref BT1) (pin 2))
(node (ref C5) (pin 2))
(node (ref U2) (pin 2))
(node (ref U5) (pin 7))
(node (ref IC2) (pin 2))
(node (ref JP11) (pin 1))
(node (ref JP4) (pin 1))
(node (ref U5) (pin 10))
(node (ref C4) (pin 2))
(node (ref U5) (pin 24))
(node (ref U1) (pin 39))
(node (ref U1) (pin 38))
(node (ref M1) (pin GND))
(node (ref D2) (pin 3))
(node (ref D2) (pin 2))
(node (ref D2) (pin 1))
(node (ref U5) (pin 12)))
(net (code 17) (name LoRa_Mosfet_EN)
(node (ref R9) (pin 2))
(node (ref Q2) (pin 2))
(node (ref U1) (pin 28)))
(net (code 18) (name GNSS_Mosfet_EN)
(node (ref R11) (pin 2))
(node (ref Q3) (pin 2))
(node (ref U1) (pin 27)))
(net (code 19) (name LoRa_VCC)
(node (ref U3) (pin 13))
(node (ref Q2) (pin 3)))
(net (code 20) (name USB_DM)
(node (ref U4) (pin 12))
(node (ref M1) (pin D-)))
(net (code 21) (name USB_DP)
(node (ref U4) (pin 11))
(node (ref M1) (pin D+)))
(net (code 22) (name "Net-(U1-Pad11)")
(node (ref U1) (pin 11)))
(net (code 23) (name EN)
(node (ref JP10) (pin 1))
(node (ref U2) (pin 3))
(node (ref R5) (pin 1)))
(net (code 24) (name "Net-(U2-Pad4)")
(node (ref U2) (pin 4)))
(net (code 25) (name +BATT)
(node (ref CN1) (pin 1))
(node (ref IC2) (pin 3))
(node (ref Q1) (pin 1))
(node (ref R1) (pin 1))
(node (ref C5) (pin 1))
(node (ref JP7) (pin 1)))
(net (code 26) (name "Net-(Q4-Pad1)")
(node (ref R15) (pin 1))
(node (ref Q4) (pin 1)))
(net (code 27) (name "Net-(Q5-Pad1)")
(node (ref R16) (pin 1))
(node (ref Q5) (pin 1)))
(net (code 28) (name "Net-(D3-Pad1)")
(node (ref R10) (pin 2))
(node (ref D3) (pin 1)))
(net (code 29) (name "Net-(IC2-Pad1)")
(node (ref R10) (pin 1))
(node (ref IC2) (pin 1)))
(net (code 30) (name "Net-(IC2-Pad5)")
(node (ref R12) (pin 2))
(node (ref IC2) (pin 5)))
(net (code 31) (name RTS)
(node (ref R15) (pin 2))
(node (ref U4) (pin 2))
(node (ref Q5) (pin 3)))
(net (code 32) (name DTR)
(node (ref U4) (pin 1))
(node (ref Q4) (pin 2))
(node (ref R16) (pin 2)))
(net (code 33) (name IO0)
(node (ref U1) (pin 25))
(node (ref Q4) (pin 3)))
(net (code 34) (name "Net-(R14-Pad2)")
(node (ref U5) (pin 9))
(node (ref R14) (pin 2)))
(net (code 35) (name "Net-(L1-Pad1)")
(node (ref X2) (pin 3))
(node (ref L1) (pin 1))
(node (ref U5) (pin 11)))
(net (code 36) (name GNSS_V_BCKP)
(node (ref BT1) (pin 1))
(node (ref R13) (pin 1))
(node (ref C6) (pin 1))
(node (ref U5) (pin 22)))
(net (code 37) (name "Net-(R17-Pad1)")
(node (ref R17) (pin 1))
(node (ref U5) (pin 8)))
(net (code 38) (name GNSS_VCC)