-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathLoRaProMini.kicad_pcb
16608 lines (16529 loc) · 680 KB
/
LoRaProMini.kicad_pcb
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
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "LoRaProMini")
(date "2023-03-20")
(rev "3.2")
(company "(c) 2023 foorschtbar")
(comment 1 "https://github.com/foorschtbar/LoRaProMini")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 98.94 77.19)
(grid_origin 136.94 90.69)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(net 0 "")
(net 1 "Net-(AE1-A)")
(net 2 "GND")
(net 3 "+3.3V")
(net 4 "+BATT")
(net 5 "1-WIRE")
(net 6 "MCU_SDA")
(net 7 "MCU_SCL")
(net 8 "LORA_DIO1")
(net 9 "LORA_DIO0")
(net 10 "LORA_RST")
(net 11 "SPI_CS_LORA")
(net 12 "SPI_SCK")
(net 13 "SPI_MOSI")
(net 14 "SPI_MISO")
(net 15 "Net-(JP1-A)")
(net 16 "unconnected-(U2-DIO4-Pad12)")
(net 17 "/RESET")
(net 18 "XTAL2")
(net 19 "XTAL1")
(net 20 "/AREF")
(net 21 "MCU_D5")
(net 22 "MCU_D4")
(net 23 "MCU_D3")
(net 24 "MCU_A7")
(net 25 "MCU_A6")
(net 26 "MCU_A3")
(net 27 "MCU_A2")
(net 28 "MCU_A1")
(net 29 "MCU_A0_BAT")
(net 30 "MCU_RST")
(net 31 "MCU_TXD")
(net 32 "MCU_RXD")
(net 33 "MCU_D2_LORA_DIO2")
(net 34 "unconnected-(U2-DIO3-Pad11)")
(net 35 "unconnected-(U2-DIO5-Pad7)")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006060ef30)
(at 130.9025 98.69)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-00006060de4e")
(attr smd)
(fp_text reference "C1" (at 2.8375 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 777faa1a-e467-4fe4-9806-70552f47f780)
)
(fp_text value "10uF" (at 0 1.68) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8af8f376-a291-4394-aef2-1983ae33e34e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a80b13ea-249c-4710-b989-da9189b419de)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bfe5624-8585-4c9c-b1bf-731ef9c41f1c))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19886ea7-0190-4831-b4d6-55c93455b657))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b4ddbd9-890f-4b65-902b-857d459f728f))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c2f2d0a-0e6c-4a81-a7df-6825db1cb142))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 491cda03-1e41-4124-81a8-46c22f8845f3))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d870b4a-aa0e-4db5-aea5-5b622e04afb7))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26cadc78-1c12-4077-ac50-10b1f36dda7f))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4284fc9a-096e-43aa-868f-63b141c6bee3))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aacfdcdc-b42f-46f8-9bb5-fbf89be14145))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82fccec8-efdb-47a4-a405-904f617ad66c))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 3 "+3.3V") (pintype "passive") (tstamp 643f615d-09d9-4043-af5d-772369c567e5))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp 81a3d82f-bef3-4b5d-ad93-78fb7b6c79c6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006060ef41)
(at 154.74 82.44)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-0000606082c8")
(attr smd)
(fp_text reference "C2" (at -2.7 1.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fda89438-b766-4984-8604-959deb16d6cd)
)
(fp_text value "1uF" (at 0 1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2a6fec8-df69-4877-8b41-bc5efc81ea39)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp b0491822-1925-4d73-859b-c3de1c352c27)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b0e853d-aa41-4c27-9604-0817c187f91d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43ec1ad1-ca24-4d3f-a0c8-0b160d64665a))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7f6577b-de39-4b94-be53-bde2f1918ec1))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cf13ebb-47ae-4c89-92b3-efb5ed5aa265))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90d6cac3-3018-4139-a166-eb89096aeab7))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 286afde9-c87e-4bd3-8c08-fc345a3f9138))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ef67b37-f5d6-47b3-b1a2-adc256f0ace7))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea063f5e-77ec-4582-8444-709714f78a96))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83712348-d517-4b9f-841e-95dca2509a33))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65efb2e6-9f59-4161-9458-18ecd7ad8c99))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 4 "+BATT") (pintype "passive") (tstamp 9fb4fdb9-c28d-47dd-947c-e9dbc0f4a02d))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp 57b7481a-8382-4a31-b525-3de8ba41b250))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006060eff4)
(at 154.74 79.39)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC Part #" "")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "250mA Low Quiscent Current LDO, 3.3V output, SOT-23")
(property "ki_keywords" "regulator linear ldo")
(path "/00000000-0000-0000-0000-000060612962")
(attr smd)
(fp_text reference "U1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7689807b-eae6-496c-b5d4-3565bb218af7)
)
(fp_text value "MCP1700-3302E_SOT23" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f335f908-2873-41df-bf0c-caff4ae3e6bb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 59bfc942-0e21-4f3f-9243-f821f73bdaa4)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95f758c3-920e-4aab-9708-5415c7976509))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7de0a4bd-ad8e-425b-bb87-c50ff9409956))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2004cdd-8608-4147-97df-479eaa1d347f))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bae13e1-28f2-48ed-9ba7-207e304fb39d))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e519997-89a7-405a-80e1-4ca7f18e71a3))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d0a72af-7516-414f-9dd9-6e12cfba0ef9))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4b59c75-ba5f-46aa-9240-560a7bc03397))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de85dc08-403a-46a4-97fd-647c94f82a69))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c503500-6f72-4cb4-905a-0c983b322a7a))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e9a222d-8d4f-47ea-8015-0167b77bbb8b))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f64deca-f111-4af6-87a9-9a88906e12a9))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2afc907a-6017-4247-9ef0-35ca283f478f))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bb99e8d-eec7-4f48-be25-b623ff22b6e4))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 71a95f18-e3c7-44a4-952b-25a56fdd8764))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pinfunction "VO") (pintype "power_out") (tstamp 79a1db69-d599-4d6c-9635-58b9b0955039))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+BATT") (pinfunction "VI") (pintype "power_in") (tstamp 76c8034a-1538-4932-a85f-57f25f71d935))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Antenna_SMA_uFL:Antenna_SMA_uFL" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060612377)
(at 103.44 90.692 90)
(property "LCSC Part #" "")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Antenna with extra pin for shielding")
(property "ki_keywords" "antenna")
(path "/00000000-0000-0000-0000-0000606080a4")
(attr through_hole)
(fp_text reference "AE1" (at 3.324 5.148 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bfc9b0b-e1a2-494a-aa11-788f076be716)
)
(fp_text value "Antenna_Shield" (at 0 -4.064 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad3af532-2ca1-4e55-b307-9dac5d74e8e8)
)
(pad "1" smd rect (at 0.002 0.709 90) (size 1 3.6) (layers "F.Cu" "F.Paste" "F.Mask" "Eco1.User")
(net 1 "Net-(AE1-A)") (pinfunction "A") (pintype "input") (tstamp 01da1b64-2be5-475a-a747-bff2926bdf0a))
(pad "1" thru_hole circle (at 0.002 3.009 90) (size 1.6 1.6) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 1 "Net-(AE1-A)") (pinfunction "A") (pintype "input") (tstamp 39e6b610-bf25-4485-8efe-2e486ba46124))
(pad "2" smd rect (at -3 0 90) (size 2.5 6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "input") (tstamp 05a7c4ea-27d3-48f5-85e0-757dff86230b))
(pad "2" smd rect (at -3 0 90) (size 2.5 6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "input") (tstamp bfd735a6-c227-4b0d-826d-c6a65b052486))
(pad "2" smd rect (at -1.6 0 90) (size 1.05 2.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "input") (tstamp 6a3b418e-4de0-450a-8c16-33e08491aa84))
(pad "2" smd rect (at 1.6 0 90) (size 1.05 2.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "input") (tstamp eae9a557-0674-43c4-b019-e63429599fb4))
(pad "2" smd rect (at 3 0 90) (size 2.5 6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "input") (tstamp 0bc3d2c2-e5ef-4a04-a45c-d6cb323efffc))
(pad "2" smd rect (at 3 0 90) (size 2.5 6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "input") (tstamp 1c72d662-4841-4126-b1d1-ff08f68ed201))
(model "${KIPRJMOD}/Libraries/Antenna_SMA_uFL.pretty/SMA.step"
(offset (xyz 0 4.2 0.4))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006095930d)
(at 101.94 101.19)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1552c681-7005-473b-aa73-521a4ac4c8a7)
)
(fp_text value "MountingHole_2.5mm" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43607194-e193-49df-b714-7063a4e77c8c)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c87c9d49-3a66-4412-a12d-b3309ce81a4a)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 67c347ce-b272-47d2-88c2-3283b0f6c92e))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e9beb637-47b5-40a6-9892-603bd7d4d5fb))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp 81efd34c-9fd9-489b-95eb-ccb41b4cf9d3))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060959bbb)
(at 136.94 98.69 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-000060959353")
(attr smd)
(fp_text reference "C4" (at 0 1.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cec17da6-5024-44ee-a58d-a657f7879fa6)
)
(fp_text value "100nF" (at 0 -1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a787a87b-94cc-4918-9539-a7fe090901f6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8989ab2f-9a67-4a36-b2d1-083add08b14c)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6497fed1-7275-4a54-8741-be290f8d9d0c))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdb7af50-6ac0-4bc7-99a2-bb252ad5dae1))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8f984e9-f013-4b9d-97f2-5963d808cb5f))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f7fc4c1b-59a1-44ce-a730-4971a3e2969d))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ebf9d37-6309-4e53-a00b-c20b28b1fa3b))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78e340b7-4e67-467f-8f75-06115a12f274))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 893b0f10-e8d9-4add-a5a5-05f8515edb7e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bdb3dee-60e6-4265-91f8-fde11d86d218))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0021ba5-9525-4993-9d1d-3e6753f0f34c))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a524e39-024a-44e8-a1c1-3c2894da6a15))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp 3011da7b-6013-48d8-9aa9-20be23735203))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 29 "MCU_A0_BAT") (pintype "passive") (tstamp 04dfc32b-f2db-4c46-84d2-230a4e38b972))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060959ce0)
(at 130.94 82.69 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-000060956f0e")
(attr smd)
(fp_text reference "R1" (at -2.7 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1df78cc7-7e5e-4abe-83fd-3196907e7cb8)
)
(fp_text value "10M" (at -3.61 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d4a602f-e904-42e7-ad80-1ffd6b3ff107)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c5eb69ad-f30a-4842-a271-98663bd5c667)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f855779b-bede-49e1-94e2-e9f413c6fa96))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 154f75e9-871c-418e-981e-963c98ac310b))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 561559fe-b2a0-421c-b2a8-e22f3dca7fad))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edb0840f-6684-43d5-a66e-394d1d27057c))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d2bfb4f-1958-4d0d-a5c5-c46a465bd11c))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d701bbf-c0ac-49ca-b75a-cbbf7f5faf7a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc60dda9-45df-4b0e-90c4-34610774bb66))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3abbb936-3bca-4144-ae12-5d487c3e4fe9))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5f2c050-5af1-49f4-a19f-dc23561a4776))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d64d74d-ecb1-4c72-a87b-ddae95b52a5d))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 29 "MCU_A0_BAT") (pintype "passive") (tstamp 20329a30-5bac-49d6-ae04-c8ec483428f8))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 4 "+BATT") (pintype "passive") (tstamp eae00541-9e3d-4cfe-934e-220efe386127))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060959cf1)
(at 130.94 84.79)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00006095784b")
(attr smd)
(fp_text reference "R2" (at 2.7 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa0807d2-4fb3-4bbd-b4ea-9822218fb8bc)
)
(fp_text value "2.7M" (at 0.01 1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e002db63-30ef-41fc-a159-75acc0cc92a7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4a6dc45c-d25d-47a1-a0e0-1c22a1e704d1)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d13b2c9f-bce2-4978-b2b0-d20f1660f922))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea3d16c7-e147-4e86-b553-8cc07e6e16b2))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26d871b6-8ad4-4bfb-ac7a-361629c76b6f))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 166d0bc1-ebc2-4bbd-a13b-6293a49014cc))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db12684b-5333-4366-bfc5-eb1690fad590))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fea0f943-7ae3-419e-8131-79992d448cbc))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25345b42-e016-4150-a550-c0cbd32fb241))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a91582f-a62e-46d1-91f4-28697c54fe52))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1738abf-eb26-4760-bb86-118772cab59c))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47b1e225-ad6e-42cd-88b9-938d006117e7))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 2 "GND") (pintype "passive") (tstamp a41d9929-9cef-41f8-ba20-659b4f500b2e))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 29 "MCU_A0_BAT") (pintype "passive") (tstamp 658d4ce7-3298-4a2a-a0e1-24bfbefa1935))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060959d02)
(at 142.94 96.59 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00006097622b")
(attr smd)
(fp_text reference "R3" (at 2.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 104382b4-7c92-4eec-9e8f-5ea7ee28e8d4)
)
(fp_text value "4,7K" (at -3.6 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b26c453b-72bb-48ce-a47c-5d298b86a19e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6278a837-e0e0-4032-ac7e-12ff7cfb64f9)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bb958cb-0005-4c88-950f-8b5f50785e2a))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92abaf64-4434-4b33-b7b0-cfe5ba8ca19a))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b33d4a3b-accf-47a8-bcdc-ded0defc2bb9))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0290741-73b6-4f44-91f6-30cf5003738c))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8a368b2-8906-40d9-b0c0-41be8d35437e))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90e8292a-c157-49c8-91ae-f6c491014f5b))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98769bf3-6048-4c94-8414-f112bd47e446))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68a422ca-21cc-4b03-b150-5a0feffd6c22))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e848defb-5f65-4c0b-a0ec-623f81d967c7))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbf729eb-cdcf-430d-a98f-4c810ead9b02))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 7 "MCU_SCL") (pintype "passive") (tstamp b431ffb9-a09e-41c9-ac9f-186aee412aee))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 3 "+3.3V") (pintype "passive") (tstamp 4bd2b26c-aec2-4941-bee4-d057f003cd48))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060959d13)
(at 142.94 98.69)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00006097595c")
(attr smd)
(fp_text reference "R4" (at -2.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 810a281c-599e-4e49-a7d7-35757f4dff20)
)
(fp_text value "4,7K" (at 3.6 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aec4d20d-e8c5-441b-9e11-e19473d2f5e9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 73c5a7bd-c520-4c93-9cb8-7680558d1b29)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80c8ad4e-d0dc-4c5d-b6da-6cc383ea800c))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e63e39f0-49cf-40c2-9d77-298261542180))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f384d1f4-01db-412c-ab66-ed340b7dceae))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb5eb54a-a15e-49cb-b52c-dcf9e87424e3))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e85d3a96-974f-4fce-9142-85d0197980f5))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d7a3093-d09a-4d5f-9d1f-99f1fe62d696))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 631bbe2f-8af8-453e-b27c-f76eccb44eb1))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2249b5cd-a61c-4998-97e5-8b1e3e8a5f9b))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3a776f0-1782-4ead-a37b-34f6f3acb9c8))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7be4dd03-90b7-44b6-85f4-6b595f55d60f))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 3 "+3.3V") (pintype "passive") (tstamp 654c9e39-b6dc-41e4-8f65-4498cb151e2c))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 6 "MCU_SDA") (pintype "passive") (tstamp 8965a7a9-fe95-49db-bef1-736f344cca2c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006095a3e0)
(at 101.94 80.19)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 459620cf-88fa-4753-a77a-ee72c9d95d9d)
)
(fp_text value "MountingHole_2.5mm" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c33a252a-e2cf-44c1-be2e-2f1290030530)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91a88f4b-aa29-42cf-b67b-bfab7af6ca6d)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 48ebbc62-b5d6-4710-9589-77ad803f6f3e))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 4bc72546-aba3-4604-bee9-4d3ade4c8319))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp 58b366ed-2531-4a04-bb7a-9c518a293898))
)
(footprint "Connector_JST:JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006096aa54)
(at 167.04 92.29 -90)
(descr "JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH side entry")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00006060abc7")
(attr through_hole)
(fp_text reference "J2" (at 2.1 1.2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53b2ae18-8e06-4434-bdc0-c9b78d16fae3)
)
(fp_text value "Conn_01x03" (at 2 4 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 790fc8f0-2435-4dc8-8926-a4b211dc7e46)
)
(fp_text user "${REFERENCE}" (at 1.974999 1.5 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccb59152-025f-4313-be6b-d39994a4ddbe)
)
(fp_line (start -2.36 -2.11) (end -2.36 -0.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29183dc1-19e8-44ca-b0fa-26d47bb5db38))
(fp_line (start -2.06 -1.81) (end -2.06 2.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3f2e5bd-6e1c-4aa6-b4b3-732b99558fb0))
(fp_line (start -2.06 -0.5) (end -1.45 -0.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49471da3-1053-4e78-b695-54ed7dce680f))
(fp_line (start -2.06 0.8) (end -1.45 0.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79dbfd12-e33c-4acd-a7cd-a0a9c6b67304))
(fp_line (start -2.06 2.91) (end 6.06 2.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff8bcf01-468f-4e37-9447-296bce5e72b7))
(fp_line (start -1.45 -1.2) (end -1.45 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af046a9e-e566-4f2c-a9bc-2f362ca9c6eb))
(fp_line (start -1.45 2.3) (end 5.45 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04032b76-e2f0-432f-bd10-bf5750af0aca))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 705cd7bd-1901-42ad-b281-2627fa1f8c5d))
(fp_line (start -0.6 -2.01) (end -0.6 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ba3a13e-de53-429f-8282-3f18065b1153))
(fp_line (start -0.3 -2.01) (end -0.6 -2.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7ea7762-e8ad-490c-a0c8-71f176f875ea))
(fp_line (start -0.3 -1.91) (end -0.6 -1.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3db6aa3a-94a9-4f9e-ac19-3830b366fdca))
(fp_line (start -0.3 -1.81) (end -0.3 -2.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59513b8a-3cb5-40f0-bdbb-8766daf3f9e6))
(fp_line (start 0.5 -1.81) (end 0.5 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 382795c4-e79a-45f2-906d-836c6c369d62))
(fp_line (start 0.5 -1.2) (end -1.45 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c62e3d93-4828-4224-9d50-874c05012e48))
(fp_line (start 0.9 1.8) (end 1.1 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59e560e4-83f7-40fe-adf8-2a0c2d07caf3))
(fp_line (start 0.9 2.3) (end 0.9 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9824dbcd-9c10-451f-917c-b6a7c047c143))
(fp_line (start 1 2.3) (end 1 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 431c60e0-2f4e-4acb-9c4c-c73416b86ded))
(fp_line (start 1.1 1.8) (end 1.1 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3df3293c-f379-44f7-8a83-51d9e976d5db))
(fp_line (start 2.9 1.8) (end 3.1 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6019628c-72f0-428c-b372-c8540a2256f0))
(fp_line (start 2.9 2.3) (end 2.9 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48ec9202-ca72-4b6d-8f9b-124a45053fb0))
(fp_line (start 3 2.3) (end 3 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d5cf4c3-ec87-4d92-8b08-09652bdba56c))
(fp_line (start 3.1 1.8) (end 3.1 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e94cf11a-0e8c-4048-aa76-1406bd1f2d79))
(fp_line (start 3.5 -1.2) (end 3.5 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25696773-87f3-4cee-8a15-a431d1c5342c))
(fp_line (start 5.45 -1.2) (end 3.5 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6db2c859-1698-4fff-91b1-dd77f11f803d))
(fp_line (start 5.45 2.3) (end 5.45 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cdf5f4f-05a9-45dc-87f9-744c02c5dee4))
(fp_line (start 6.06 -1.81) (end -2.06 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35e35a9b-4487-45d2-ab6b-2c23b31f0870))
(fp_line (start 6.06 -0.5) (end 5.45 -0.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38168f4d-3501-4ad7-af85-31281346cdd6))
(fp_line (start 6.06 0.8) (end 5.45 0.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7aab6d5-e51e-470e-90eb-a95f7d82c098))
(fp_line (start 6.06 2.91) (end 6.06 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6eb6ae5e-43e7-48b6-b1e1-010b337ab2a5))
(fp_line (start -2.45 -2.2) (end -2.45 3.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97943213-6237-4a79-8b2c-766a7ee2f6b3))
(fp_line (start -2.45 3.3) (end 6.45 3.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98e5614a-6704-4911-816b-f596d2459ae8))
(fp_line (start 6.45 -2.2) (end -2.45 -2.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa52f39e-de8d-48f8-8e1c-3879f0bfae35))
(fp_line (start 6.45 3.3) (end 6.45 -2.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cec8c12-b5e4-4586-bb77-b66976e67b82))
(fp_line (start -2.36 -2.11) (end -2.36 -0.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55577f41-a26c-456f-bb80-138827664874))
(fp_line (start -1.95 -1.7) (end -1.95 2.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95fb195d-33e9-4bc7-a002-4a7bedae37e0))
(fp_line (start -1.95 2.8) (end 5.95 2.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65a9cae4-a3aa-4b9a-9a2f-f1d3bc53a7fe))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 379f4fa1-031b-4642-b044-c5672d9e5839))
(fp_line (start 5.95 -1.7) (end -1.95 -1.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bcdc4737-38bd-42bd-b3bb-d1f4d0ed5a8b))
(fp_line (start 5.95 2.8) (end 5.95 -1.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97d6b400-f42a-438e-afc9-363046d89f52))
(pad "1" thru_hole roundrect (at 0 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.208333)
(net 3 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp f2ed623e-fcc8-4bd0-a03d-1226c94f9b64))
(pad "2" thru_hole oval (at 2 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 5 "1-WIRE") (pinfunction "Pin_2") (pintype "passive") (tstamp e8b3a14f-aafa-436e-9982-e98b82d47793))
(pad "3" thru_hole oval (at 4 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 443b4fb9-8378-4610-8f7a-3b757129423e))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006096ab87)
(at 167.04 85.09 -90)
(descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH side entry")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000060609dbc")
(attr through_hole)
(fp_text reference "J1" (at 1.1 1.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a76a6f18-ff51-4d3a-82cf-7173314c16b0)
)
(fp_text value "Conn_01x02" (at 9.75 0.75 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ca8d644-7ebe-4fe9-b3d1-baebb5bc1fa0)
)
(fp_text user "${REFERENCE}" (at 1 1.5 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5250c2ad-97e0-4e75-b321-af0c94860959)
)
(fp_line (start -2.36 -2.11) (end -2.36 -0.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87bafaa4-f539-442b-85d4-77c58dca91ca))
(fp_line (start -2.06 -1.81) (end -2.06 2.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 574c0a05-c181-4a11-bed3-a35289dd8954))
(fp_line (start -2.06 -0.5) (end -1.45 -0.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b6db74b-ef90-41c2-b246-e2f7436cea45))
(fp_line (start -2.06 0.8) (end -1.45 0.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63b9cd7e-1234-4dfb-9470-8556a106986f))
(fp_line (start -2.06 2.91) (end 4.06 2.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6fdfedc-9ca9-4ef5-93f6-d447f5f1a185))
(fp_line (start -1.45 -1.2) (end -1.45 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5aeaa581-86e8-4cfc-a0c0-3d50fef35aad))
(fp_line (start -1.45 2.3) (end 3.45 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be1a9edf-d104-41dd-b13f-ddd00dfd4833))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12ff31cd-6556-4aac-b919-7457c58414d9))
(fp_line (start -0.6 -2.01) (end -0.6 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0cd3a45-c335-4474-9149-870c83deb38f))
(fp_line (start -0.3 -2.01) (end -0.6 -2.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75c3a560-81ea-4cfb-87f0-0950ab00357e))
(fp_line (start -0.3 -1.91) (end -0.6 -1.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9605949-ee86-4077-aa8b-65cd9d64de54))
(fp_line (start -0.3 -1.81) (end -0.3 -2.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d53cd994-111f-4b4f-9e63-9ace344ad643))
(fp_line (start 0.5 -1.81) (end 0.5 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp caf7e1b4-5f17-4cc8-ab39-fd4fe68da8b1))
(fp_line (start 0.5 -1.2) (end -1.45 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ea68793-76e6-48b7-bbec-9de2e8a19d87))
(fp_line (start 0.9 1.8) (end 1.1 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77735832-17f2-433d-9351-130a682cd578))
(fp_line (start 0.9 2.3) (end 0.9 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab4143e5-f0c0-46b8-9541-3fd0684fda94))
(fp_line (start 1 2.3) (end 1 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad59494d-5d21-4a27-94ff-172ad21e0330))
(fp_line (start 1.1 1.8) (end 1.1 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50699e31-12da-469b-b6be-0784451f20e6))
(fp_line (start 1.5 -1.2) (end 1.5 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4555e4d4-7087-45a2-82a7-8c07f43e7132))
(fp_line (start 3.45 -1.2) (end 1.5 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dadc1e95-e64b-428a-805f-77b36e3f6c2d))
(fp_line (start 3.45 2.3) (end 3.45 -1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0991a67-5283-444b-9a7c-248f110e18a9))
(fp_line (start 4.06 -1.81) (end -2.06 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f697e91-4bbc-4ed1-90e2-37f316b39bde))
(fp_line (start 4.06 -0.5) (end 3.45 -0.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d59186d-f7dc-4ee3-9a0f-bcc126809be7))
(fp_line (start 4.06 0.8) (end 3.45 0.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f9c12b8-e9cf-4ed6-9442-c83a0b774ad6))
(fp_line (start 4.06 2.91) (end 4.06 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ccb3fb35-3ac5-49e1-8929-4c0e0aa1c609))
(fp_line (start -2.45 -2.2) (end -2.45 3.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b018b64-fbb5-4947-8d9a-41ddf7fe6352))
(fp_line (start -2.45 3.3) (end 4.45 3.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e8efa07-d040-47ea-80dc-9f2ddf653e00))
(fp_line (start 4.45 -2.2) (end -2.45 -2.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9328ea6f-7ae0-4472-b16a-dd47f5e13b84))
(fp_line (start 4.45 3.3) (end 4.45 -2.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90bb9741-627b-4217-bd30-af075bdcb132))
(fp_line (start -2.36 -2.11) (end -2.36 -0.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b45c4ea2-2931-4bd4-8e3e-1ee39cec50b0))
(fp_line (start -1.95 -1.7) (end -1.95 2.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b128b1e-ac4e-4dcb-bcac-4522b2e15bb8))
(fp_line (start -1.95 2.8) (end 3.95 2.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2a69e86-6275-482b-bd4d-a9e4a43fffa1))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d9c1ad2-ea51-4a2c-acf1-45986397f54e))
(fp_line (start 3.95 -1.7) (end -1.95 -1.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 389387f3-101b-48e4-a0f5-8f90871a0026))
(fp_line (start 3.95 2.8) (end 3.95 -1.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb494c65-405c-47fd-a530-f3769974656c))
(pad "1" thru_hole roundrect (at 0 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.208333)
(net 4 "+BATT") (pinfunction "Pin_1") (pintype "passive") (tstamp c8274711-4b4c-49a9-b1b3-9a1ddb5afada))
(pad "2" thru_hole oval (at 2 0 270) (size 1.2 1.75) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 8985d866-13b8-4ccb-bdd9-c227676ce256))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060e0dd97)
(at 154.44 95.77 180)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000060e0e019")
(attr through_hole)
(fp_text reference "J4" (at 0 0.08) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc9ebe33-a648-4e5d-89f3-2b05367e6c38)
)
(fp_text value "Conn_01x05" (at 0 12.49) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cef12dc-f22d-44bf-8498-b72bf93f11ad)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64dfd76b-02b2-457c-994b-139561332dd1)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4efb699c-75b1-4548-b1d2-19312e257eee))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25ae75f9-e069-4952-b916-eca86a2b6e49))
(fp_line (start -1.33 1.27) (end -1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a6e264a-53d1-4d78-9cbe-342b070c6789))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1d33add-71e6-4b36-b6f6-6b61d042bcff))
(fp_line (start -1.33 11.49) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d9ed8ed-7119-454d-a90b-e0f56e3654da))
(fp_line (start 1.33 1.27) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6e7de7e-2799-4cdd-b552-75d08886a9f2))
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9301c43b-a657-405c-8b7e-38364fba76c2))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2b3160f-8691-40cd-89ff-03f63f123121))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 815ca7fb-6615-478d-88c4-12f15917f86b))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc67eaba-d9d9-45b4-858f-f32e496d86f9))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50a05292-5439-4518-9d41-1e83a1ee5a82))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f6bf4da-0271-4b41-883d-d042ded1af48))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11d30b39-9e54-478b-9092-f5c4709d93b3))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48432489-1835-4051-8cbd-97cb84329c92))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e974eed8-37ba-44cc-8023-c689041d0985))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp 00ff282a-e360-4169-a38d-6ad78e728c74))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp eb4fbc15-bd07-4eeb-976e-0c4f89ab506e))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "MCU_RXD") (pinfunction "Pin_3") (pintype "passive") (tstamp edf9ddb0-8ae0-43a5-94d9-6919cd02c6b5))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "MCU_TXD") (pinfunction "Pin_4") (pintype "passive") (tstamp 0d1e2b1c-5c76-4bcb-8d67-d329502eec50))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "MCU_RST") (pinfunction "Pin_5") (pintype "passive") (tstamp 2736e579-365b-4dda-aad5-12e613bd39fe))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060e2bb78)
(at 146.94 84.79 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "C:/Users/Fabian_Otto/Nextcloud/Programmierung/PlatformIO/LoRaProMini/pcb/LoRaProMini.sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-000060608ebe")
(attr smd)
(fp_text reference "C3" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f108599f-0cb6-4245-a5a4-c48ed6db0b31)
)
(fp_text value "1uF" (at -0.086668 -1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94264111-d7c8-4362-8c01-165e7539c64a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp cb331363-fad2-428e-bd4f-8e1ef5bf6b4f)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8d03f65-9221-4532-8447-bc6b625a9a31))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86ca3897-856e-4e3e-96a2-3fd037e54440))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f1b5222-0135-4e9b-ace1-9108a1a7e447))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bbb955f-9fdb-406e-9eca-863ccf837583))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp deafcf55-e861-4d2a-8071-1bb93e7aca33))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e48172b6-3612-48fc-8e8c-65403252cd69))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8574bab2-49ff-44e9-9be7-7b5961be47e0))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp defa4a78-52a7-4d1c-a3fe-f94135ab93b9))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16a2b904-8752-4c15-b027-b82e60fbce77))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74b71ec4-39e7-47b2-9350-e72a46629b48))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 3 "+3.3V") (pintype "passive") (tstamp e2ef8f62-62ec-4207-b490-239cfd636714))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "GND") (pintype "passive") (tstamp 6d93284b-2b25-41da-877f-0fb301c93511))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)