-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmogly1.kicad_pcb
More file actions
10178 lines (10161 loc) · 388 KB
/
Copy pathSmogly1.kicad_pcb
File metadata and controls
10178 lines (10161 loc) · 388 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(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)
(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") (color "Green") (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") (color "Green") (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)
(grid_origin 171.57 126.65)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "Net-(J11-Pad2)")
(net 2 "Net-(J11-Pad3)")
(net 3 "+5V")
(net 4 "GND")
(net 5 "+3V3")
(net 6 "Net-(J11-Pad8)")
(net 7 "Net-(J11-Pad9)")
(net 8 "Net-(J11-Pad10)")
(net 9 "Net-(J11-Pad11)")
(net 10 "Net-(J11-Pad5)")
(net 11 "Net-(J11-Pad4)")
(net 12 "Net-(J11-Pad6)")
(net 13 "Net-(J11-Pad7)")
(net 14 "Net-(J11-Pad1)")
(net 15 "Net-(J10-Pad13)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 545a31c6-4b28-4a86-b1a0-a1361ff824eb)
(at 197 72.81 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" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c394f84")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15a8a234-9279-4f71-bf0b-229e712dcb5d)
)
(fp_text value "PMSx003" (at 0 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e797bcc4-31d8-402b-b16d-bb197a20dd60)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c07b2b0-9cbc-4716-aa3d-db656dedf53e)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 687f7fe4-d6d1-4c3a-ba6e-629af7bfc865))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e153d1c-018c-411c-ba75-3ec0394b6bfc))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6bfc0cf-9f5a-42ab-b1fa-ec27d916550b))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a2829fc-cc68-4e05-8183-49824e987bd3))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19a0b807-6281-4fac-89f5-5b45a1380939))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ada4e862-c56e-45c1-8576-5aaa80578b0d))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5d41f34-e4ab-4b0e-b487-364a37799228))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f48208f-1bff-4652-9f9a-203aa973b59e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ad4175b-12cb-42d7-88a8-a01185c9ed77))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fed27786-64fb-43fd-8076-50ba28e9673e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 746df964-65da-40f3-ac12-fd166105fdfd))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fefb8b61-c62a-4653-a834-3106861eb6bd))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f398ced-842b-4ceb-96a8-2079b296fae2))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20a5347e-d190-406d-95d0-fbd63b7b4b08))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b5b8e15-c511-4e67-8fc6-6b49216a3021))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 33dc5ffb-0d1b-47df-b149-2eacb06742aa))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp d76e586d-887f-498f-bd31-798c38851f2d))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "Net-(J11-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 40ad1370-6353-44af-b7a7-3c752756c7d4))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J11-Pad2)") (pinfunction "Pin_4") (pintype "passive") (tstamp 89c9c080-8fc3-4a3f-9272-f5f480c1f457))
(model "${KISYS3DMOD}/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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 627020ff-8cdf-4e63-8248-14076a131331)
(at 227.05 133.125 180)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/2aa0f8d3-f839-490b-9cac-1352fc599c36")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93ba6c75-2d62-4198-a1e4-b25c43219241)
)
(fp_text value "VCC IN" (at 0 4.87 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a19c013-3892-4df0-bae9-d38775e57836)
)
(fp_text user "${REFERENCE}" (at 0 1.27 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0518ebb-6b9c-471e-9582-75dae4ac1d9b)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d973412-492e-4293-b271-991853171999))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40f01f86-939a-49ad-9279-0ada5f0f76eb))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd1ff5c7-0c82-4a48-9962-60d675438e97))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbb6d54a-76a3-462c-a6a4-69c1f719625a))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d73993ca-44c2-4f43-a67c-b2d11394dd41))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2487ef1-3d59-4f3a-b80b-392c95d52339))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a988103c-ccdc-40f6-b4a0-f105d8c99c4f))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fef032e2-f6d3-418b-a801-2169c536f4ca))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40cf9cca-d9e5-4d42-ace5-c8cd56d76551))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c32c5675-3045-48b9-b452-7cb20d098896))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d4d1df8-05a6-4878-afdb-f337e3993b63))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ab0ad68-1d8a-4704-a01a-2fe6e6de30d6))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9f0e7b0-5181-44b2-8f52-b8449aabd9ea))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4756305-28f0-4259-9c6f-9289bac49cf7))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcf78c8b-d552-436a-a685-5dd717530be8))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 7a33b01b-ac94-46f1-bcaa-343eaeadff6a))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp ec620622-0c21-4302-98d5-d355671381f7))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.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")
(tstamp 7d2daf21-9c63-4c87-a205-2560e78d6285)
(at 220.2 88.45)
(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" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/25defb84-6807-40a0-9f95-b1953539084e")
(attr through_hole)
(fp_text reference "J8" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 573bb76a-0e6e-499a-9435-5fe964197fdf)
)
(fp_text value "D5/6/7/8" (at -2.95 3.35 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7dafa958-d337-49bd-b783-d93faf9affa5)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f8378c9-5650-4725-93a4-23f0036afecd)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76d6eb48-665d-4954-8c2a-656c27a6c6b4))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc3471df-4631-4fdd-99f9-d1e5855e66f5))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad6c7f9c-35ee-46fa-bf43-52ba6917a6e7))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34386983-3c3c-4b89-8374-0e5626f63a21))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c02f9259-4b71-4e8e-b89d-5098b4f2374c))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7faa292a-abba-4f9b-b2a5-d8461f158325))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 590b3bfc-6f8e-43cf-b6f4-8cc49934e608))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fe77dd8-e2a0-44cc-a5dc-15aac7185d79))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06993983-9e93-4b6b-8092-990a89ac7962))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3bd58a4e-c475-432c-8883-bd6e6aafb7ac))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c9782aa-d48e-44eb-99a7-60a549a0a34d))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25fd0eb8-a9a9-49c3-bf00-83c5e9c92792))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab514a15-c2ad-46dc-93f1-e6b4422cf387))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44658676-434c-461b-85d2-5e5634689989))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4102bbe-79a4-4350-af34-2fab1be24d4e))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "Net-(J11-Pad11)") (pinfunction "Pin_1") (pintype "passive") (tstamp 504885a2-9212-4ad8-8fee-99d26c970e1f))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "Net-(J11-Pad10)") (pinfunction "Pin_2") (pintype "passive") (tstamp ac866542-a828-4e9a-a3ff-a8fd2a66a676))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "Net-(J11-Pad9)") (pinfunction "Pin_3") (pintype "passive") (tstamp a98e21ce-8edd-4578-b226-2bc562a47d9b))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "Net-(J11-Pad8)") (pinfunction "Pin_4") (pintype "passive") (tstamp 60d68ca9-7cef-41fb-890c-1481462e5d25))
(model "${KISYS3DMOD}/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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 90427d19-a018-4e4b-84c6-559da64a9073)
(at 220.2 80.4)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/b88be3af-b4e4-4732-9505-0bb9cb6a8464")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b90a0aab-314b-4025-899c-10963fa0c9da)
)
(fp_text value "DeepSleep" (at -6 1.23) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5886b94-ff37-4fb4-ba7c-957618248a53)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e06d0e44-7f72-40cf-b15e-2cd04f5e84b6)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c38637e-1c99-414f-a287-0da16ec2ba7d))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7d0edd2-514e-444c-ba15-ffc5d17a0f1e))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a597bdee-07f3-4b0e-90c8-80f8be6ccce3))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b92186c-b64c-46d8-9af7-23a908393a49))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92eda0d6-96c1-4844-b43d-fa43c575b1fb))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bc111a0-b4ec-4c10-a116-f11a44eccd2d))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 530ddf0b-b0e4-4ac4-b0b8-af0c67526765))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29495878-75fe-420c-80cf-397ee44e3940))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9e18aed-3e6b-41c1-a549-0fb54c00cd26))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 970488a8-10db-4633-be7c-b347dfeffe0b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d2c0874-7351-487f-8056-b1476bfcfd70))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a68e8cf1-f601-46c2-b5f7-0cf5cb3f8772))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34032947-1cda-4e2f-8d03-e8acfb2720d7))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ea5b913-dd0d-47bd-9270-0f8583f0d73d))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4c441a2-378c-404a-9a29-487896a8f969))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "Net-(J10-Pad13)") (pinfunction "Pin_1") (pintype "passive") (tstamp 001b0a81-7273-489c-9ecb-8587ee3ae854))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "Net-(J11-Pad1)") (pinfunction "Pin_2") (pintype "passive") (tstamp a45d451b-29b3-4b8c-8a44-e17804d2ef2e))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_1.27mm:PinSocket_2x05_P1.27mm_Vertical" (layer "F.Cu")
(tstamp 97513ac2-2478-4400-be7a-bd337e697759)
(at 169.98 131.08 180)
(descr "Through hole straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 1.27mm double row")
(property "Sheetfile" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/66fa64c9-3338-4d0c-b796-5a118c8df9bb")
(attr through_hole)
(fp_text reference "J9" (at -0.635 -2.135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 854966b0-1d76-4282-a47a-57ae93e84fd0)
)
(fp_text value "PMS7003_Conn" (at -4.17 3.12 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 059386b0-9abe-4c67-8204-21ef654d8743)
)
(fp_text user "${REFERENCE}" (at -0.635 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a7094ad-cc69-4be4-95b4-4fe4f1db19ef)
)
(fp_line (start -2.22 -0.695) (end -2.22 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85356030-ba18-4084-9894-a0a954bb238a))
(fp_line (start -2.22 -0.695) (end -1.57753 -0.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7019f93f-9de5-45aa-9281-7690f771b1c8))
(fp_line (start -2.22 5.775) (end -1.57753 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1ee3d26-f019-4135-bfed-3696994a93c2))
(fp_line (start -0.96247 -0.695) (end -0.76 -0.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5a5e652-d142-4335-977c-77e3e9945aa0))
(fp_line (start -0.96247 5.775) (end -0.30753 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1610c25-5335-4a69-a5ea-2c4501549184))
(fp_line (start 0 -0.76) (end 0.95 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3c2549c-f870-4ac4-899a-24cd2847c7f6))
(fp_line (start 0.30753 5.775) (end 0.95 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e78739b6-042b-4d63-a084-70f1f629bd69))
(fp_line (start 0.76 0.635) (end 0.95 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 770cc1fc-4e51-4e09-a236-b7dd19a34bca))
(fp_line (start 0.95 -0.76) (end 0.95 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75e79f63-d2f8-4cb9-95f5-c177f100d42c))
(fp_line (start 0.95 0.635) (end 0.95 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d157da4e-c228-49f9-95ca-e77373267f62))
(fp_line (start -2.67 -1.15) (end 1.38 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a56dbd13-8b47-4237-b361-1739584ff379))
(fp_line (start -2.67 6.2) (end -2.67 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a07fb44-46d6-44dc-a58c-88f072021099))
(fp_line (start 1.38 -1.15) (end 1.38 6.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01d376e2-e29c-46d4-a582-22d9fae0252a))
(fp_line (start 1.38 6.2) (end -2.67 6.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2c7f1e7-527c-4444-bc45-87bc3a0b2867))
(fp_line (start -2.16 -0.635) (end 0.1275 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4025b3c7-4d74-4ad6-a961-242321e9586d))
(fp_line (start -2.16 5.715) (end -2.16 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e4247f7-529f-4dc2-9444-779c8365ffef))
(fp_line (start 0.1275 -0.635) (end 0.89 0.1275)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 913f31c1-88c0-407d-9f07-61120878619f))
(fp_line (start 0.89 0.1275) (end 0.89 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac85013d-5415-44f5-833e-84caab6eef69))
(fp_line (start 0.89 5.715) (end -2.16 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b64677e-5499-4c07-bd11-12f87e30f9cf))
(pad "1" thru_hole rect (at 0 0 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp bfc4b45c-40c1-4ffc-90bf-10558ed36050))
(pad "2" thru_hole oval (at -1.27 0 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp 879f982a-f01a-4c51-af22-386113c0a6db))
(pad "3" thru_hole oval (at 0 1.27 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 263b7591-a214-4fe6-a10c-e83507d31760))
(pad "4" thru_hole oval (at -1.27 1.27 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 9bf0db96-a509-4018-8045-dbcc526055fc))
(pad "5" thru_hole oval (at 0 2.54 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_5") (pintype "passive") (tstamp 29d52b75-b6d6-4d1f-b6ca-c54746dd39b9))
(pad "6" thru_hole oval (at -1.27 2.54 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_6") (pintype "passive") (tstamp ff2e1f3b-b71d-46dc-b85b-08c4c0f3a235))
(pad "7" thru_hole oval (at 0 3.81 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "Net-(J11-Pad3)") (pinfunction "Pin_7") (pintype "passive") (tstamp aed1fee5-6c79-44ba-8801-c90ccf449430))
(pad "8" thru_hole oval (at -1.27 3.81 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_8") (pintype "passive") (tstamp 2debfa13-4498-4589-a00b-7726c4f82258))
(pad "9" thru_hole oval (at 0 5.08 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J11-Pad2)") (pinfunction "Pin_9") (pintype "passive") (tstamp f1784637-cefd-4957-bfa0-b9b176d2e2a1))
(pad "10" thru_hole oval (at -1.27 5.08 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_10") (pintype "passive") (tstamp 03dee9f2-3b4e-448a-8164-7f6751c0b284))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_2x05_P1.27mm_Vertical.wrl" hide
(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")
(tstamp a804906c-2bd5-4547-8c8f-c2f76af6679b)
(at 225.31 80)
(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" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/6f75d4ab-abb1-468d-a83c-331e66e39c82")
(attr through_hole)
(fp_text reference "J10" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d71d089-dab5-481a-a5ba-cc7f81ec21e7)
)
(fp_text value "NodeMCU A0-VIN" (at 3.75 30.67 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 467c2b5f-8049-4cad-983a-c42a5fa6c04c)
)
(fp_text user "${REFERENCE}" (at 0 17.78 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 435fadd2-b23e-4154-aedb-87b71578cb98)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed3ae7d5-9043-45cb-a0d2-b52ee994881b))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6c8a930-f5d0-42e5-8926-2362ad748462))
(fp_line (start -1.33 1.27) (end -1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8c1833b-e33d-4a0e-937d-1d6fcebfed2a))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ac268c7-07da-41c9-9884-19d4b0fe61d7))
(fp_line (start -1.33 36.89) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 878f24a4-7185-43bc-8a35-c095840bd2c3))
(fp_line (start 1.33 1.27) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33db610b-0b97-4aa7-a321-9f62a46faf30))
(fp_line (start -1.8 -1.8) (end -1.8 37.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f8e3f33-bebb-47bd-ab44-4a84c7676a2c))
(fp_line (start -1.8 37.35) (end 1.8 37.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66ae610c-f621-4113-881c-541c64c3ade4))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 482fdb69-447c-401e-9748-4423db3857d9))
(fp_line (start 1.8 37.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 600c58c8-1539-4bf1-ab2f-a47cd047f926))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02257724-abfd-4844-9898-e63c7b049c34))
(fp_line (start -1.27 36.83) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 784be763-cf17-40cb-bedd-2a9a77f59786))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 772d3684-ba1f-4f07-82cf-c120374e4e24))
(fp_line (start 1.27 -1.27) (end 1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ece27e9c-a863-47d0-b471-ed268c51af96))
(fp_line (start 1.27 36.83) (end -1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e8033c0-a3bd-4afa-9934-8b671c3ce471))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_1") (tstamp 0d258273-1160-48d1-ae70-a3bea6fd1933))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_2") (tstamp d6b542c4-2b5b-4e8f-8d1b-078337a2ccd3))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_3") (tstamp f8505e49-1d3b-4668-926a-6bf250d3c6ed))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_4") (tstamp 72e7504a-c088-45f5-b0d1-7fb5f52700ff))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_5") (tstamp 55f35816-5065-4582-a2b0-9bb3d1349eed))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_6") (tstamp 8258016a-6067-4d9f-9667-b8ee0bcd4f6c))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_7") (tstamp a0ea20ce-3fc0-48db-a139-913eba95b6ed))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_8") (tstamp c814c27b-daa3-4bb3-8971-c2bdc54f5d35))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_9") (tstamp b1fb9129-e69b-4d22-b5b0-82527610d114))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_10") (tstamp 4f93447f-5651-41da-a30a-7f185a608013))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "+3V3") (pinfunction "Pin_11") (tstamp 2ae75034-96cd-41ee-87d1-7545e2038396))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_12") (tstamp e5d126ab-c9d2-4eed-9d7c-120f677aa1a4))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "Net-(J10-Pad13)") (pinfunction "Pin_13") (tstamp 0b8f28de-7b09-456c-849b-b5fd15a632b5))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_14") (tstamp 0b391596-93a9-4b2f-b597-28b8715e9661))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_15") (tstamp 99d9aec1-3d67-4d07-9837-7ad4d160ef58))
(model "${KISYS3DMOD}/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 "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp d7c632e3-f40f-4ab9-a273-8b7f5f933eea)
(at 219.1 117.8 180)
(descr "Through hole straight pin header, 2x04, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x04 2.54mm double row")
(property "Sheetfile" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/59df1d03-24a2-4276-89d5-98a97b7872b5")
(attr through_hole)
(fp_text reference "J5" (at 0.8 -3.45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67ce4112-b4d2-4e2f-be3a-12d4ff29dc41)
)
(fp_text value "5/3.3/GND" (at 0.35 10.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9d9a1b2-d751-4672-940b-c9882f136779)
)
(fp_text user "${REFERENCE}" (at 1.27 3.81 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp def74559-df63-4e65-99ef-6803e5830280)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24941ea5-0492-4ab4-8c71-fecbd271bacc))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 958a3929-fccb-4207-be45-77f082ecfe1a))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c505b351-4183-4473-bd64-c09a54f208a0))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a5b6c3e-b144-4096-8b94-f4f07b66dcb3))
(fp_line (start -1.33 8.95) (end 3.87 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34050638-69a0-4440-a987-9a12c522e660))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eaabb76d-3793-4f55-8d0e-c489208728d8))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01eea883-dc63-4f46-8a64-c2bbf8a35e51))
(fp_line (start 3.87 -1.33) (end 3.87 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d0d3af8-9464-4f04-9b01-3f5dce5f4758))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9d7a98c-1e56-44c1-a258-517c04060b3d))
(fp_line (start -1.8 9.4) (end 4.35 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb98d5d3-0f6f-468c-be02-bb44bedceea0))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eec6e894-8255-4e5e-a0f9-13a61a902a61))
(fp_line (start 4.35 9.4) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e95c0e6d-eb1d-462e-9ca9-295589502703))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a1e8225-91de-4ac6-9f4b-bf37f9332cca))
(fp_line (start -1.27 8.89) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb8c46b9-2bcc-4713-86d3-a3e8673d1d88))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79b54c86-acb6-4793-9243-1f8bd1b3f8ea))
(fp_line (start 3.81 -1.27) (end 3.81 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c17d0e04-4b28-406a-8d0c-8081202f1aea))
(fp_line (start 3.81 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d325d4b8-7949-4622-af82-93c17a8fa0f5))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp b220808c-6aed-460e-a738-4c33c2f48cf9))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "+3V3") (pinfunction "Pin_2") (pintype "passive") (tstamp fff5b700-508e-4ecf-b49a-c07b87bfa9cc))
(pad "3" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp 4629df25-d3b3-4840-b234-1d8c6ae329c9))
(pad "4" thru_hole oval (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 56c98229-4467-436b-96e6-bc164427081c))
(pad "5" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 46e7d297-8ed6-4e4c-a0f1-f9ac6d0a07a4))
(pad "6" thru_hole oval (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 01b26968-55ae-4ac4-bcca-7c5ce3609773))
(pad "7" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 84e927c5-8bc9-4fa6-a294-f45f80bbef6a))
(pad "8" thru_hole oval (at 2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 15ca0d77-a1f4-458b-8285-ce29c33b5dc9))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x04_P2.54mm_Vertical.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")
(tstamp d8b18aae-3bea-4243-a4f6-2b64d9a80fcb)
(at 253.25 80)
(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" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/4fcf9123-c5a2-4e70-8d97-1db38aad113b")
(attr through_hole)
(fp_text reference "J11" (at 22.7 1.77 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eae61ddd-60d5-4955-b930-fcfcb0d17613)
)
(fp_text value "NodeMCU D0-3.3V" (at -4.84 29.57 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f7bb99a-23cc-4805-bfab-dc0e59fceccd)
)
(fp_text user "${REFERENCE}" (at 0 17.78 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63fadd6a-9496-4f23-a9e6-da7f02adc937)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63ecdc02-99f2-43ab-855b-5fdce6cda3b5))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd32ff73-bc7f-4448-b79d-3ab6176d9557))
(fp_line (start -1.33 1.27) (end -1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea6e9bf1-bbde-43ae-aec6-fbf3f6987089))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff3769e2-7dac-48da-948e-b7ac946a5c11))
(fp_line (start -1.33 36.89) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f41fd5e-5f3e-4166-911c-e7cf5763a1a6))
(fp_line (start 1.33 1.27) (end 1.33 36.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ed70a57-16f6-4a75-8105-b4297c766278))
(fp_line (start -1.8 -1.8) (end -1.8 37.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9922632-e58e-46ec-842c-69d238ebfcfd))
(fp_line (start -1.8 37.35) (end 1.8 37.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02ced7f3-ad82-4dc5-a130-eba5c4d27964))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bbbf9d19-fb69-4d7b-8629-53115d6e103a))
(fp_line (start 1.8 37.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca124a34-b8cd-41cf-bff7-47aeb6d54777))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 101ca445-328e-4a46-87ef-ec92007cb4c6))
(fp_line (start -1.27 36.83) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6576e2a-30f9-44a0-94fe-3631cf29cf6e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce5380e0-ccb7-4b74-bf91-69b723c73437))
(fp_line (start 1.27 -1.27) (end 1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56f8e167-ba84-4ec5-bc47-1a11ea905a4c))
(fp_line (start 1.27 36.83) (end -1.27 36.83)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 493990f9-7fa8-4589-a4e2-7899ba6f9df3))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "Net-(J11-Pad1)") (pinfunction "Pin_1") (tstamp 2dfad951-f2fe-4de4-a042-808600a35c47))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J11-Pad2)") (pinfunction "Pin_2") (tstamp 07720a39-58fb-488e-b726-31400359d03d))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "Net-(J11-Pad3)") (pinfunction "Pin_3") (tstamp 8c488a63-1281-46dd-ab59-c5af3332fe65))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J11-Pad4)") (pinfunction "Pin_4") (tstamp 475b8a63-ac28-4981-98ed-af7b9700997a))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "Net-(J11-Pad5)") (pinfunction "Pin_5") (tstamp 0de5e661-82a5-4994-aa30-34dcfcac18b9))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "Net-(J11-Pad6)") (pinfunction "Pin_6") (tstamp d1ee2c63-ba35-4cff-8428-5deea1514325))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J11-Pad7)") (pinfunction "Pin_7") (tstamp 7c175444-108a-4d39-91c9-76e57a6acc47))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "Net-(J11-Pad8)") (pinfunction "Pin_8") (tstamp c83dd3c8-6d9f-46d7-847f-e540318defd6))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "Net-(J11-Pad9)") (pinfunction "Pin_9") (tstamp 86b515be-0b92-4c83-b692-77eeabf56d24))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "Net-(J11-Pad10)") (pinfunction "Pin_10") (tstamp 2b12ad11-f726-41ff-b29a-9ee9f2fec3c5))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "Net-(J11-Pad11)") (pinfunction "Pin_11") (tstamp 24d32149-17b0-4706-8590-ad8809092c2e))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_12") (tstamp 8c42d3bd-57a0-4aaf-b179-8f135b05acf4))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_13") (tstamp b87b55b4-0bd0-47dc-80f8-d853d1bc6185))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_14") (tstamp f4c63674-36e2-4fde-a704-cb2c7a540854))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_15") (tstamp d051659b-a2f3-4277-977f-75cc6efe90be))
(model "${KISYS3DMOD}/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 "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp de65d5bb-7114-4273-9104-fd6e53617e09)
(at 243.725 122.8 90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/d0205ac8-de99-446d-aba6-5f519ebcbc3b")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15dc07ce-7116-494e-b52a-9ba9d369ad8a)
)
(fp_text value "microUSB" (at 2.7 5.2 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68d5ab31-9c2e-4e7b-8ee0-0efa282b4054)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8715f21-9a6a-45ea-b5dc-980547032d44)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dacb5670-43f8-4553-8869-5149dd8a7046))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ae211aa-4423-4032-a2b7-025b3ebc2330))
(fp_line (start -1.33 1.27) (end -1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cdda899-192d-45ee-9b08-79043e70b6a8))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4976fd27-1bcd-4814-9abc-9aa00e2c5bb5))
(fp_line (start -1.33 11.49) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1077416-e32f-4ee9-a176-8de8bc35a12d))
(fp_line (start 1.33 1.27) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 205d54e0-b7dc-4451-bff6-708f72343771))
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 955a35c0-6b07-4f36-9e22-7aa006ecc249))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7ed4ed0-d58e-4050-9d9a-068514b0b468))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 021099f7-0919-431d-acdc-1210433caca6))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bba0609-9482-41c7-903d-8ee0ab6a6c28))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 402d2dfd-2b93-435e-b326-f9ac3c14b19a))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffca1669-0a1b-443a-9397-199a01e3fec3))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f174e206-482b-4ab2-8c02-91a0f51095fb))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6754d16c-6d0a-4159-a042-9f8580edb803))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 673b11b6-50c5-4af4-ad52-02e07b209be5))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp a0786a11-24f7-413e-860a-5e4ac591c930))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_2") (pintype "passive") (tstamp 4ec64e60-4709-403f-b147-cf97570b458b))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_3") (pintype "passive") (tstamp 80a91a35-3c6a-4b4b-a4c4-890daa442c44))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(pinfunction "Pin_4") (pintype "passive") (tstamp 91017a35-b743-49f6-bfb5-21442fd47aae))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp a227d642-4699-454c-ae12-ee2a0771abfb))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp e436032d-e187-4cec-9bed-bd46ff9d79d8)
(at 185 77.7)
(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" "Smogly1.kicad_sch")
(property "Sheetname" "")
(path "/98c06545-4708-4076-be2a-27d222b99052")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cb237d1-32bd-46cd-a76a-8f0ea7918a00)
)
(fp_text value "BME280" (at -0.65 10.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c88ed1a4-0e74-4a9b-858c-795c92da3e1b)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ddeb30e-2471-4e28-9ee5-53e0d69f7364)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac87184c-2986-4b39-8d0b-69cc8271e2fb))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 882ed134-10eb-4227-929e-6688ebdc9826))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5144fee3-0c67-43cc-9f79-c7d8e37d41c1))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b954cdcc-ba05-416b-ac28-bb6e80bfb073))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f330800-1054-48ad-8486-a29b3d321fbf))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a7620f1-55d3-4ec7-976a-7a6634470564))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b383e92-6f36-4576-bee5-f5fce7174441))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3478cfae-d2cf-475d-a5e7-0be9aa77f231))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8e80b5d-b080-4602-85e5-23c7d5b7353e))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4c04443-495c-4cd5-91b2-410abc957668))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d759ee0-6218-4895-b758-6ba4e480faf5))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bf3aa71-08a6-4d78-9738-6b86eb5affb8))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7eae2e3e-3fdf-4723-883a-2fe6b507d180))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07bfbfb1-fcfb-4dc7-88fc-33870c9bf7fb))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a062c576-0618-49cb-a57a-ae698db1faf4))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J11-Pad4)") (pinfunction "Pin_1") (pintype "passive") (tstamp eea8f76d-f6a6-401f-9b92-57400c44e373))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "Net-(J11-Pad5)") (pinfunction "Pin_2") (pintype "passive") (tstamp 0240aad6-2f86-4d1f-bd49-a1b3c38b5881))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J11-Pad7)") (pinfunction "Pin_3") (pintype "passive") (tstamp 28f2585f-53fd-4831-b804-4da7a9d4bc50))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "Net-(J11-Pad6)") (pinfunction "Pin_4") (pintype "passive") (tstamp 1980656e-562d-4dfa-ad9d-0f08c645ed08))
(model "${KISYS3DMOD}/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))
)
)
(gr_line (start 222.29 85.02) (end 209.7 85.02)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 168395c0-7b77-4af8-aaf3-1a261de8f12a))
(gr_line (start 209.7 78.27) (end 222.29 78.27)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 45815e92-6aea-4f5b-ae05-2b13dd780ad9))
(gr_rect (start 216.25 131.855) (end 228.38 134.45)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5427f698-7916-4ccb-ac00-4bb4e24495c9))
(gr_rect (start 214.75 113.95) (end 222.6 116.55)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 601ea1f6-fec4-422b-9bdd-229d2f8b2395))
(gr_line (start 178.34 134.07) (end 167.59 134.07)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 8e3bda2d-3a68-4bd9-a0d0-4c1c02aee818))
(gr_rect (start 194.2 69.81) (end 207.3 80.91)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9be22661-0fbb-4671-837e-583d6be1e791))
(gr_line (start 209.7 85.02) (end 209.7 78.27)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a6bc42ce-d029-448a-a683-27f19a7f28f4))
(gr_rect (start 215.72 86.4) (end 222.21 98.08)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp aca13983-2362-4050-be22-78cc38f3db04))
(gr_line (start 222.29 78.27) (end 222.29 85.02)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp ae9c0722-b58e-411b-8e13-3e663df7e9f9))
(gr_rect (start 214.75 116.55) (end 222.6 120.05)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp b1bd42cc-c039-42e5-8022-814040b5bef7))
(gr_rect (start 165.65 99.85) (end 212.5 135.7)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp be42fbc2-93de-490a-ba98-683a7833dd28))
(gr_rect (start 214.75 108.4) (end 222.6 113.95)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp c6633c14-2035-4f6c-870d-1cc7a827a676))
(gr_rect (start 170.95 75.4) (end 187.05 87.45)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp d136aaae-2153-4815-87b2-edea93ca3216))
(gr_line (start 178.34 123.32) (end 167.59 123.32)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp e7ffc634-852a-4e48-b98e-bf7c916bf0f0))
(gr_rect (start 223.25 69.15) (end 255.3 127.15)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp ebc467fe-7353-4f68-a169-9d4a2a04e4e7))
(gr_line (start 167.59 134.07) (end 167.59 123.32)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f1aac67e-38ee-4320-9991-2f02ee541f8b))
(gr_rect (start 242.3 121.3) (end 255.3 136.35)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp f2d25eed-6ca5-4f21-a2f9-81336a9c4088))
(gr_rect (start 216.25 129.255) (end 228.38 131.86)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp f3cd5444-0abb-4c6c-b645-fb4ee16e54b3))
(gr_line (start 178.34 134.07) (end 178.34 123.32)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f8730cb0-5416-4645-b8cc-90d5599ff55a))
(gr_line (start 257.2 136.45) (end 257.2 68.45)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 4d7fbfa1-9dd0-4f6d-a135-efe9e7a4cba4))
(gr_line (start 257.2 68.45) (end 164.95 68.45)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 70a26dfd-2408-4c06-b880-e113c96bb0dd))
(gr_line (start 164.95 136.45) (end 257.2 136.45)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp b8ba4f04-8ddd-4b43-a19d-d5dc2ef4a11a))
(gr_line (start 164.95 68.45) (end 164.95 136.45)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp eab352c2-bcd0-4612-9064-78e595dc79d7))
(gr_text "D8" (at 217 88.35) (layer "F.SilkS") (tstamp 0216658d-7d82-47a2-a46a-11c03b4c3010)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "microUSB" (at 249.05 130.15) (layer "F.SilkS") (tstamp 0b5ca0da-5a7b-43bb-ac49-3159a62bd9fe)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 221.7 111.05 90) (layer "F.SilkS") (tstamp 0dca22fe-02b4-4ef5-91a7-25ca345b8f7e)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "DeepSleep" (at 214.2 81.63) (layer "F.SilkS") (tstamp 18b7825c-98eb-47e2-b437-8f618e3bb443)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "5V" (at 196.85 75.61 270) (layer "F.SilkS") (tstamp 1976b0ce-6cf0-49b8-899d-8bfa8ec652e6)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "D5" (at 217.1 96.1) (layer "F.SilkS") (tstamp 3ec5cb80-7306-49bd-819c-841f1204d784)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "D4" (at 181.7 80.2) (layer "F.SilkS") (tstamp 45a49829-fa92-458d-8063-353291fb3bc5)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "D7" (at 217.05 91.05) (layer "F.SilkS") (tstamp 45ce6951-3d23-4d6e-9c6a-bee41ba320ba)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "PMS7003" (at 174.43 128.44 90) (layer "F.SilkS") (tstamp 50ab9d8d-7206-4630-a46f-170ed48aa728)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 181.33 82.76) (layer "F.SilkS") (tstamp 69a44f93-8563-487b-9d8a-3925eadd60c2)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "NodeMCU V3" (at 239.55 96.6) (layer "F.SilkS") (tstamp 6d0a77c4-6657-45ab-bda6-6288646f1970)
(effects (font (size 1 1) (thickness 0.25)))
)
(gr_text "5V" (at 221.8 115.3 90) (layer "F.SilkS") (tstamp 73208327-5cdf-441c-ba5f-a55fe3df6f4a)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "smogly.org" (at 178.75 94.35) (layer "F.SilkS") (tstamp 7b7e89b9-9de7-4d4f-b8e4-a0af0584bf0d)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text "3.3V" (at 221.85 118.3 90) (layer "F.SilkS") (tstamp 92c42c6c-f27d-4192-87d2-094522b4d622)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "PMSx003" (at 201.07 79.73) (layer "F.SilkS") (tstamp 950d98f5-2e61-48de-8fdc-c0bcd136c0fa)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 199.45 76.06 270) (layer "F.SilkS") (tstamp 99f8dc99-713e-4b2e-836e-697eeb5e752f)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "D1" (at 204.6 75.51 270) (layer "F.SilkS") (tstamp a6d1d5fd-59f8-4b22-8be3-6f60469933d3)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "PMSx003" (at 189.2 117.2) (layer "F.SilkS") (tstamp bc7b6e56-cffc-498d-a63a-b50e3d7deb27)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text "D6" (at 217.05 93.5) (layer "F.SilkS") (tstamp c2f76691-cac2-4c79-a376-9ee275deb6c2)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND - IN" (at 220.7 130.505) (layer "F.SilkS") (tstamp cfbcc201-a23f-44a9-81ea-24efe391d420)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "D2" (at 202.05 75.51 270) (layer "F.SilkS") (tstamp da3c09d4-65e8-4470-98cd-f4a5bce076ee)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "D3" (at 181.75 77.6) (layer "F.SilkS") (tstamp dafb5edf-99d2-4308-a8aa-3763b2c41ac8)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+5V - IN" (at 220.7 133.2) (layer "F.SilkS") (tstamp de1a8600-a9e9-43d8-8230-ef7562133cd3)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "BME280" (at 175.55 81.2 90) (layer "F.SilkS") (tstamp ed05a489-db28-4cf4-9a32-463106e65ef4)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "antenna" (at 239.55 73.15) (layer "F.SilkS") (tstamp eedaf6d1-fd82-49ce-9745-d0bf37990525)
(effects (font (size 1 1) (thickness 0.25)))
)
(gr_text "3.3V" (at 181.14 85.48) (layer "F.SilkS") (tstamp f3ab7c96-e02f-4482-b27c-c31bd50b81d2)
(effects (font (size 1 1) (thickness 0.15)))
)
(dimension (type aligned) (layer "F.Cu") (tstamp 006e2cab-bf7c-48d7-9de4-b0cddc35923a)
(pts (xy 257.2 136.45) (xy 257.2 99.45))
(height 1.759616)
(gr_text "37.0000 mm" (at 258.959616 117.95 90) (layer "F.Cu") (tstamp 006e2cab-bf7c-48d7-9de4-b0cddc35923a)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 1) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Cu") (tstamp c6fe178e-5f18-4bf2-a69b-a59eb11663d0)
(pts (xy 210.2 136.45) (xy 164.95 136.45))
(height -1.698877)
(gr_text "45.2500 mm" (at 187.575 138.148877) (layer "F.Cu") (tstamp c6fe178e-5f18-4bf2-a69b-a59eb11663d0)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 1) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Cu") (tstamp d1c71788-ef2f-4ec6-9960-4137ebb35787)
(pts (xy 257.2 136.45) (xy 210.2 136.45))
(height -1.698877)
(gr_text "47.0000 mm" (at 233.7 138.148877) (layer "F.Cu") (tstamp d1c71788-ef2f-4ec6-9960-4137ebb35787)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 1) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Cu") (tstamp dd3ab760-36c0-4a65-b657-e3065aa377b4)
(pts (xy 257.2 68.45) (xy 257.2 99.45))
(height -1.759616)
(gr_text "31.0000 mm" (at 258.959616 83.95 90) (layer "F.Cu") (tstamp dd3ab760-36c0-4a65-b657-e3065aa377b4)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 1) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp 0ca3c65c-c795-485f-b16d-5af583a29027)
(pts (xy 257.2 68.45) (xy 257.2 136.45))