-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMCU Datalogger.kicad_pcb
13467 lines (13428 loc) · 534 KB
/
MCU Datalogger.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")
(title_block
(title "MCU Datalogger")
(date "2022-06-04")
(rev "1")
(company "Amrith")
)
(layers
(0 "F.Cu" mixed)
(31 "B.Cu" mixed)
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" 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 "Immersion gold")
(dielectric_constraints no)
(castellated_pads yes)
(edge_plating yes)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(BT1-Pad1)")
(net 2 "GND")
(net 3 "VCC")
(net 4 "Net-(U4-Pad7)")
(net 5 "Net-(D1-Pad1)")
(net 6 "/SCK")
(net 7 "Net-(D2-Pad1)")
(net 8 "/SDA")
(net 9 "/D2")
(net 10 "/D3")
(net 11 "/D4")
(net 12 "/D5")
(net 13 "/D6")
(net 14 "/D7")
(net 15 "/D8")
(net 16 "/RX")
(net 17 "/TX")
(net 18 "/MOSI")
(net 19 "/MISO")
(net 20 "/RESET")
(net 21 "Net-(U2-Pad3)")
(net 22 "Net-(U2-Pad7)")
(net 23 "Net-(U2-Pad1)")
(net 24 "Net-(U2-Pad2)")
(net 25 "unconnected-(U4-Pad6)")
(net 26 "unconnected-(U4-Pad13)")
(net 27 "unconnected-(U4-Pad14)")
(net 28 "unconnected-(U4-Pad19)")
(net 29 "unconnected-(U4-Pad22)")
(net 30 "unconnected-(U4-Pad23)")
(net 31 "unconnected-(U4-Pad24)")
(net 32 "unconnected-(U4-Pad25)")
(net 33 "unconnected-(U4-Pad26)")
(net 34 "Net-(C3-Pad2)")
(net 35 "Net-(C4-Pad2)")
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad_TopBottom" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 03a7bcd1-796d-4e3f-bf28-619fccd763cc)
(at 143.865 106.087)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/89451bb0-2827-42ed-9314-1dba0e030cd9")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at -2.492 -1.948) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp f0aa54eb-910f-4b50-bfb4-5f90f33db56f)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59967738-e6a6-41c0-b976-ad5182c07876)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89f4b1a4-5aa3-48d7-a550-5ff2ec001074)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 77969d59-bab8-4e11-b07a-38075430532f))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0a074ec3-db82-4dba-8b7a-04655d60cefe))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "B.Cu" "B.Mask") (tstamp 3af7b75c-0826-4bc2-b212-17cfa41ef437))
(pad "1" thru_hole circle (at 0 0) (size 2.6 2.6) (drill 2.2) (layers *.Cu *.Mask) (tstamp 569667bc-4063-494d-831d-6c8bca5c620b))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "F.Cu" "F.Mask") (tstamp 5adb1b4c-ef4d-4d87-962e-89b40a387986))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 142b6a4d-2854-4820-8d56-55092452d1a5)
(at 132.239 83.978)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/58f667ed-edf9-4332-8ef3-f8bea84ffd8e")
(attr smd)
(fp_text reference "R4" (at -4.2475 -0.472) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 846a7b5c-81c3-45c8-a7dd-1d06127d93a3)
)
(fp_text value "4.7K" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0d94a7d-1ffa-4a53-841a-fff179554e45)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9843602a-4f07-4326-8ccd-c3ba603f4d51)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 93d1de23-b374-4a31-b7fe-35244c743d38))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 9db7a218-e671-4c8f-89c9-428eed004aa0))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1bd60f03-210e-4d6e-9f86-647520c2d149))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1def1fe6-3bb4-4bef-be6c-2cd1b0310bd7))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 272992e9-aa5d-4c61-b4d9-822954109db2))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3dd987fa-e285-48ed-b581-67b62cc79fa9))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2bea177b-094f-48fa-8a5d-607962d687f9))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3604061f-410b-4987-b790-37bdd089b001))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 431b1a7a-deff-473b-bb7a-d0ad0b641265))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f2b25eca-655e-4235-8720-d97af4695229))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "VCC") (pintype "passive") (tstamp 7f0aded4-b357-4fe4-b429-ee69c7a90aeb))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 8 "/SDA") (pintype "passive") (tstamp 99440cfc-b0a0-406c-8477-5db83b552eee))
(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 "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 15009b2a-1440-47b0-968f-5d0b2974853c)
(at 108.729 79.832)
(descr "SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/874dbaf8-adf6-4f01-81a0-e037bac53346")
(attr smd)
(fp_text reference "U3" (at 0.246 1.318) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0eeaf0a4-6773-4600-a0f6-f2d2c27e55b4)
)
(fp_text value "24LC1025" (at 0 3.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b5e3a53-5d36-4272-9aae-3bf439286d77)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df79c260-ef92-42e5-b6ee-8f38dc2d87a0)
)
(fp_line (start 2.725 2.725) (end 2.725 2.465) (layer "F.SilkS") (width 0.12) (tstamp 357a79c2-f23e-45d8-8ee2-88a01226230c))
(fp_line (start 2.725 -2.725) (end 2.725 -2.465) (layer "F.SilkS") (width 0.12) (tstamp 4d846075-876c-4772-b30d-c30485dff380))
(fp_line (start -2.725 2.725) (end -2.725 2.465) (layer "F.SilkS") (width 0.12) (tstamp 5060076a-b403-4bcb-85f4-87f0fa0e10d0))
(fp_line (start 0 2.725) (end -2.725 2.725) (layer "F.SilkS") (width 0.12) (tstamp 72f37f50-8e78-4918-94ea-65a86e591674))
(fp_line (start 0 2.725) (end 2.725 2.725) (layer "F.SilkS") (width 0.12) (tstamp 882f8911-ff25-4f5a-a5ef-ce0ea98a6867))
(fp_line (start -2.725 -2.725) (end -2.725 -2.465) (layer "F.SilkS") (width 0.12) (tstamp 9c2bac81-6216-48c9-865c-2385efdbae7d))
(fp_line (start 0 -2.725) (end 2.725 -2.725) (layer "F.SilkS") (width 0.12) (tstamp a9c0d6af-b362-4623-a925-a2696508b8bd))
(fp_line (start 0 -2.725) (end -2.725 -2.725) (layer "F.SilkS") (width 0.12) (tstamp b2d27dd3-42d8-4587-8247-3aba1e5a4f37))
(fp_line (start -2.725 -2.465) (end -4.4 -2.465) (layer "F.SilkS") (width 0.12) (tstamp cf281c12-8ba8-4194-b498-5eb79bd7850c))
(fp_line (start 4.65 2.86) (end 4.65 -2.86) (layer "F.CrtYd") (width 0.05) (tstamp 721530dc-ad11-4b95-9aef-95d5eeaf2894))
(fp_line (start -4.65 2.86) (end 4.65 2.86) (layer "F.CrtYd") (width 0.05) (tstamp 776de408-ef0f-4da9-acff-f4d63f8f45d6))
(fp_line (start -4.65 -2.86) (end -4.65 2.86) (layer "F.CrtYd") (width 0.05) (tstamp bbfead43-3bf5-4148-83f7-f6a7b59acfcb))
(fp_line (start 4.65 -2.86) (end -4.65 -2.86) (layer "F.CrtYd") (width 0.05) (tstamp c7161392-fc6a-4ef2-b309-bffc5ab9d46d))
(fp_line (start 2.615 -2.615) (end 2.615 2.615) (layer "F.Fab") (width 0.1) (tstamp 1e544f54-84cd-463b-af8b-d03e3a688ee7))
(fp_line (start 2.615 2.615) (end -2.615 2.615) (layer "F.Fab") (width 0.1) (tstamp 998c2a0e-bf8e-4eb8-bb73-67d2a61cb8b1))
(fp_line (start -2.615 2.615) (end -2.615 -1.615) (layer "F.Fab") (width 0.1) (tstamp a886f1aa-e8e8-444c-84a4-7b42dc2ad1cd))
(fp_line (start -1.615 -2.615) (end 2.615 -2.615) (layer "F.Fab") (width 0.1) (tstamp b5f6e6b4-192a-44b2-be56-6850ea2b2d44))
(fp_line (start -2.615 -1.615) (end -1.615 -2.615) (layer "F.Fab") (width 0.1) (tstamp d08baa6b-4c36-4fb4-b76b-42efdcf3db76))
(pad "1" smd roundrect (at -3.6 -1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "A0") (pintype "input") (tstamp cb33c10f-99ed-4de1-824a-e380c35900aa))
(pad "2" smd roundrect (at -3.6 -0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "A1") (pintype "input") (tstamp e77d4c68-8eed-4901-ba25-2337ce4032e4))
(pad "3" smd roundrect (at -3.6 0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "A2") (pintype "input") (tstamp d9b0b26d-88a9-4673-8feb-ccf2717fedd0))
(pad "4" smd roundrect (at -3.6 1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 184efc31-19b5-472a-a87d-fcb55425f4b7))
(pad "5" smd roundrect (at 3.6 1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/SCK") (pinfunction "SDA") (pintype "bidirectional") (tstamp 268fcbc6-85b3-42e0-9556-34ac25c6b3a8))
(pad "6" smd roundrect (at 3.6 0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/SDA") (pinfunction "SCL") (pintype "input") (tstamp 40e3d099-d214-4a9a-9692-0658687bffd0))
(pad "7" smd roundrect (at 3.6 -0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "WP") (pintype "input") (tstamp 71a09f66-cdc1-4542-8229-b3642eb435b0))
(pad "8" smd roundrect (at 3.6 -1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp bb4430b4-4a3b-4fa2-a552-e2238ac0a323))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_5.275x5.275mm_P1.27mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1603d990-0b92-416b-9a52-9c4cd556fb9d)
(at 132.247 90.047 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/0e95702b-aa27-42cd-ade6-beebc10c6f82")
(attr smd)
(fp_text reference "C2" (at -2.986 -0.296) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 3fb9fd6a-b2ba-4895-91f6-ffa39dba2a17)
)
(fp_text value "22pF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1299bbfa-f0a9-41fd-810f-c01a12bcd1c6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 50c8bae0-16b7-4056-aef7-5bf0e7117118)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2daa44b8-db51-4abc-80fa-7b31001f14aa))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp c9a7756c-e67c-49ac-863a-be5fa8a00363))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4f1495b9-8128-4cd6-98d7-54051a7a602b))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 789c6ccd-6afb-4c0b-94d5-de4ba42042eb))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 78c29b90-eefd-4b06-946d-37c65b746410))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp ba59f8c8-c486-4f7b-bdc8-c8fe40683772))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 02fad254-8717-48e2-b3e5-f479fb510066))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 90844158-c184-44ce-8129-76372ceb3b71))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b260f6d3-236d-4bcc-8bd9-2559ea566cdb))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp b59ea0ca-e752-4d61-8319-4fcf2d19cb41))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cdf0df61-c167-479a-8f95-82c3a3666bc1))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U4-Pad7)") (pintype "passive") (tstamp 36a41fc0-0977-44c7-aa08-f92fd8c10aff))
(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" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 25478c72-7840-4f31-a1ed-b41403d2fb7e)
(at 106.7235 100.893 180)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/1cd4cd25-b3d1-4eb2-9ee3-b812e12c968e")
(attr smd)
(fp_text reference "R1" (at -0.0385 -1.97) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 2e09dd69-1162-443c-81f5-6e87568900e0)
)
(fp_text value "10K" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9ac0431-d88d-4b68-a1a7-26e2b077beb0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7f587363-7f11-43ee-bd4d-7538e6d97df6)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 94d86cb1-f260-42a8-9046-1f6902caee86))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp b686b431-fa31-43b4-b362-4dbf9900bf20))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 12aaf414-96b8-411e-80b8-7b288dcefd06))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 90044524-2005-4dba-b23b-d9a27b2f4bed))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9edd85d0-a7d3-4d6e-b993-6dd8e7c38a55))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a52eeeee-8852-4670-9f4f-083b7e4a7014))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0c1cc0f6-3fa7-4a90-a75c-eca1c94fb3c1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1cf4dc5d-1e5b-488b-a6cc-96c2f9eb5d88))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp b8eef25f-af2a-42d0-9891-2b17102a0c13))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f831ff66-4186-4b4d-8752-90b899f733d7))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "VCC") (pintype "passive") (tstamp f2d9cc4e-9200-4777-af29-d55a595cc264))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 21 "Net-(U2-Pad3)") (pintype "passive") (tstamp cec83a91-f44c-4da0-a705-eb410ace0bcd))
(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.2mm_M2_DIN965_Pad_TopBottom" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 2fd01a2f-314f-4a06-b7c3-228477fcc13b)
(at 143.612 78.429)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/40f6e887-23fc-4a76-aea9-691bca8d4e9c")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at -3.394 -1.385) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp bc5a22fc-2cfe-4fe3-8bb6-1469574d194c)
)
(fp_text value "MountingHole" (at -0.687 2.286) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1482de2-2208-45b6-b26d-9494ccb14a7b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2919e7b0-e894-4f9f-9158-ac44a5e65491)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp dfd7ebbc-07b4-4ee1-a556-b94ed79087c6))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9c5836e0-4e81-4bf7-901c-946ba5cb3a72))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "F.Cu" "F.Mask") (tstamp 1a8f504a-d153-48de-ba89-65c32583b5aa))
(pad "1" thru_hole circle (at 0 0) (size 2.6 2.6) (drill 2.2) (layers *.Cu *.Mask) (tstamp 5bd475aa-1807-415f-a022-e4e7bd343349))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "B.Cu" "B.Mask") (tstamp 82e6a61e-39b5-4a28-b5b9-86f8cbfafc16))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad_TopBottom" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 330b2a4c-8835-4215-8a4f-1f68f54269ad)
(at 100.626 105.684)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/6a3e7002-6833-42ed-944e-35fe6ad7a092")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -2.9) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 905a43e6-9b16-4d5e-838f-084c8a4e9965)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a7d6a9b-ac8e-4d3a-86a6-356fa1c7e144)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c6c5453-d8e5-4049-9dd3-45b469c132c3)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4154c3f9-0df0-4d64-aebb-a50abe2f3a6f))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 98715686-1070-410f-95c5-1864532d06b1))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "F.Cu" "F.Mask") (tstamp 058d3048-a769-43ce-b22e-d51cb460b2a9))
(pad "1" thru_hole circle (at 0 0) (size 2.6 2.6) (drill 2.2) (layers *.Cu *.Mask) (tstamp 914f0dbf-150b-4183-8362-51bad90203e3))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "B.Cu" "B.Mask") (tstamp a721edc1-88d1-4b6a-bc28-369d6822f2de))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3569d4a9-a6b3-46b3-9197-434b0ccef56e)
(at 132.326 86.617 180)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/a3f9c6b6-1661-4aed-910d-16d5cf883aed")
(attr smd)
(fp_text reference "R3" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 32416b83-4a2f-40b3-afe1-86d0b8446c42)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4b869d5-49ae-4d38-8125-ba919dde7b1f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 560e8ebf-14df-45a0-8ab0-7fa2303f80df)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 03e6d0fc-3b1a-4244-9355-d4d671026154))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp bc5d81d8-a819-4df4-97c6-e8a2e275eff7))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2e10d874-a310-4b7f-8ae4-4d1bfee0cc73))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ac0c7365-5d3b-4187-9463-600dce93729f))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ac2cc681-64b0-4b85-a19e-45bb6dcdae7f))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp de9d9951-5191-4dcb-9a79-b646596c41f8))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 92cd9c3e-d600-4b3e-9060-5bf01d55a38c))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b537cf3a-2275-4027-a0dd-80e1ae87f0c6))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c7da0030-8fd8-4b30-9747-d374659cd8fb))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp fd2341f5-cc36-496e-9deb-301294cabddc))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "VCC") (pintype "passive") (tstamp dd953e94-0c79-4045-8661-2d072420c279))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 22 "Net-(U2-Pad7)") (pintype "passive") (tstamp 8a047868-7123-463a-b86b-65bda4047a9c))
(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 "DS1337S_:SOIC127P600X175-8N" (layer "F.Cu")
(tedit 6299918C) (tstamp 3788f825-d096-4725-9265-056714919bf5)
(at 108.475 96.579)
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/aba45fc9-eefa-4c46-afa8-47ddc02f0818")
(attr through_hole)
(fp_text reference "U2" (at -0.04 -1.463) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09a48e5b-fcc0-4a28-9583-6a9775dad71c)
)
(fp_text value "DS1337S+" (at 7.46 3.332) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f088b259-d682-4458-916c-d899c8af3ab9)
)
(fp_line (start -2 -2.52) (end 2 -2.52) (layer "F.SilkS") (width 0.127) (tstamp 7d9e0f05-8562-438d-93c6-cc64313b5f73))
(fp_line (start -2 2.52) (end 2 2.52) (layer "F.SilkS") (width 0.127) (tstamp abb46e9a-afac-4889-9615-a18f3d94b307))
(fp_circle (center -4.445 -2.495) (end -4.345 -2.495) (layer "F.SilkS") (width 0.2) (fill none) (tstamp ba3880cf-4347-423e-9b23-65a2e301456d))
(fp_line (start 3.71 -2.75) (end 3.71 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 216ad117-4e02-491b-8445-c03d65c66ebe))
(fp_line (start -3.71 -2.75) (end -3.71 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 24eaa440-d0ea-469c-8824-5d853640d135))
(fp_line (start -3.71 2.75) (end 3.71 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 382010a7-9b58-44cd-b929-411c3812e555))
(fp_line (start -3.71 -2.75) (end 3.71 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 4de3f868-469f-40d8-b7ed-477a26be1d80))
(fp_line (start -2 -2.5) (end -2 2.5) (layer "F.Fab") (width 0.127) (tstamp 0e9a9edf-960d-4243-bf38-4a1090686c65))
(fp_line (start 2 -2.5) (end 2 2.5) (layer "F.Fab") (width 0.127) (tstamp def80195-01e5-43de-8963-3b7c0212f8e9))
(fp_line (start -2 2.5) (end 2 2.5) (layer "F.Fab") (width 0.127) (tstamp f261ba1b-805b-400f-8bcc-b7846fd023d0))
(fp_line (start -2 -2.5) (end 2 -2.5) (layer "F.Fab") (width 0.127) (tstamp f544f631-d2a3-4c80-a616-3407b45deb3f))
(fp_circle (center -4.445 -2.495) (end -4.345 -2.495) (layer "F.Fab") (width 0.2) (fill none) (tstamp 671b3805-5be2-4aac-b32b-911b2d10ada2))
(pad "1" smd roundrect locked (at -2.475 -1.905) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 23 "Net-(U2-Pad1)") (pinfunction "X1") (pintype "input") (tstamp 43e20194-ab75-4f40-8640-62fd9daa2b2f))
(pad "2" smd roundrect locked (at -2.475 -0.635) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 24 "Net-(U2-Pad2)") (pinfunction "X2") (pintype "bidirectional") (tstamp 590fc737-3b89-4aa3-9e5a-7120b2141cd8))
(pad "3" smd roundrect locked (at -2.475 0.635) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 21 "Net-(U2-Pad3)") (pinfunction "~{INTA}") (pintype "output") (tstamp b5f37fb9-4256-4bcc-9918-4f0714e21691))
(pad "4" smd roundrect locked (at -2.475 1.905) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b488e820-bd7f-4ad4-bf2d-46df194b039a))
(pad "5" smd roundrect locked (at 2.475 1.905) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 8 "/SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp bbdc816b-963a-411e-a33f-89f745df34f8))
(pad "6" smd roundrect locked (at 2.475 0.635) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 6 "/SCK") (pinfunction "SCL") (pintype "input") (tstamp 8fe9de86-d147-4927-9fa7-c9cba65d6f6f))
(pad "7" smd roundrect locked (at 2.475 -0.635) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 22 "Net-(U2-Pad7)") (pinfunction "SQW/~{INT}") (pintype "output") (tstamp 31ed696c-01b8-4c94-9dd9-2ea434f5e1b8))
(pad "8" smd roundrect locked (at 2.475 -1.905) (size 1.97 0.59) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 859584ad-aa5d-4e32-b59a-5d07a574df5a))
(model "${KIPRJMOD}/project_specific_library/DS1337S_/DS1337S_.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 37f4a5b3-e50b-4c56-baed-d2fd488dd2d6)
(at 127.19325 78.244)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/f7240be6-efd8-42d4-8f21-54861f1de715")
(attr smd)
(fp_text reference "C5" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 55cfccc0-2360-4da8-bad5-7df57dfc20ed)
)
(fp_text value "100nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38db8c85-6dea-4be6-a2f3-631a81006f17)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp da4324e8-ba67-423d-a7a2-92e990fa36a9)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 946b30bd-286f-43f6-b012-11fa6e800880))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp e07734b4-3034-481c-82c3-68895cd86018))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 72bd32d7-6942-41c6-83c6-3e335700bd12))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp a601fd26-9e53-4a6e-8b10-7fcdea0cefb1))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp a680d5ae-7f2e-4f40-b24c-29fe80b4e429))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f482a64b-9552-4179-a4cb-afcf9c133e8e))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 337bb111-cd46-439d-b04d-d4a15163586d))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 712efe3d-2b4e-42d6-8735-0bf4c2c08eab))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c5a715b4-22dc-4310-969e-3ab3496eb929))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f6b7b6b3-d866-4f19-a29a-ca74414a168a))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(BT1-Pad1)") (pintype "passive") (tstamp c721792a-e916-442c-b1fa-c8832a7bfbe2))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 397fd231-5e19-4c25-9e7b-6a2cf7bc9337))
(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_SO:SOIC-8_5.23x5.23mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 42738149-2f48-4488-a539-69f6146c80fd)
(at 108.729 88.2605)
(descr "SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/965308c8-e014-459a-b9db-b8493a601c62")
(attr smd)
(fp_text reference "U1" (at -0.038 -1.432) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fbac08b-a11a-4167-9e97-80f121f74f50)
)
(fp_text value "24LC1025" (at 0 3.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4570b5b0-b496-4683-9764-aac4779dc7a0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92505cfe-fd46-4fc5-a84c-990d2acab511)
)
(fp_line (start -2.725 2.725) (end -2.725 2.465) (layer "F.SilkS") (width 0.12) (tstamp 0780db56-7a8c-41e6-be3e-44096034dae9))
(fp_line (start 0 -2.725) (end 2.725 -2.725) (layer "F.SilkS") (width 0.12) (tstamp 2e3700cf-e8d2-4d0f-95ce-8926499b57da))
(fp_line (start -2.725 -2.465) (end -4.4 -2.465) (layer "F.SilkS") (width 0.12) (tstamp 5574bb8a-ba10-44a2-ac08-ee45b5a92f41))
(fp_line (start 0 2.725) (end -2.725 2.725) (layer "F.SilkS") (width 0.12) (tstamp b4a1e95d-aca5-464c-9d46-106ac063b2ca))
(fp_line (start 2.725 2.725) (end 2.725 2.465) (layer "F.SilkS") (width 0.12) (tstamp b9ff2bc9-2909-44de-b87f-01ae5ef3e5c6))
(fp_line (start -2.725 -2.725) (end -2.725 -2.465) (layer "F.SilkS") (width 0.12) (tstamp c92f15f2-07fb-4899-9b02-2cd6f5f65c46))
(fp_line (start 0 -2.725) (end -2.725 -2.725) (layer "F.SilkS") (width 0.12) (tstamp deb81508-91e5-4ace-bdb6-0cf5c62d1999))
(fp_line (start 0 2.725) (end 2.725 2.725) (layer "F.SilkS") (width 0.12) (tstamp e1370b42-1833-45c1-a436-f4eef723e541))
(fp_line (start 2.725 -2.725) (end 2.725 -2.465) (layer "F.SilkS") (width 0.12) (tstamp f44144d6-356c-4ad5-a503-90e3da1e3a81))
(fp_line (start 4.65 -2.86) (end -4.65 -2.86) (layer "F.CrtYd") (width 0.05) (tstamp 416894e6-d657-4e27-b89f-052421628511))
(fp_line (start -4.65 2.86) (end 4.65 2.86) (layer "F.CrtYd") (width 0.05) (tstamp 47732ba6-6c67-4e0a-aea7-8a1f0f357932))
(fp_line (start -4.65 -2.86) (end -4.65 2.86) (layer "F.CrtYd") (width 0.05) (tstamp 4bbe694f-2198-4517-8c7a-86ec51ccb66f))
(fp_line (start 4.65 2.86) (end 4.65 -2.86) (layer "F.CrtYd") (width 0.05) (tstamp af9e9958-3384-452b-b5b1-3e7edd8469b0))
(fp_line (start 2.615 -2.615) (end 2.615 2.615) (layer "F.Fab") (width 0.1) (tstamp 0f45d60d-672d-4983-86dc-cbcb696ba297))
(fp_line (start 2.615 2.615) (end -2.615 2.615) (layer "F.Fab") (width 0.1) (tstamp 5519eb74-2465-459b-adbd-6e9671236145))
(fp_line (start -2.615 2.615) (end -2.615 -1.615) (layer "F.Fab") (width 0.1) (tstamp d9d9ff2c-0f12-4fd0-9361-9cbb1d58c699))
(fp_line (start -2.615 -1.615) (end -1.615 -2.615) (layer "F.Fab") (width 0.1) (tstamp dbd01139-12eb-45ed-9739-9be5737b70e8))
(fp_line (start -1.615 -2.615) (end 2.615 -2.615) (layer "F.Fab") (width 0.1) (tstamp f1ba9eb0-3bbe-40e2-bc43-125ee9e3e904))
(pad "1" smd roundrect (at -3.6 -1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "A0") (pintype "input") (tstamp ba7687b1-264e-4ebf-9614-76035d39ab31))
(pad "2" smd roundrect (at -3.6 -0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "A1") (pintype "input") (tstamp c28d4952-492b-4697-bdd8-0dc1b883e0ea))
(pad "3" smd roundrect (at -3.6 0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "A2") (pintype "input") (tstamp 30270178-eae4-4357-938e-cda9ebe68457))
(pad "4" smd roundrect (at -3.6 1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8aeb9397-17d2-4c57-a343-728ef9f0519d))
(pad "5" smd roundrect (at 3.6 1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/SCK") (pinfunction "SDA") (pintype "bidirectional") (tstamp 314f3fe1-28f8-4663-9a28-998310a0ea2c))
(pad "6" smd roundrect (at 3.6 0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/SDA") (pinfunction "SCL") (pintype "input") (tstamp 27a49820-d0b5-49ff-a425-0e45a8837eb0))
(pad "7" smd roundrect (at 3.6 -0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "WP") (pintype "input") (tstamp c2edbe7b-b8ea-486e-8b9f-2f11ba3f2a66))
(pad "8" smd roundrect (at 3.6 -1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 7c06bc62-030b-4122-a460-c192b00cef93))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_5.275x5.275mm_P1.27mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 494e06b1-5de1-4907-a318-e9cc95a3b6ce)
(at 101.37 97.213 90)
(descr "SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package")
(tags "SMD SMT crystal hand-soldering")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/cb1474c8-d052-4e8f-bcd1-c09134fcee72")
(attr smd)
(fp_text reference "Y1" (at -0.142 -2.418 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 50969144-765c-455e-b18c-5394e59c20ee)
)
(fp_text value "32.768 KHz" (at 0 2.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de1b1b77-9ef5-4285-bf4c-a418f83887b5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 550fa77b-9197-4c09-a1ff-6d1752c56e43)
)
(fp_circle (center 0 0) (end 0.333333 0) (layer "F.Adhes") (width 0.133333) (fill none) (tstamp 4b8fcec1-1890-40b1-9ee8-27665ddc36e2))
(fp_circle (center 0 0) (end 0.093333 0) (layer "F.Adhes") (width 0.186667) (fill none) (tstamp 5673b936-5580-4542-ab0a-9be95ee25c30))
(fp_circle (center 0 0) (end 0.213333 0) (layer "F.Adhes") (width 0.133333) (fill none) (tstamp a445db0b-aa22-4141-937d-21791ea7d439))
(fp_circle (center 0 0) (end 0.4 0) (layer "F.Adhes") (width 0.1) (fill none) (tstamp dc1bdf85-413c-4436-bc69-9e9f0d293fb6))
(fp_line (start -4.55 -1.8) (end -4.55 1.8) (layer "F.SilkS") (width 0.12) (tstamp 05f2158b-b4be-41f2-af2f-9f0644997876))
(fp_line (start -4.55 1.8) (end 2.7 1.8) (layer "F.SilkS") (width 0.12) (tstamp 19c065a4-37d4-43e9-989c-ef86fb241629))
(fp_line (start 2.7 -1.8) (end -4.55 -1.8) (layer "F.SilkS") (width 0.12) (tstamp 6dbf6b42-2780-4ce5-bbfb-fba6be1df485))
(fp_line (start 4.6 1.9) (end 4.6 -1.9) (layer "F.CrtYd") (width 0.05) (tstamp 3ec16338-e247-45e2-8544-5c7006ed4378))
(fp_line (start 4.6 -1.9) (end -4.6 -1.9) (layer "F.CrtYd") (width 0.05) (tstamp 57789466-d206-434a-b9ce-dcded94b3979))
(fp_line (start -4.6 -1.9) (end -4.6 1.9) (layer "F.CrtYd") (width 0.05) (tstamp 75b0239f-6006-48a1-9227-f2ae083b2d92))
(fp_line (start -4.6 1.9) (end 4.6 1.9) (layer "F.CrtYd") (width 0.05) (tstamp 81e25a0d-408f-4a61-bb5a-415011e54a2f))
(fp_line (start -2.5 -1.4) (end -2.3 -1.6) (layer "F.Fab") (width 0.1) (tstamp 0ac076c9-efa1-4b22-bb7d-587b84df8c88))
(fp_line (start -2.3 1.6) (end -2.5 1.4) (layer "F.Fab") (width 0.1) (tstamp 357e9003-d80c-4e2b-8bef-07c331fec4ec))
(fp_line (start 2.5 1.4) (end 2.3 1.6) (layer "F.Fab") (width 0.1) (tstamp 6d60a694-84e1-4d01-bc61-e00125e4b8dd))
(fp_line (start 2.3 1.6) (end -2.3 1.6) (layer "F.Fab") (width 0.1) (tstamp 752f97a7-c543-41a1-9f3e-2da240222683))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6) (layer "F.Fab") (width 0.1) (tstamp aa213d61-7c40-4577-825d-10215dba05fc))
(fp_line (start 2.3 -1.6) (end 2.5 -1.4) (layer "F.Fab") (width 0.1) (tstamp be1c56dc-d324-4272-a6c2-27077aefb55b))
(fp_line (start -2.5 0.6) (end -1.5 1.6) (layer "F.Fab") (width 0.1) (tstamp c822d4e1-15a7-454f-9694-d73342d40bca))
(fp_line (start 2.5 -1.4) (end 2.5 1.4) (layer "F.Fab") (width 0.1) (tstamp cf3d2661-e4bf-413e-b000-e00ae40c3041))
(fp_line (start -2.5 1.4) (end -2.5 -1.4) (layer "F.Fab") (width 0.1) (tstamp ebc30030-6b9a-4644-ae4b-a65d0427b0cc))
(pad "1" smd rect (at -2.6 0 90) (size 3.5 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(U2-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 430a6733-8769-4134-bae0-451dd42dc28a))
(pad "2" smd rect (at 2.6 0 90) (size 3.5 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(U2-Pad1)") (pinfunction "2") (pintype "passive") (tstamp bd52166d-d313-40eb-8f8e-679e5687e4ed))
(model "${KIPRJMOD}/Crystal ABM3-16.000MHZ-B2-T.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 83d9ccdf-7d37-436d-a840-7a698735fdf4)
(at 141.784 83.348)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(property "Sheetfile" "connectors.kicad_sch")
(property "Sheetname" "connectors")
(property "USE" "ICSP")
(path "/75b1de50-2792-4363-a8c7-9d65b476f093/12f320a1-0737-4dec-89f0-e430ee2a54fd")
(attr through_hole)
(fp_text reference "J4" (at 1.27 -2.33) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp f389f4de-cbb5-4ee9-a1f7-e299ca6da9cb)
)
(fp_text value "Conn_02x03_Odd_Even" (at 1.27 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d20515b8-78fd-4531-96b6-099410a9faf0)
)
(fp_text user "${REFERENCE}" (at 1.27 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a47d70c9-3ead-4024-8c81-a2abddd4c0af)
)
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 013df670-b3e5-4906-afc1-86156f7b2c71))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2553078d-e1d2-4248-b967-faa3144b2418))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3355b82f-d12b-4858-bf33-b87b3486b404))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 387ee044-9153-4786-83a1-ec11c2f2e61f))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 76469c31-df5a-4abc-915c-b7e81f3b5745))
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 9288e42c-4782-4acb-ad24-f9fe18c252da))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp cbc88419-b3fb-4ab2-bf3e-77b027e1584e))
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp f30190c2-7707-48c5-8939-e8907871e293))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 20ffd50c-4007-4c49-b6ad-741c0b92226b))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 4d8e5b2f-6705-4844-a186-f7483007b610))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 79f1b4ab-9d82-47c9-bfa1-7597882e5d2a))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e40c6c8a-5567-4c9f-a3a8-352b4c5fa27d))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 08db0705-a118-41af-b4bf-9255fb99db19))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 0c512646-95f7-49ca-8e87-d0ca07334a09))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp d24f3597-4db8-42be-a9dd-7d3e1698bbab))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer "F.Fab") (width 0.1) (tstamp e42212a5-5419-4132-8c38-5139b3739f80))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp e937591f-00bf-4df5-86ec-b5555d2cc64b))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "/MOSI") (pinfunction "Pin_1") (pintype "passive") (tstamp 37496e3b-6180-43b3-b344-d0e55e57186a))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 310387d8-b8b5-4487-982c-5629e07ee531))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/SCK") (pinfunction "Pin_3") (pintype "passive") (tstamp dc7140a4-5633-48fc-bc60-97594114fa8b))
(pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "/MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 4cc76e30-8888-404e-8b9b-0e8d1bfeaa20))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/RESET") (pinfunction "Pin_5") (pintype "passive") (tstamp 9158ed9e-2fac-41b2-8d1f-436380249195))
(pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp efad5424-d6e3-4b05-8eed-633681899b42))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_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" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 88a56be6-1344-49f8-8de9-d77e6eb5e6d2)
(at 122.571 78.244)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/448ff7ec-6a16-4e42-9b2d-0967b95502fd")
(attr smd)
(fp_text reference "C3" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp a43055fc-b239-4a60-8062-c1c00e21c24b)
)
(fp_text value "22pF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 502ddd91-e69d-4306-8f09-4ae15279f237)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d83bd8ed-1afb-4eaf-91d4-4e084303ba2d)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 93015b34-5235-424f-b4be-26c1a37b95ff))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b608c41e-626f-4075-b1fa-a40f6132c228))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 194a6401-2f3b-4426-b35d-f49a3f03a2bd))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp aeda2431-3015-4f12-bd8d-d728259dc73d))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c2768a55-46cc-4b9c-aa95-aba2679c4d2e))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f0c76910-a391-4de7-9a0c-a563b21a3118))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 8be67e86-6e0e-4af0-acd8-cb18919f69fe))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 996f98a7-a0e4-44d0-8b1c-d5f3080cee24))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp bbb29e81-fbc9-4370-8caf-fac34e497eca))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e641c835-9433-4e08-a66d-51ab6a7ae33d))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 89e78399-9c34-410e-9033-1bd183464b3e))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(C3-Pad2)") (pintype "passive") (tstamp 262e77f9-5b5e-411d-8c96-798e542604b1))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 8c9a36ab-d08a-4e02-b358-e60f56356438)
(at 143.612 101.14 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "connectors.kicad_sch")
(property "Sheetname" "connectors")
(property "use" "I2C")
(path "/75b1de50-2792-4363-a8c7-9d65b476f093/51787a66-d199-479e-9a09-8dde7ce04ffe")
(attr through_hole)
(fp_text reference "J1" (at 0.284 -2.075) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp a935c7b2-4934-4dab-9dc9-13711427d94d)
)
(fp_text value "Conn_01x04_Male" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 060fb390-13ea-4474-b654-470f63abb6dc)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9021e055-35e3-4279-9fb9-54daea9a0d25)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 005f8b6d-232f-466c-a26a-a6e9275366a3))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 091808c4-ae4d-4fc4-b96e-e9cb0f82295d))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 16242235-32d2-42d0-9736-c4ad9858a210))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 23cfaad4-5b26-41e5-a220-0e0b9aaf4280))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3c7893f1-2791-433c-9a98-c874075d7e83))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 69836eab-6b17-4647-8589-44092de1d9db))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 36564060-c204-4bd7-a7f8-8240c1537b21))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 63df63fc-d2d8-4dbb-ab40-2a6d8132dedb))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp a54ec8d2-bad4-47fb-b69f-e5f7c85f4b46))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f9be8016-c12b-4f60-b61c-3ac2075641e4))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 72e1a1f2-02a7-499c-b34a-2c43ea5c7df5))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 81d5da73-29c7-4351-9810-e6088c219665))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9b4fc633-ed0d-4e7c-a392-0d541e270b19))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp c78c350b-c435-4db9-a7c2-259759790359))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp da5eb5a5-d3bc-4885-9637-3319a9ee7902))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f5fa57e0-2e62-48ff-aa63-d349e876a69b))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp d764343a-7614-4291-9257-96f6244a56b5))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp 311f9ecb-12dc-4106-bf23-3e2702feb9ef))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/SCK") (pinfunction "Pin_4") (pintype "passive") (tstamp ec446330-8280-4c38-a56a-db5e758b224c))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 983ceb89-bd8b-4e04-8780-16d3c5c92fa3)
(at 136.425 84.089)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/b68fb755-a6f4-4cdc-81fa-00c58dff8c81")
(attr smd)
(fp_text reference "R6" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 3a032dfe-a63e-4f48-9ea5-3173c98393e1)
)
(fp_text value "10K" (at -4.048 1.213) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15555a5e-bdd2-43f0-923f-5bea158423ba)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c42a5ce9-2720-48a0-9cf9-5e13d85089d5)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 079ae992-3f0a-46b7-aed1-96f9db92603f))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c8389f97-7bd0-4d9b-87c7-8cf801aa7aea))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8c38538c-281e-426c-8599-48ae0d602c03))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ab9f7a8b-a4f6-45e2-bcb6-86c2bdd22eea))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp af061942-c57c-4dfb-b509-210a0a906b27))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ccdd4099-26e2-4e75-8050-a9127fcead8c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a80428e0-c85b-4d58-9837-486148d394de))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp ab3b44a6-fe42-4cd3-ad7b-50a4119c9f61))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e4ce8f68-98ab-425d-9b19-0e7cd51470ff))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e909e9b6-bdc6-4a61-a5c0-6736ce83ae84))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "VCC") (pintype "passive") (tstamp cd62525c-1b9d-40e3-918d-998a59cca4ed))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 20 "/RESET") (pintype "passive") (tstamp a7b5ffc0-0b4a-43e9-a22b-bdd9c79b4072))
(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 "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 99a6678f-324e-4457-9992-8353481d55e0)
(at 117.94875 78.244)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/303645b5-0595-4359-bc0c-fa2e355b9b37")
(attr smd)
(fp_text reference "C1" (at -0.10175 -1.618) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp d2c808fd-7cdf-4a1a-b16c-0a616cec2910)
)
(fp_text value "0.1uF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65b90652-8b1f-477c-a762-3016bd737ec7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 70062f3d-0495-4998-9aed-fa3d40384939)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp a532c7e5-a5ed-4879-aec9-cf5f398d56c0))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp b20c2482-d941-43fe-9985-7541a7e52c50))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 200ee62a-0284-47bf-981c-84956c1e8cc3))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4f48d453-5697-4a2a-a775-0820f1b7c5e4))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7d479e16-1720-4775-b046-db029d90c1c0))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp dd83ee0c-c44d-4b8e-8bdd-cc63dbabc6c9))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 093442f9-9931-4b2a-ab3b-ca959625f646))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5907d37c-8b28-4eeb-811a-da2e3d7487b7))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5c7d0070-aeac-4042-80f1-e67c8f6b8d6c))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp ea428c77-6f09-4f44-801a-a9e936c11199))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pintype "passive") (tstamp e7f28c9e-1cc7-4ca0-bc8b-6c6dff715242))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 946cc7d8-2e99-4b1c-a317-2fa04d17267c))
(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" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9fec3716-e99b-4301-8c99-3608bcc9826a)
(at 110.6075 101.02)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/b31accb3-3c0c-4ad4-81e2-7ece6550ee8b")
(attr smd)
(fp_text reference "R2" (at 0.0625 1.843) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 619a768f-3ed5-4273-aedf-d922551e7976)
)
(fp_text value "4.7k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1113c291-c180-4691-8aaf-6687a15bc726)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ae479ea6-09c5-4778-81e1-9bfbfb78981d)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 627ae01b-22b9-4d01-a050-ae20e9c5fb41))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c828f34a-f977-467e-b5e5-a755b7b55aec))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 18d66822-ae9e-4379-a63f-9ddb6a89507a))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7091deef-21bc-427c-9114-71eddc7db9f7))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9c8e01a5-b1dd-4ef7-a7d2-386efad49fd8))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f39292d7-8417-44ed-b4ce-5a707b827348))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 97d37e59-a543-4ad8-a11a-66c441a03eae))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c15191b1-33d9-499f-92a8-0c9ed625c5df))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e5a055f7-b7f2-4022-b164-b6aac8cb6431))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e6cd3e72-714e-4756-973e-9a36daf7fc48))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "VCC") (pintype "passive") (tstamp e8dc8cdb-b604-49dc-8e75-31e6c449e459))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 6 "/SCK") (pintype "passive") (tstamp f5b6a035-0e86-4214-9ef9-221ab533adab))
(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.2mm_M2_DIN965_Pad_TopBottom" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp bcc37387-bdc4-4289-9c13-1313e53b90e8)
(at 100.373 78.786)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "MCU Datalogger.kicad_sch")
(property "Sheetname" "")
(path "/22a784e2-ded3-4839-b6e8-30fc6fba3169")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 2.603 -2.061) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp ea81275d-3ed3-4b31-b5bc-f3c8130f2fef)
)
(fp_text value "MountingHole" (at 1.909 2.888) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49c59054-5295-447f-9ecf-1aa5c5d6d35e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80d1acda-60d4-4fba-809f-f041ede4fc7a)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4d5f8bbb-a23b-49e9-892a-38767fabf386))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 687dd02d-ef19-44b9-947a-fa831ffdbf08))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "F.Cu" "F.Mask") (tstamp 2995acc0-a891-434b-86c8-679b869d950f))
(pad "1" thru_hole circle (at 0 0) (size 2.6 2.6) (drill 2.2) (layers *.Cu *.Mask) (tstamp af2702c3-7aaa-49f6-8e29-71a0450c7aa7))
(pad "1" connect circle (at 0 0) (size 3.8 3.8) (layers "B.Cu" "B.Mask") (tstamp dad6bfe2-6738-473c-8eb4-89198877f38f))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp c81f891f-8a52-4b0c-9519-aa8c4f3f25fc)
(at 131.285 105.985 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "connectors.kicad_sch")
(property "Sheetname" "connectors")
(property "use" "Serial UART")
(path "/75b1de50-2792-4363-a8c7-9d65b476f093/6beefa62-d0ed-4a63-b2cf-92f17f65d762")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a051df4-f8fc-4e0b-8c24-053e6cc5f07b)
)
(fp_text value "Conn_01x04_Male" (at -1.363 12.319 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28461069-ce65-439a-914e-2ee0209e7f73)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 839ab402-cf4a-4855-93bb-69bab31ae075)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2b9d6820-ee70-4821-a1ec-1c2c11c66992))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 31b5c8de-742b-48d3-94ec-d4161c91f4d4))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 3bd43588-1de2-4244-9c1b-8e39f97c6ba6))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp af599d23-858e-4854-9e52-97283785f022))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp bca10527-9659-43a6-ac60-f15f5cf6d0d2))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp cc93be1c-2a0e-419c-9fdb-6e79a929b022))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 639af0d7-5bfc-491c-ac68-61bd3338f71b))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 8a1d4748-609c-4769-bb12-714db5f25f63))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp a79302b2-d5a4-4f40-b27c-b9a5d0ae30df))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c74e72dd-929f-4fb4-b75a-4174a451f06d))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 2beaeb1f-be2d-4eae-86db-4de23608a7b3))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8160889e-4bca-49c7-902a-49661889bb80))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp bc9fd9f5-2dae-4ebd-9cf2-4d6c4f45dfab))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp cb63a2f9-a85f-42fb-ac6e-13c25beb2cb5))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp ffc88cb8-949d-4a08-a5bf-cc640d34783a))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 900a2e6b-cd4f-48d1-87a7-81dc8f21cf31))