-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path833iot.kicad_pcb
6046 lines (6015 loc) · 296 KB
/
833iot.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(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)
(solder_mask_min_width 0.25)
(aux_axis_origin 18.702533 18.602775)
(grid_origin 18.702533 18.602775)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 "assembly/")
)
)
(net 0 "")
(net 1 "POWER_PIN")
(net 2 "GND")
(net 3 "Net-(D3-Pad1)")
(net 4 "Net-(R8-Pad2)")
(net 5 "BATTERY_PIN")
(net 6 "VBAT")
(net 7 "Net-(R5-Pad1)")
(net 8 "Net-(D2-Pad1)")
(net 9 "VBUS")
(net 10 "Net-(D4-Pad1)")
(net 11 "Net-(D1-Pad1)")
(net 12 "unconnected-(U2-Pad4)")
(net 13 "nRF_VDD")
(net 14 "EXT_VCC")
(net 15 "BLUE_LED")
(net 16 "Net-(U1-Pad13)")
(net 17 "Net-(U1-Pad11)")
(net 18 "DATA-")
(net 19 "DATA+")
(net 20 "unconnected-(J1-Pad4)")
(net 21 "RESET")
(net 22 "/P0.08")
(net 23 "PROG")
(net 24 "/P0.06")
(net 25 "/P0.26")
(net 26 "/P0.30")
(net 27 "/P0.31")
(net 28 "/P0.29")
(net 29 "/P0.02")
(net 30 "/P1.05")
(net 31 "/P0.28")
(net 32 "/P0.03")
(net 33 "/P0.12")
(net 34 "/P0.07")
(net 35 "/P0.15")
(net 36 "/P0.17")
(net 37 "/P0.20")
(net 38 "/P0.13")
(net 39 "/P0.22")
(net 40 "/P0.24")
(net 41 "/P1.00")
(net 42 "/P1.02")
(net 43 "/P1.04")
(net 44 "/P0.09")
(net 45 "/P1.06")
(net 46 "/P0.10")
(net 47 "SWD")
(net 48 "SWC")
(net 49 "unconnected-(U1-Pad25)")
(net 50 "unconnected-(U1-Pad1)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 007d1aa0-0a35-4c79-bc8d-e834bd3664f0)
(at 32.9025 41.5278 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC Part #" "C269704")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/1d601bbf-bc8d-406f-9604-a867f06adf85")
(attr smd)
(fp_text reference "R8" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fb34c2f-8685-4006-a370-36a5c54e8539)
)
(fp_text value "1K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d1347db-292a-4095-85d4-76da0d3f5524)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b06d0f18-c7c1-4973-8806-d4fa87df5412)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 937939a7-3d48-498a-98b7-bb48d04ada01))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e9f702de-b437-4ae2-a03e-b707e9309898))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 680ed401-4444-41a7-a749-88310d3efeaa))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9fdbccc2-2f8e-4736-8eda-6be5762e5cd4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1916e9e-4224-4c5d-a9c6-82b80a4bae89))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b3dfbe76-e5a2-48e9-bf61-46c24ad01a97))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1b2c37f1-2f41-4eef-9163-74d93552bfe4))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2b626917-a177-4b61-81a1-fd2a69eb9f9a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d2fb2423-7bf4-4222-994d-25a9683eab67))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d875da09-775c-45a3-be03-ee257d013433))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D3-Pad1)") (pintype "passive") (tstamp 4ce0e23d-dbb3-4d2d-b549-50bee3d446b9))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(R8-Pad2)") (pintype "passive") (tstamp b4ddef27-9e8b-4c9f-ba6b-bbd22b45d51a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "833iot:XKB_U254-051T-4BH83-F1S" (layer "F.Cu")
(tedit 623B538B) (tstamp 07eda17c-cf78-4ee6-8f05-c1ee5629a4e6)
(at 27.2025 23.0028 180)
(property "MANUFACTURER" "XKB INDUSTRIAL PRECISION")
(property "MAXIMUM_PACKAGE_HEIGHT" "2.98mm")
(property "PARTREV" "A0")
(property "STANDARD" "Manufacturer recommendations")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/074cc084-3be5-43a7-9756-c42bb82c7ad7")
(attr through_hole)
(fp_text reference "J1" (at -0.825 -6.385) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b377b1ca-88e6-43be-a10a-a568d8ee054d)
)
(fp_text value "U254-051T-4BH83-F1S" (at 10.605 -4.885) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad508439-99f9-4136-a374-da63a1bf17f6)
)
(fp_text user "PCB-EDGE" (at 4.6 1.35) (layer "F.Fab")
(effects (font (size 0.590551 0.590551) (thickness 0.15)))
(tstamp 21b640e5-a5cd-4554-9c5a-f111395d0e1f)
)
(fp_line (start 3.98 -1.35) (end 3.98 1.45) (layer "F.SilkS") (width 0.127) (tstamp aeea5f1a-3aad-4ea1-a599-7a8f578a6d07))
(fp_line (start -3.9 1.45) (end 3.9 1.45) (layer "F.SilkS") (width 0.127) (tstamp b504bf13-e5b7-4fdf-bc88-783241e53b0e))
(fp_line (start -3.98 -1.35) (end -3.98 1.45) (layer "F.SilkS") (width 0.127) (tstamp e14df6a3-47c0-4c6e-b4ed-00524ae214f0))
(fp_circle (center -1.3 -3.95) (end -1.2 -3.95) (layer "F.SilkS") (width 0.2) (fill none) (tstamp b08ac76d-480e-48d4-98ec-c5b53a690965))
(fp_line (start -4.4 2.4) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 0e08158e-1463-45e9-be11-4018a25076d7))
(fp_line (start 4.4 2.4) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 263bccba-2327-4fef-8a7e-7f32cf9cc50e))
(fp_line (start -4.4 -3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 53f452a8-b75a-4810-81f1-26f35f4a211c))
(fp_line (start -4.4 2.4) (end 4.4 2.4) (layer "F.CrtYd") (width 0.05) (tstamp b042e56d-5fd5-4262-8f10-5c4f202b25a9))
(fp_line (start -3.98 -2.85) (end 3.98 -2.85) (layer "F.Fab") (width 0.127) (tstamp 473bd900-dcb8-48df-9dca-e4a4deeaf9ce))
(fp_line (start -4.9 1.45) (end 6.2 1.45) (layer "F.Fab") (width 0.127) (tstamp 55043828-1d09-4d98-bee0-283acb2f8767))
(fp_line (start -3.98 2.15) (end -3.98 -2.85) (layer "F.Fab") (width 0.127) (tstamp 7b91b788-9dcf-4424-9b7b-d1271e541519))
(fp_line (start 3.98 2.15) (end 3.98 -2.85) (layer "F.Fab") (width 0.127) (tstamp c3910b8e-e7b4-4446-8cda-58eb11d40c7c))
(fp_line (start -3.98 2.15) (end 3.98 2.15) (layer "F.Fab") (width 0.127) (tstamp ea41bc35-4b9e-4d1c-8c8a-ae65e5faca54))
(fp_circle (center -1.3 -3.95) (end -1.2 -3.95) (layer "F.Fab") (width 0.2) (fill none) (tstamp 2ecd162f-1885-48e5-b9bd-b4fee3231db3))
(pad "" np_thru_hole circle (at -2 -2.35 180) (size 0.6 0.6) (drill 0.6) (layers *.Cu *.Mask) (tstamp 143a35af-b893-4b64-95e7-41f6c73b6bcb))
(pad "" np_thru_hole circle (at 2 -2.35 180) (size 0.6 0.6) (drill 0.6) (layers *.Cu *.Mask) (tstamp 63005c88-0a3e-4641-a781-28b3063298d7))
(pad "1" smd rect (at -1.3 -2.675 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "VBUS") (pinfunction "VCC") (pintype "power_in") (tstamp 7f47ecb6-4909-48a6-b1c5-f4bda50df92d))
(pad "2" smd rect (at -0.65 -2.675 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "DATA-") (pinfunction "D-") (pintype "bidirectional") (tstamp 6afd4048-a128-415b-b222-c4deb6ab96d8))
(pad "3" smd rect (at 0 -2.675 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "DATA+") (pinfunction "D+") (pintype "bidirectional") (tstamp 717e691f-8ded-4684-a35f-32641d281944))
(pad "4" smd rect (at 0.65 -2.675 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(J1-Pad4)") (pinfunction "ID") (pintype "bidirectional+no_connect") (tstamp 4d73c3c5-d17f-428c-b4cb-8dd5a35aaa2c))
(pad "5" smd rect (at 1.3 -2.675 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b2242582-8a2a-4dd7-9028-8eff339cc1b0))
(pad "S1" smd rect (at -3.1 -2.55 180) (size 2.1 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp cf5e0daa-72f0-4b2d-900b-6c184091aba8))
(pad "S2" smd rect (at 3.1 -2.55 180) (size 2.1 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp c108e3b1-5902-49ed-8fb7-869b93cd9957))
(pad "S3" smd rect (at -1.2 0 180) (size 1.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp f982285f-e499-4cce-bef6-ed04b209e25f))
(pad "S4" smd rect (at 1.2 0 180) (size 1.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp b1c66dee-a826-42df-9589-7738fd57eb52))
(pad "S5" thru_hole oval (at -2.825 0 180) (size 0.85 1.7) (drill oval 0.5 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp ccdf1f17-1c14-4145-96c1-ef8b7e81b056))
(pad "S6" thru_hole oval (at 2.825 0 180) (size 0.85 1.7) (drill oval 0.5 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 4078df6e-1c06-47bf-bc56-7d87a909499a))
)
(footprint "Button_Switch_SMD:SW_SPST_TL3342" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 0bb36be2-ca53-49e2-aeb3-4c5728e3d819)
(at 23.7825 31.3028)
(descr "Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf")
(tags "SPST Tactile Switch")
(property "LCSC Part #" "C318884")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/6b19cf6e-385b-4d90-8e0a-e7547a7b0055")
(attr smd)
(fp_text reference "SW1" (at 0 -3.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2524e3e-228a-471d-b6ab-7febc5f574b2)
)
(fp_text value "SW_SPST" (at 0 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8bdf40b7-7312-4b98-8ee3-177dfa3c1a46)
)
(fp_text user "${REFERENCE}" (at 0 -3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 956ad4a4-cb8d-4eef-aba4-03ec6d18e652)
)
(fp_line (start -1.7 2.3) (end -1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 1e3e2138-6822-4c2d-8218-89e25ffe3f06))
(fp_line (start -2.75 -1) (end -2.75 1) (layer "F.SilkS") (width 0.12) (tstamp 28a2cccb-c5e0-45cc-a452-0336e0813126))
(fp_line (start -1.7 -2.3) (end -1.25 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 475da62c-4191-4a2f-9bbc-249deb6d8df7))
(fp_line (start 2.75 -1) (end 2.75 1) (layer "F.SilkS") (width 0.12) (tstamp 52113c98-6292-463e-b72c-6132239a046a))
(fp_line (start -1.25 -2.75) (end 1.25 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 5413e9f0-4b25-4379-9452-5ca9a4dfa90a))
(fp_line (start 1.7 -2.3) (end 1.25 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 64940337-2175-44aa-ab05-e1e92e28a356))
(fp_line (start 1.7 2.3) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 95ef5708-8f43-434f-b139-406a942bfd2d))
(fp_line (start -1.25 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp e7987f0c-e4c6-4aae-a5d6-e1cfea057719))
(fp_line (start -4.25 -3) (end 4.25 -3) (layer "F.CrtYd") (width 0.05) (tstamp 77b08f8f-0764-4619-ae58-4700c5781fa2))
(fp_line (start -4.25 3) (end -4.25 -3) (layer "F.CrtYd") (width 0.05) (tstamp 780076de-fb73-43f2-b5aa-1c95059ff25d))
(fp_line (start 4.25 3) (end -4.25 3) (layer "F.CrtYd") (width 0.05) (tstamp da49333a-2ae3-46a7-85b7-29e867a658b0))
(fp_line (start 4.25 -3) (end 4.25 3) (layer "F.CrtYd") (width 0.05) (tstamp f7925461-00b9-45fa-8499-f4088f9215ce))
(fp_line (start 2.7 -2.1) (end 2.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp 02b39166-9f7a-4094-8bda-785f43edf3d1))
(fp_line (start -3.2 2.1) (end -3.2 1.6) (layer "F.Fab") (width 0.1) (tstamp 05ce1968-bece-4bfd-ade8-db196bc5f219))
(fp_line (start 2.7 2.1) (end 2.7 1.6) (layer "F.Fab") (width 0.1) (tstamp 1b097a20-994c-479c-9cb5-f236aa61c8fa))
(fp_line (start 1 2) (end -1 2) (layer "F.Fab") (width 0.1) (tstamp 21a00f46-105c-4e4b-a84f-ed4acb136567))
(fp_line (start 2 -1) (end 2 1) (layer "F.Fab") (width 0.1) (tstamp 22ebd635-5838-472e-8b50-03affaba3376))
(fp_line (start -2.7 -2.1) (end -2.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp 32d1147a-7743-4223-ab67-db4aaf57b1b9))
(fp_line (start -2.7 2.1) (end -2.7 1.6) (layer "F.Fab") (width 0.1) (tstamp 4f489d12-440e-4cd0-933d-b6701961a6d6))
(fp_line (start -3.2 -2.1) (end -3.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp 4fffb586-b915-45cc-a9a2-02cc516bb571))
(fp_line (start 3.2 2.1) (end 3.2 1.6) (layer "F.Fab") (width 0.1) (tstamp 518a4131-64e9-4ba1-a442-4691a53e2b81))
(fp_line (start 2.6 -1.2) (end 1.2 -2.6) (layer "F.Fab") (width 0.1) (tstamp 6a7b2059-d977-4612-95c2-3fe01e6e1434))
(fp_line (start 2.6 1.2) (end 2.6 -1.2) (layer "F.Fab") (width 0.1) (tstamp 711f8627-5a3c-4396-84c3-6cf951de66c5))
(fp_line (start 1.2 -2.6) (end -1.2 -2.6) (layer "F.Fab") (width 0.1) (tstamp 8b64729b-0793-4b75-90fd-6a59598d76c3))
(fp_line (start -3.2 1.6) (end -2.2 1.6) (layer "F.Fab") (width 0.1) (tstamp 8ef3e563-c1f8-49c5-a3f8-41d88bb0ede4))
(fp_line (start 1.7 2.1) (end 3.2 2.1) (layer "F.Fab") (width 0.1) (tstamp 9273aad3-d4fd-4f46-88b0-3a63b54fdc41))
(fp_line (start 3.2 -1.6) (end 2.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp 94dd7c58-d6bf-4547-ab6b-8de0e37bf355))
(fp_line (start -2 1) (end -2 -1) (layer "F.Fab") (width 0.1) (tstamp 97c3e317-415d-4b4f-8101-e9340ae149a3))
(fp_line (start 1 -2) (end 2 -1) (layer "F.Fab") (width 0.1) (tstamp 9a573a5f-16ed-4bac-a9aa-25b5d86e5dd3))
(fp_line (start -2.6 -1.2) (end -2.6 1.2) (layer "F.Fab") (width 0.1) (tstamp b656459b-45a8-4466-bf55-064e0e9bbeb4))
(fp_line (start -1.7 -2.1) (end -3.2 -2.1) (layer "F.Fab") (width 0.1) (tstamp bd5bb503-514b-468b-8abd-7e31ffd332b7))
(fp_line (start -3.2 -1.6) (end -2.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp c09e814d-1e36-4717-a65f-fd59e1f66b26))
(fp_line (start -2 -1) (end -1 -2) (layer "F.Fab") (width 0.1) (tstamp ca51fbb9-a837-4f97-892a-477f8b6ae176))
(fp_line (start 3.2 1.6) (end 2.2 1.6) (layer "F.Fab") (width 0.1) (tstamp cf646d51-a95b-4acb-92eb-03438484ca3f))
(fp_line (start -2.6 1.2) (end -1.2 2.6) (layer "F.Fab") (width 0.1) (tstamp d5a6653e-3f63-4910-afbc-8ebf149f0d3d))
(fp_line (start 1.2 2.6) (end 2.6 1.2) (layer "F.Fab") (width 0.1) (tstamp d71f0cba-ee35-4c7d-8e36-e6e267833f6a))
(fp_line (start 2 1) (end 1 2) (layer "F.Fab") (width 0.1) (tstamp d77aae80-2ebb-449c-8753-33e439daa878))
(fp_line (start -1.7 2.1) (end -3.2 2.1) (layer "F.Fab") (width 0.1) (tstamp dac75ca8-9fd9-4f25-9f22-82af6f3fdad2))
(fp_line (start 3.2 -2.1) (end 3.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp e6ba8e5a-5295-4d99-9539-f0f44fc4499c))
(fp_line (start -1.2 -2.6) (end -2.6 -1.2) (layer "F.Fab") (width 0.1) (tstamp f0172b04-3281-4d5a-a911-69e210ac9ebd))
(fp_line (start -1.2 2.6) (end 1.2 2.6) (layer "F.Fab") (width 0.1) (tstamp f09822c0-7fac-44ce-a87f-366f7a49f250))
(fp_line (start -1 -2) (end 1 -2) (layer "F.Fab") (width 0.1) (tstamp f1084b0d-b992-4d4c-9074-1c148a908ad5))
(fp_line (start -1 2) (end -2 1) (layer "F.Fab") (width 0.1) (tstamp f6fee84b-bfc5-4648-8e13-9d6d04247a23))
(fp_line (start 1.7 -2.1) (end 3.2 -2.1) (layer "F.Fab") (width 0.1) (tstamp fed97871-4d75-4194-a3d3-5b61f2a948a5))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp e6e4ba06-5100-4065-b809-01784b64c06b))
(pad "1" smd rect (at 3.15 -1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "RESET") (pinfunction "A") (pintype "passive") (tstamp 33aa4306-27d6-4090-96fe-2e0a2a713e0b))
(pad "1" smd rect (at -3.15 -1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "RESET") (pinfunction "A") (pintype "passive") (tstamp a0fa8234-8777-4a66-8b79-9ecbb37d6605))
(pad "2" smd rect (at -3.15 1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp 89bc2a9a-0459-4374-90b7-e699bb20f381))
(pad "2" smd rect (at 3.15 1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp a631a287-dbe8-4491-9924-f1eeb226bfe0))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_TL3342.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 13b44301-e8b6-44a2-a883-05207972227f)
(at 31.9025 32.0028 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC Part #" "C26102")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/5ba1d867-26b2-4215-852b-a71c26ab1ccd")
(attr smd)
(fp_text reference "R9" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8338e846-812b-41c6-ad83-c397e10d62a8)
)
(fp_text value "2M" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8dc0cb95-6a64-4146-a98b-201faa29efcd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cfb29de7-5d87-4b80-bc4c-399de4fa7fae)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 91815931-350b-44ea-ae11-854683127765))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fae21104-6d06-49da-9a8b-b74f2e8a3574))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0c9b9dd2-dc58-4681-9b25-b9c3d020fbdc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8b7bd606-8d7f-4fbd-a2d5-a4d4e067ee34))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d7add1e-d22e-4c3c-ab8e-6362e975e5d0))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d0bca7c3-16fb-43b6-91c1-9db8fac52cb2))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5ce23b6b-bd8c-44d9-a91a-04985175beda))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 869eca01-6daf-4865-b0e8-f32a37e3566c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a4f92507-f2b3-4f75-987d-55004c3588b9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aff48226-032f-4dae-a36a-f783c883d29a))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "POWER_PIN") (pintype "passive") (tstamp b9086bc6-f594-4bed-870a-3805d2b7840b))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f3948324-ce3a-4786-8e6f-06525e602a33))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 189734b9-8485-4c30-8cf0-796856677229)
(at 29.6025 32.0278 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC Part #" "C269682")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005b159927")
(attr smd)
(fp_text reference "R1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7daf5828-f3c9-4b7d-a7a2-cf463fb6219f)
)
(fp_text value "100K" (at -0.625 -0.07 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e2d784c-b1ea-4086-bef2-82018cbe1d69)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3e85f78b-004a-4a21-9691-8920952aaa64)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 12d443ad-5d40-4934-b2b7-007530e8bfde))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp dff5dc14-121e-4820-8bdd-194a2b3cb201))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 468fcc7f-55f8-4783-b36e-f80ec4401b15))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5bc20856-921d-4ca5-8e51-26fc99168376))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp eed9d712-571a-4fa2-b617-7f564bf5e0ac))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f10b6dc0-f39f-4ec0-980e-83a59fc7dc9c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0d439aa8-8969-4698-9c32-7041f6e45f4c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2c3fea3e-cdf1-4761-ab1e-fc29ca86c948))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 917603e2-441d-4888-a037-0b830871fafd))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c5d34e60-e5d5-4bd8-a53c-3ee26cb5d342))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "VBUS") (pintype "passive") (tstamp bf38fd98-a723-4065-8c4e-fb6cd31212e5))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 1b03311f-6d16-4213-808a-96597816d097))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2335745d-4b86-4498-9fad-6d2729137fe3)
(at 24.4525 45.6028 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC Part #" "C26102")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e6319b8")
(attr smd)
(fp_text reference "R7" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31f4dc6c-dde9-45e8-b29d-489d35e0f1d0)
)
(fp_text value "2M" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9d66172-b21f-445f-bff6-1303cec8590d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 751eb404-33b7-4b8f-8aa0-576b234652fb)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 198a2a45-a86c-4371-8a75-c6e4c84fad3d))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp f4f8401f-00e2-4058-8b4d-acf3075d7f77))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a7da8e8-4a29-4619-8c2a-45042f49f661))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 13f293f5-71fa-4ce7-bfc1-43137bddb382))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 77482be5-b12a-41cb-b345-89c6c297fbe1))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ae81fe48-d57e-4488-a23e-f57c11561913))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9feb2246-afac-4ea1-a19b-0b21b94e2662))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a8aaba27-4342-41ce-bbda-d0444467961f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp be6377f8-a401-401c-9bdf-6f9152f2a7bd))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c760136f-382d-4dce-baed-596591861912))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "BATTERY_PIN") (pintype "passive") (tstamp b4e13e2a-b1f5-417e-8d80-b3e4cb5e5e55))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f2471ff2-4a7f-4d16-9dbe-788438e7c5fb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical" (layer "F.Cu")
(tedit 623A02B1) (tstamp 36cd765a-f621-46fc-9b88-d90e333169eb)
(at 39.0225 26.2228)
(descr "Through hole straight pin header, 1x15, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x15 2.54mm single row")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/5f00cead-70fe-4794-8c7a-a5cf40b454da")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d7fbff7-ad9e-4962-b4e0-56a226f3dd6a)
)
(fp_text value "Conn_01x15_Male" (at 0 37.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8cefac6-64e1-41d0-bc58-04e647fd0fde)
)
(fp_text user "P0.26" (at -2.54 17.78 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 03bd99cc-a8a3-4ad6-bd8a-bdda32aca5f9)
)
(fp_text user "P0.28" (at -2.54 33.02 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 225ac9ec-a220-443c-81d4-06271f538fd3)
)
(fp_text user "P0.03" (at -2.54 35.56 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 275e5767-ce6c-4c17-8eb2-b305d8ac40cb)
)
(fp_text user "P0.05" (at -2.54 12.7 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 39c783c0-6b10-44e6-a04f-2aac03c09d16)
)
(fp_text user "VIN" (at -2.54 7.62 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 41bdf98b-396b-4d9c-9f34-5bf1e9a5a9ed)
)
(fp_text user "P0.29" (at -2.54 25.4 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 4ff5e6d8-496d-4059-9d03-3e9be3a32172)
)
(fp_text user "P0.08" (at -2.54 10.16 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 51ea6bcc-0e48-4ccc-ba02-26cdc7d51bc6)
)
(fp_text user "3v3" (at -2.54 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 56e83179-dc25-4df0-bbce-86f069fb9136)
)
(fp_text user "P0.02" (at -2.54 27.94 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 693dad71-9424-4966-85c1-ef46b222bfe4)
)
(fp_text user "P0.30" (at -2.573355 20.265247 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 741e735b-e7bf-49e0-987a-d74379c9bdb1)
)
(fp_text user "GND" (at -2.54 2.54 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp 7a151543-404e-464a-af26-f528a9f28529)
)
(fp_text user "Reset" (at -2.54 5.08 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp ddb0666d-5cf1-45c1-a46f-e16c9082e9fb)
)
(fp_text user "P0.31" (at -2.54 22.86 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp e00c31d9-d665-4a7f-8965-a6371d8b17d2)
)
(fp_text user "P1.05" (at -2.573355 30.449164 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp e1574a61-b2dd-4a9b-821b-7662c84cd4a3)
)
(fp_text user "P0.06" (at -2.54 15.24 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 0.5) (thickness 0.1)))
(tstamp e4071dc3-7b0f-4e26-9b79-2b067b92bab7)
)
(fp_text user "${REFERENCE}" (at 0 17.78 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1838018b-76e2-46c4-810f-488a77452c50)
)
(fp_line (start -1.33 36.89) (end 1.33 36.89) (layer "F.SilkS") (width 0.12) (tstamp 07e949c9-5dcb-46f5-aaf7-f5997cc8a90a))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1d7026ad-e7ce-455a-bbec-9db9975b9151))
(fp_line (start -1.33 1.27) (end -1.33 36.89) (layer "F.SilkS") (width 0.12) (tstamp 557efbe0-59d9-4c3b-875e-681f1d0eabac))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5eb244d0-032b-4a57-a147-44faacc0e313))
(fp_line (start 1.33 1.27) (end 1.33 36.89) (layer "F.SilkS") (width 0.12) (tstamp dbc0323b-700b-465c-8416-a9e9aea1c906))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp fa7a6ff2-91e8-47a3-8788-97a1388c06f6))
(fp_line (start 1.8 37.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 58a29587-ce99-4765-b407-30c1ea49813b))
(fp_line (start -1.8 -1.8) (end -1.8 37.35) (layer "F.CrtYd") (width 0.05) (tstamp 73ede880-e7f5-4d7b-b9cb-33e82f1b044f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp aeeba41f-21f1-411c-816e-2bda876a1c79))
(fp_line (start -1.8 37.35) (end 1.8 37.35) (layer "F.CrtYd") (width 0.05) (tstamp c1e78faf-25fc-46b6-b4c5-f5cb445c8db9))
(fp_line (start 1.27 -1.27) (end 1.27 36.83) (layer "F.Fab") (width 0.1) (tstamp 06cccf2c-d0d0-41ad-bc61-a0c3e7cbae93))
(fp_line (start 1.27 36.83) (end -1.27 36.83) (layer "F.Fab") (width 0.1) (tstamp 292ce6ba-0c6b-4913-be49-83f41145002d))
(fp_line (start -1.27 36.83) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 51ce9675-eb70-4a97-98fd-269bf17eea73))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6ef5f8e0-5c2d-4349-9162-179c7c438d89))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp d9b1315d-9c8a-4956-90df-e5669cf68010))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "nRF_VDD") (pinfunction "Pin_1") (pintype "passive") (tstamp bc96b171-0e5f-4f36-b582-eb709cbba257))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 79a5a253-5ade-4145-9002-16ea61146340))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "RESET") (pinfunction "Pin_3") (pintype "passive") (tstamp 263e9b7e-c3cd-4442-851e-d2b54de99d8e))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "EXT_VCC") (pinfunction "Pin_4") (pintype "passive") (tstamp 95ef25aa-dac6-44d9-90a0-efd49308b704))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/P0.08") (pinfunction "Pin_5") (pintype "passive") (tstamp b29a0e42-fd5a-49a8-8a01-edc4123e673b))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "PROG") (pinfunction "Pin_6") (pintype "passive") (tstamp 75f01a69-5b72-43de-ae85-3f0e1d096e8d))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "/P0.06") (pinfunction "Pin_7") (pintype "passive") (tstamp b8dbe2de-283b-405e-95ac-e8f8950e16ea))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/P0.26") (pinfunction "Pin_8") (pintype "passive") (tstamp e226f21d-d833-4b38-a2cd-20826072ac2f))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "/P0.30") (pinfunction "Pin_9") (pintype "passive") (tstamp 0bc86cc1-c86c-41e0-9315-281c18af05f0))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "/P0.31") (pinfunction "Pin_10") (pintype "passive") (tstamp d547ab08-9a5d-4bc3-bdc6-eb70399817c6))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "/P0.29") (pinfunction "Pin_11") (pintype "passive") (tstamp fd7e3921-456d-4e00-b0f0-baf8980505ac))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "/P0.02") (pinfunction "Pin_12") (pintype "passive") (tstamp 5ee2adf0-1a71-404c-91ed-e0ee9563acff))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "/P1.05") (pinfunction "Pin_13") (pintype "passive") (tstamp ec94d7fb-8ff3-47fc-9bcb-6ab1990a40ec))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "/P0.28") (pinfunction "Pin_14") (pintype "passive") (tstamp e76ed5b3-3300-4086-a950-0e5fe7abe0d2))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "/P0.03") (pinfunction "Pin_15") (pintype "passive") (tstamp 283f6910-e54a-4bc1-a20d-86715c3ab323))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x15_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "833iot:E73-2G4M08S1C-52840" (layer "F.Cu")
(tedit 5C719E12) (tstamp 47472735-41ec-4096-96fb-ce611f148c4c)
(at 27.6025 48.7028 -90)
(property "LCSC Part #" "C2903762")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/8371cb50-50f9-401e-8d3c-7782609df6ca")
(attr through_hole)
(fp_text reference "U1" (at 7.746775 -0.000467) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c485d3ef-a691-4d45-9595-86938e754812)
)
(fp_text value "E73-2G4M08S1E" (at 9.778775 -0.635467) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe148714-b0cf-44d7-9b6c-f06914620619)
)
(fp_text user "E73-2G4M08S1C" (at 15.875 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e216a3d4-c7c0-40e0-9701-6d206641d342)
)
(fp_line (start -0.127 -6.604) (end -0.127 6.604) (layer "F.Fab") (width 0.15) (tstamp 0988bdab-20b2-4388-83a8-9cfbb33342b3))
(fp_line (start 18.034 -6.604) (end -0.127 -6.604) (layer "F.Fab") (width 0.15) (tstamp 208a6583-df1c-4ff8-9045-47b7770a5518))
(fp_line (start -0.127 6.604) (end 18.034 6.604) (layer "F.Fab") (width 0.15) (tstamp 787ed861-bac6-4a43-9839-40cdf7ee276e))
(fp_line (start 18.034 6.604) (end 18.034 -6.604) (layer "F.Fab") (width 0.15) (tstamp f184863f-807b-4eb3-ae9e-2a8857f5a82a))
(pad "1" smd rect locked (at 14.03 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "unconnected-(U1-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 6d7c23f0-27c3-4fa6-89cc-f79a540be70c))
(pad "2" smd rect locked (at 12.76 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "BLUE_LED") (pinfunction "P0.25") (pintype "input") (tstamp b98190a3-4e75-4ed8-b75b-e1b37bee46b3))
(pad "3" smd rect locked (at 11.49 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/P0.03") (pinfunction "P0.03/AIN1") (pintype "input") (tstamp d92867dc-3e98-46a9-a48e-3161efe31b10))
(pad "4" smd rect locked (at 10.22 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/P0.28") (pinfunction "P0.28/AIN4") (pintype "input") (tstamp 79af4db6-baae-4c77-a86f-0586761cb86a))
(pad "5" smd rect locked (at 8.95 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c9a40d5d-4fe7-4da0-89eb-466f8c6c321b))
(pad "6" smd rect locked (at 7.68 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "/P1.05") (pinfunction "P1.05") (pintype "input") (tstamp cb6506b0-3912-438a-b6ea-123a23611666))
(pad "7" smd rect locked (at 6.41 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/P0.02") (pinfunction "P0.02/AIN0") (pintype "input") (tstamp effa9ffa-d173-4290-8a92-c5f93d4c73ba))
(pad "8" smd rect locked (at 5.14 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/P0.29") (pinfunction "P0.29/AIN5") (pintype "input") (tstamp 97931d4a-7c02-4a9b-a790-a3569eede93c))
(pad "9" smd rect locked (at 3.87 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/P0.31") (pinfunction "P0.31/AIN7") (pintype "input") (tstamp 76ff16ff-0d33-4704-b0f8-f9c9f4b3e595))
(pad "10" smd rect locked (at 2.6 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/P0.30") (pinfunction "P0.30/AIN6") (pintype "input") (tstamp 89fa7fcb-3c2b-4c1b-b3ed-e2a1cf745f7d))
(pad "11" smd rect locked (at 0.381 -4.47) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(U1-Pad11)") (pinfunction "P0.00/XL1") (pintype "input") (tstamp e5b90e39-3962-49db-a2a4-466531862883))
(pad "12" thru_hole rect locked (at 2.092 -3.833) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 25 "/P0.26") (pinfunction "P0.26") (pintype "input") (tstamp a4d49e7c-3f1b-4d80-bed7-772a82216d80))
(pad "13" smd rect locked (at 0.381 -3.2) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(U1-Pad13)") (pinfunction "P0.01/XL2") (pintype "input") (tstamp 4925c46f-467c-40b3-95db-ef4df267cd8b))
(pad "14" thru_hole rect locked (at 2.092 -2.563) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 24 "/P0.06") (pinfunction "P0.06") (pintype "input") (tstamp 14fc535c-cb89-48aa-90fe-76e1fd47f505))
(pad "15" smd rect locked (at 0.381 -1.93) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "PROG") (pinfunction "P0.05/AIN3") (pintype "input") (tstamp 4a9da171-847e-4bc4-93f9-edfe5c4b8354))
(pad "16" thru_hole rect locked (at 2.092 -1.293) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 22 "/P0.08") (pinfunction "P0.08") (pintype "input") (tstamp 1b0fa014-c61e-4314-8f3d-160bae26aa4c))
(pad "17" smd rect locked (at 0.381 -0.66) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "POWER_PIN") (pinfunction "P1.09") (pintype "input") (tstamp becc358e-ef6d-41ed-a412-61ca01ad5ed6))
(pad "18" thru_hole rect locked (at 2.092 -0.023) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 5 "BATTERY_PIN") (pinfunction "P0.04/AIN2") (pintype "input") (tstamp a02008a9-68e1-4709-bfc0-24c27997889b))
(pad "19" smd rect locked (at 0.381 0.61) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "nRF_VDD") (pinfunction "VDD") (pintype "power_in") (tstamp c4d75d3d-bb31-481d-a4a7-a0f504882b68))
(pad "20" thru_hole rect locked (at 2.092 1.247) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 33 "/P0.12") (pinfunction "P0.12") (pintype "input") (tstamp f75ebc7d-c37e-40c2-a424-54729f414b88))
(pad "21" smd rect locked (at 0.381 1.88) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 294d1b3f-d421-48e2-92a4-f8f5eef13748))
(pad "22" thru_hole rect locked (at 2.092 2.517) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 34 "/P0.07") (pinfunction "P0.07") (pintype "input") (tstamp 947acefe-ac33-4206-9de3-25b50b4731dd))
(pad "23" smd rect locked (at 0.381 3.15) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "nRF_VDD") (pinfunction "VDDH") (pintype "power_in") (tstamp f5707a39-7e4e-416d-b856-204502394794))
(pad "24" thru_hole rect locked (at 2.092 3.787) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ec464e2c-70c1-4b51-8600-7384ed6e411a))
(pad "25" smd rect locked (at 0.381 4.42) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "unconnected-(U1-Pad25)") (pinfunction "NC") (pintype "no_connect") (tstamp 5fc5324e-c2ef-45c8-948a-a82775445cd5))
(pad "26" smd rect locked (at 2.6 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "RESET") (pinfunction "P0.18/RESET") (pintype "input") (tstamp 01fb1e6b-cb11-499c-98a0-6bff6dff5959))
(pad "27" smd rect locked (at 3.87 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "VBUS") (pinfunction "VBUS") (pintype "power_in") (tstamp cf4939e9-8ae0-4af4-8ec6-e88cfbcbfe6e))
(pad "28" thru_hole rect locked (at 4.632 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 35 "/P0.15") (pinfunction "P0.15") (pintype "power_in") (tstamp 0c3dbbcf-98e0-48d2-853d-b67234b32313))
(pad "29" smd rect locked (at 5.14 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "DATA-") (pinfunction "USB_D-") (pintype "input") (tstamp 436b9e93-01ad-4cd2-a39e-eee50a26ba10))
(pad "30" thru_hole rect locked (at 5.902 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 36 "/P0.17") (pinfunction "P0.17") (pintype "input") (tstamp 233cfd4a-3e69-493d-b359-bfb36c843ecb))
(pad "31" smd rect locked (at 6.41 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "DATA+") (pinfunction "USB_D+") (pintype "input") (tstamp 551310a4-3882-4605-bfec-f0802df1435c))
(pad "32" thru_hole rect locked (at 7.172 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 37 "/P0.20") (pinfunction "P0.20") (pintype "input") (tstamp 93d4d131-a9f1-4257-bd4f-e06ad27b3631))
(pad "33" smd rect locked (at 7.68 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "/P0.13") (pinfunction "P0.13") (pintype "input") (tstamp 26b5b06d-6731-4f1d-a50f-a1a758285eac))
(pad "34" thru_hole rect locked (at 8.442 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 39 "/P0.22") (pinfunction "P0.22") (pintype "input") (tstamp e8a30a4a-b90d-43dc-9cd2-b512b8cb2467))
(pad "35" smd rect locked (at 8.95 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "/P0.24") (pinfunction "P0.24") (pintype "input") (tstamp d976a998-0355-4b51-98dc-421418498533))
(pad "36" thru_hole rect locked (at 9.712 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 41 "/P1.00") (pinfunction "P1.00") (pintype "input") (tstamp 673ed119-91db-4148-9876-56639d2d2321))
(pad "37" smd rect locked (at 10.22 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "SWD") (pinfunction "SWDIO") (pintype "input") (tstamp 7b859b76-0528-49b2-a54e-fd6560111b42))
(pad "38" thru_hole rect locked (at 10.982 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 42 "/P1.02") (pinfunction "P1.02") (pintype "input") (tstamp da656b2e-e4c4-44c7-b28a-53f21ed84da8))
(pad "39" smd rect locked (at 11.49 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "SWC") (pinfunction "SWDCLK") (pintype "input") (tstamp b6f6bd1a-2333-4a7e-8ef6-f8a63bf31635))
(pad "40" thru_hole rect locked (at 12.252 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 43 "/P1.04") (pinfunction "P1.04") (pintype "input") (tstamp 9f6748e8-8f0d-48e2-827e-24181f021855))
(pad "41" smd rect locked (at 12.76 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "/P0.09") (pinfunction "P0.09/NFC1") (pintype "input") (tstamp 2e0de0fd-ad73-4e93-8d2e-96ad3d9f4bc7))
(pad "42" thru_hole rect locked (at 13.522 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 45 "/P1.06") (pinfunction "P1.06") (pintype "input") (tstamp 41dd8dbe-60e2-416e-bb81-b16a7ee0f28c))
(pad "43" smd rect locked (at 14.03 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "/P0.10") (pinfunction "P0.10/NFC2") (pintype "input") (tstamp ed06b896-4df0-4238-b6eb-bbbe5360e849))
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 4df412ae-87c4-4ec7-8738-a6a72291cb75)
(at 22.3025 41.5903 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC Part #" "C264473")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/c3a908c6-01d5-471a-9374-ecf08b2430e4")
(attr smd)
(fp_text reference "D4" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a8a76a0-6023-468a-bf57-4aeb52d09b1d)
)
(fp_text value "PURPLE" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9661476a-e3cc-43ad-bbdf-24b6874ef400)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 80bbd906-780d-49d4-9591-df6c1a36ee85)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3c0e161b-77de-41cd-8057-090b9a285b00))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 461c24bd-c29b-4d81-bd76-c5414eb04a70))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6b065e8e-fef9-4b30-824e-7d9ccd606772))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 111becb9-cb80-417e-8fbe-97b6e8030333))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2022f2c2-2d52-4762-8871-c3aaafed73b6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2ab6f680-d446-4f8f-9f8c-8ce4722c87d3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fec985c7-f284-4d68-8727-af7eebd8b5f8))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1df88bde-ee9c-4b31-90f5-5e91fa88d17a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5fc32f47-b50c-49bd-8a82-dd68c0426109))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b73bc21e-e4fc-434c-9782-67f831579d00))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp c78f65fa-a030-469f-965a-f81d8f3afba6))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cc0d08d7-1c65-4883-9efb-f30fa51da8b0))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 5c946c69-aabf-45dc-9f47-f37983b2dc53))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "nRF_VDD") (pinfunction "A") (pintype "passive") (tstamp 84ba6563-aa9a-4a44-a402-ba732fd7b0d2))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 719e34f3-a935-4f7b-982b-9c19691e49e1)
(at 20.5025 41.5903 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC Part #" "C273617")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005eb6247d")
(attr smd)
(fp_text reference "D2" (at -2.64 -0.25 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ddca9c6-d93f-48af-8707-e3012416640e)
)
(fp_text value "BLUE" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 951f92e3-c509-40e8-964b-37dd7e0e82bf)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fa7a68a5-1582-4679-bafe-2a2ea2733064)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8f38d61d-85a4-4a20-aa88-865d9c66b0b4))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp a76c0baf-6e69-4f8d-a142-018c46047833))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp b90d0267-ce26-4e19-a4c7-fd16cc7a521c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 24cb67fc-f0c9-4f6e-88c1-7636ab854c5e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0f642eb-e44e-4747-9d08-48aa7b02d88d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b89754be-9738-4e5f-8e95-e260ee696903))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp de6a8a79-ffb1-408e-99f7-331b8dd7ba96))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0f28d312-e674-493b-bb0d-24fe0fb55a5f))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 290311ab-2acc-454a-9a59-6cba16c0a08d))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 2cad3fe2-0f3b-467e-9c49-f271aa1ec49b))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 58eb1f49-1e5e-4c0c-97da-fb971f13fe25))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f711db5e-77b0-4494-90e8-aecb55e572ba))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp e9b2f4e0-b0c4-45da-921b-36e4af201264))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "BLUE_LED") (pinfunction "A") (pintype "passive") (tstamp 361dcb36-1f5d-45a8-a966-bd2a77e39204))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7bfe75c7-ef59-483f-8531-f86433a553f4)
(at 21.2425 46.5428)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC Part #" "C218156")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e62e248")
(attr smd)
(fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4eb404f-f3d2-4506-bf24-56396736d56f)
)
(fp_text value "820K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c7cfeb1-8cd1-4c5f-8e65-42b386d94011)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 39a58874-d2bf-449b-9f58-07b2f1a46d16)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 94d07718-2fcc-40a0-ad0e-c4bb67bc804a))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f1d34821-cc17-42fc-b481-1c7f738497e3))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1b642110-eaa8-451d-b449-e92e71e75978))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 442f453a-9b44-44ab-a898-82f45629c72d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 78fa7842-f3c6-48db-8c77-7797633506e5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp be52ce9f-4498-483f-a791-994a787b7224))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 16b71e23-859c-4e16-8af1-5d30a5c2b726))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6a8a1901-a3c7-470d-99d9-02146451972b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ec53b93c-c93c-4a00-b315-00a9db4c857c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fcdae4f4-bcbc-432a-b7d5-ee4bdd3d104f))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "VBAT") (pintype "passive") (tstamp 491de0e1-cd41-47a4-a79b-f86c4b58fa87))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "BATTERY_PIN") (pintype "passive") (tstamp 268c6477-051a-4631-8f4a-c86c47bf5102))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 7f5c5a33-bffa-44be-b723-f59e60ea9e4b)
(at 34.7025 41.5028 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC Part #" "C264458")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/6417a26b-7fa3-4f15-9e1b-9d747117c266")
(attr smd)
(fp_text reference "D3" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d75bbaff-de62-4f47-b2c1-42ba1e99da40)
)
(fp_text value "RED" (at 2.86 0.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43bdf38e-b010-49fa-901f-90246bfdfc87)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5df1d574-4ca4-471a-801a-bb2b89833513)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3fb2e8e3-7579-49ea-8f1f-0415e04bfd8d))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 4208e0be-10e2-4b80-a414-1519879271b4))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 56de11c8-54d5-46a3-86f3-42d9503bfc91))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 22b36c73-46e7-4496-8b98-f69a5955de22))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2c08dad7-0b97-4355-8528-fd74d397da31))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 658cbe5a-e7f5-4f80-bc14-54c2ecfeca7c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8198e596-d523-4ba3-91d9-8f9c41f56b37))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1b27d1c8-f65f-4837-ac2a-4472d56cd4ff))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6ec4beb8-dbfb-4b48-921c-f98b9d0706b5))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp a881fee1-2247-4b84-acc6-5a7e843e2ba6))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c623739f-e556-4bf3-bf0d-ea8f14f7750e))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp e7cc72e9-2528-4173-ac91-2a1600dc3104))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 165068c6-cae0-4fb2-b201-2f3f8a0b28a0))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "VBUS") (pinfunction "A") (pintype "passive") (tstamp 806b945e-fc59-4641-ae29-5257d31d3d70))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_3215-2Pin_3.2x1.5mm" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 8231f06e-2ee3-4905-af5e-c0d72e3085eb)
(at 30.9525 45.6028)
(descr "SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf")
(tags "SMD SMT Crystal")
(property "LCSC Part #" "C130253")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/8454d8c7-0def-43ed-8a27-af4060dc3597")
(attr smd)
(fp_text reference "X1" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb847691-a236-48f0-9f44-65a418dab540)
)
(fp_text value "32768kHz" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f9df934-4054-4d8a-b681-1657a9279a59)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1a89e2c-c297-4307-a1ff-efd1e2a95a5d)
)
(fp_line (start -0.675 0.875) (end 0.675 0.875) (layer "F.SilkS") (width 0.12) (tstamp 4497622e-6a35-4d56-b145-e61873b6a125))
(fp_line (start -0.675 -0.875) (end 0.675 -0.875) (layer "F.SilkS") (width 0.12) (tstamp 5f3f0408-a3b0-4f22-91e2-9a024ab006ab))
(fp_line (start -2 -1.15) (end 2 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 372eb80c-116e-4b19-abae-92abb6d35e81))
(fp_line (start -2 -1.15) (end -2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 4cdd8415-dbde-4f4a-9692-de5bfb341275))
(fp_line (start -2 1.15) (end 2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp e4da03fa-98df-4f6e-905c-6338b6b66b7e))
(fp_line (start 2 -1.15) (end 2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp fc98aaf7-0aba-4c7e-a96d-56e31c31a588))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75) (layer "F.Fab") (width 0.1) (tstamp 1d64fb24-a192-4276-96bc-30811b5dbebf))
(fp_line (start 1.6 -0.75) (end 1.6 0.75) (layer "F.Fab") (width 0.1) (tstamp 87098d73-0d35-4a8f-aa7f-ade9272dc761))
(fp_line (start -1.6 0.75) (end 1.6 0.75) (layer "F.Fab") (width 0.1) (tstamp 87e4b1bb-0b21-4bc6-b11f-269a3347496b))
(fp_line (start -1.6 -0.75) (end -1.6 0.75) (layer "F.Fab") (width 0.1) (tstamp ae39d000-e1da-4f40-b995-9482be0f1de9))
(pad "1" smd rect (at 1.25 0) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(U1-Pad13)") (pinfunction "1") (pintype "passive") (tstamp e93b4aa0-7fe2-4b97-9fb5-c5458e04e006))
(pad "2" smd rect (at -1.25 0) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(U1-Pad11)") (pinfunction "2") (pintype "passive") (tstamp 3487b883-d132-4810-af37-6ee3794b3652))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3215-2Pin_3.2x1.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 82771776-27f6-4c8a-8652-f67ca7a2b4f5)
(at 29.8025 41.5028)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC Part #" "C668215")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/8a48cdb2-fb95-4764-80b7-8cfa5d38fcb6")
(attr smd)
(fp_text reference "U3" (at 0 -2.4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5946461c-3619-4297-ada8-808db114b5fb)
)
(fp_text value "TP4054" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3de27c1c-897a-4a6c-b0f7-6b3c6fd91fd1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6213c200-cc8a-481c-883f-35278b9518d8)
)
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 13a33b3d-968c-43e3-9f2a-66108de201d4))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 4a1069b5-b54d-43c2-8699-49962b3c7a7c))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 7d595168-bd99-442a-961b-c33b87293e60))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp c0520a89-1ce8-4759-a56c-c54f903f83db))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7a86bf7d-69ff-410f-8ee7-d09db8d8408f))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp ab276e50-f838-4362-9aac-7d16f40393c4))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp b9cddc00-5d9b-447c-bc13-6730f163df7a))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp bc3f6e1f-c81e-4889-865a-0e223a5a22e2))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 005f6ea1-3526-4e97-86e4-41388e3bc145))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 0eaea668-c353-4e5e-8f10-4648bd7737ed))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 54cae88e-0c1e-4c17-9589-ea6ab2d12694))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 70b53718-ed58-494c-b8a6-19eb974c07c4))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp a82c7da7-6077-4900-b925-87315eda8158))
(pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(R8-Pad2)") (pinfunction "STAT") (pintype "output") (tstamp 9e00edb4-f0f4-46bc-a82d-075ebfd0d3ed))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 292c02f1-523d-4844-90f0-a744ec5ae311))
(pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "VBAT") (pinfunction "VBAT") (pintype "power_out") (tstamp 283ed2be-f188-4938-9d07-b9e8bad5f0d4))
(pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "VBUS") (pinfunction "VDD") (pintype "power_in") (tstamp 4b3ca595-07d8-471d-a599-10e87e77b20e))
(pad "5" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(R5-Pad1)") (pinfunction "PROG") (pintype "input") (tstamp 29c8820e-a6aa-4b1b-a048-868ed62704c1))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8519174e-f406-4836-8f33-e219a5351591)
(at 26.9525 45.6028 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC Part #" "C2096417")
(property "Sheetfile" "833iot.kicad_sch")
(property "Sheetname" "")
(path "/e9af8841-caba-4ffb-9a2b-4c3dcf1f318f")
(attr smd)
(fp_text reference "R5" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c908cdd7-5bf2-4e04-ae66-bd89b22bab8d)
)
(fp_text value "RPROG" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35a1a735-588f-4c50-9b46-cb8744ae8f02)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3eb6166e-d2a4-4778-a9e3-fd9ea19f972e)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a6e79250-4ea1-4a1f-b168-c1d347acb43a))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c36f7147-bc6f-4cbe-8b56-617ae1aaead3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1bd13fbe-d376-42a1-8a94-f12442f4121a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2ad27911-6b4b-41d3-af19-3a88d479912c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6dda73be-73a3-4bdf-aea3-f2d520a51491))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 825e7db8-0294-426e-853c-3be31e57f559))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 293bc8e1-4ff1-450d-8ef0-4276b77002bf))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 54c2b029-df21-4268-9a74-8433670031c7))