-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathanotter-sensor-hub.kicad_pcb
More file actions
16977 lines (16941 loc) · 692 KB
/
anotter-sensor-hub.kicad_pcb
File metadata and controls
16977 lines (16941 loc) · 692 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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(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 "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "+5V")
(net 4 "EN")
(net 5 "IO0")
(net 6 "RXD")
(net 7 "TXD")
(net 8 "SDA")
(net 9 "SCL")
(net 10 "CS0")
(net 11 "SCK")
(net 12 "CIPO")
(net 13 "COPI")
(net 14 "Net-(J5-PadA5)")
(net 15 "unconnected-(J5-PadA6)")
(net 16 "unconnected-(J5-PadA7)")
(net 17 "unconnected-(J5-PadA8)")
(net 18 "Net-(J5-PadB5)")
(net 19 "unconnected-(J5-PadB6)")
(net 20 "unconnected-(J5-PadB7)")
(net 21 "unconnected-(J5-PadB8)")
(net 22 "CS1")
(net 23 "CS2")
(net 24 "unconnected-(P1-Pad1)")
(net 25 "ADC1_CH0")
(net 26 "ADC1_CH3")
(net 27 "ADC1_CH6")
(net 28 "ADC1_CH7")
(net 29 "ADC1_CH4")
(net 30 "ADC1_CH5")
(net 31 "IO25")
(net 32 "IO26")
(net 33 "IO27")
(net 34 "IO14")
(net 35 "IO12")
(net 36 "IO13")
(net 37 "IO15")
(net 38 "IO2")
(net 39 "IO4")
(net 40 "unconnected-(U1-Pad32)")
(net 41 "SHD")
(net 42 "SWP")
(net 43 "SCS")
(net 44 "SDO")
(net 45 "SDI")
(net 46 "unconnected-(J11-Pad8)")
(net 47 "unconnected-(J2-Pad6)")
(net 48 "Net-(JP1-Pad2)")
(net 49 "Net-(JP2-Pad2)")
(net 50 "Net-(JP3-Pad2)")
(net 51 "CLK")
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" locked (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 111becb9-cb80-417e-8fbe-97b6e8030333)
(at 104 104)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/e8cdc35d-e599-40e1-8443-6022cc0e3235")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp c21b20df-9e93-4f8b-bf07-89242b210ced)
)
(fp_text value "M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f5c5a33-bffa-44be-b723-f59e60ea9e4b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9661476a-e3cc-43ad-bbdf-24b6874ef400)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 713f8bf8-d771-4862-bb18-7b6f3b027ba3))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0c64a8a2-476d-4ce5-9a4f-cce66f41d837))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 1a8a76a0-6023-468a-bf57-4aeb52d09b1d))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 1df88bde-ee9c-4b31-90f5-5e91fa88d17a))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 2022f2c2-2d52-4762-8871-c3aaafed73b6))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 2ab6f680-d446-4f8f-9f8c-8ce4722c87d3))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 5fc32f47-b50c-49bd-8a82-dd68c0426109))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp b73bc21e-e4fc-434c-9782-67f831579d00))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp c78f65fa-a030-469f-965a-f81d8f3afba6))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp cc0d08d7-1c65-4883-9efb-f30fa51da8b0))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp fec985c7-f284-4d68-8727-af7eebd8b5f8))
(model "${USER3D}/Sensirion_STEP_SEN5x.STEP"
(offset (xyz 16 -4.5 22))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 -90))
)
)
(footprint "otter:R_0603" (layer "F.Cu")
(tedit 5E580DD5) (tstamp 37fed5f7-4342-43d4-8e52-4cb994a65b60)
(at 109.25 112 90)
(descr "Resistor 0603")
(tags "R Resistor 0603")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/afddb59b-8aa3-42d3-aa90-fe3ced6ceb1e")
(attr smd)
(fp_text reference "R4" (at -1.75 0 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b367d731-810d-4dbe-aa2e-ab2616fc23ec)
)
(fp_text value "5k1" (at 0 -3.475 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d87cc3e6-70e4-41ba-bfa9-1612995ab3dd)
)
(fp_line (start 0 0.35) (end 0 -0.35) (layer "F.SilkS") (width 0.12) (tstamp 47c2b278-ae5d-4e95-b5c8-9e4f00c4a0ec))
(pad "1" smd rect locked (at -0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(J5-PadA5)") (pintype "passive") (tstamp f04224a8-ae30-44b3-a012-c883be8c361b))
(pad "2" smd rect locked (at 0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp 4bc286e0-6a16-4d35-a592-670f1762f921))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0603" (layer "F.Cu")
(tedit 5E580DD5) (tstamp 40aaa59f-8dcd-4cd6-9868-6ce419e8ad14)
(at 125 126.8 90)
(descr "Resistor 0603")
(tags "R Resistor 0603")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/f1536c37-7639-4e11-bd04-69515425db56")
(attr smd)
(fp_text reference "R3" (at -1.75 0 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 7ab98ccd-8a88-4127-bdc9-df594bbf05d4)
)
(fp_text value "5k1" (at 0 -3.475 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52eb69d9-05dd-4db7-bb13-e7fdbccb6632)
)
(fp_line (start 0 0.35) (end 0 -0.35) (layer "F.SilkS") (width 0.12) (tstamp 5f3c7c7b-952a-4c09-b23f-5b10f026f34c))
(pad "1" smd rect locked (at -0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC") (pintype "passive") (tstamp 9d701cfb-72eb-49e5-b06c-a0a537ec2982))
(pad "2" smd rect locked (at 0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "SDA") (pintype "passive") (tstamp b85e7fcc-fcb8-4f3f-b9d9-a567574ce4fb))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B78AD89) (tstamp 4fbf7295-52ca-4bf6-b81b-f54f8903681f)
(at 149.4 114.6 90)
(descr "Molex PicoBlade series connector, 53261-0671 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/73348d9c-252b-4e31-9bce-2de3f915dbee")
(attr smd)
(fp_text reference "J2" (at 0 -4.4 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 34c29b45-4739-41e6-b7b0-6c1e2c6bd308)
)
(fp_text value "SEN55" (at 0 3.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43572087-2409-4d89-aee1-18574ef47490)
)
(fp_text user "${REFERENCE}" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 76df5a64-5382-4fe2-83b7-16168e290617)
)
(fp_line (start -3.785 -1.71) (end -3.785 -3.2) (layer "F.SilkS") (width 0.12) (tstamp 2cd22269-6904-465f-b343-92420b748c73))
(fp_line (start -4.735 2.26) (end -4.735 2.71) (layer "F.SilkS") (width 0.12) (tstamp 380e4631-0cdc-41cf-a0c9-805af3079200))
(fp_line (start -4.735 -1.71) (end -3.785 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 3c946993-c31f-42eb-91c5-2987f19ca522))
(fp_line (start 4.735 -1.26) (end 4.735 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 5c070ac5-0415-485b-b555-12a301aaaa59))
(fp_line (start 4.735 2.71) (end 4.735 2.26) (layer "F.SilkS") (width 0.12) (tstamp a61b8600-e4ae-4104-abd8-c8d0418deb92))
(fp_line (start -4.735 -1.26) (end -4.735 -1.71) (layer "F.SilkS") (width 0.12) (tstamp bb19e933-492f-4c9e-8175-5a4360dd6af6))
(fp_line (start -4.735 2.71) (end 4.735 2.71) (layer "F.SilkS") (width 0.12) (tstamp ed1dfd1c-32a6-4f5f-87a7-d529e6a4c1e4))
(fp_line (start 4.735 -1.71) (end 3.785 -1.71) (layer "F.SilkS") (width 0.12) (tstamp f2352228-377f-4a97-b47a-c18d09ee08bc))
(fp_line (start 7.22 3.1) (end 7.22 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 08f7614b-9649-49c1-b63a-65c3d0a1ef41))
(fp_line (start 7.22 -3.7) (end -7.22 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 27c16a37-d65b-4a83-af1a-5ee1a87062f4))
(fp_line (start -7.22 -3.7) (end -7.22 3.1) (layer "F.CrtYd") (width 0.05) (tstamp babe5627-ac22-4fb1-9642-cfab572c7144))
(fp_line (start -7.22 3.1) (end 7.22 3.1) (layer "F.CrtYd") (width 0.05) (tstamp ef5c3c45-78b1-43e0-9b89-a01337eef1fe))
(fp_line (start 6.125 2.2) (end 4.625 2.2) (layer "F.Fab") (width 0.1) (tstamp 225dea47-a33f-4c85-9aa5-e7cb6ddf0c51))
(fp_line (start 6.125 -0.6) (end 6.325 -0.4) (layer "F.Fab") (width 0.1) (tstamp 254bf983-7e38-4a82-bc20-e57fd1a1abde))
(fp_line (start 6.325 -0.4) (end 6.325 1.4) (layer "F.Fab") (width 0.1) (tstamp 3fbdee38-8dde-4999-a7c7-f0655fe2626f))
(fp_line (start -6.325 -0.4) (end -6.325 1.4) (layer "F.Fab") (width 0.1) (tstamp 64c8c09a-cf34-4302-bf79-23dba19dbb70))
(fp_line (start -6.125 -0.6) (end -6.325 -0.4) (layer "F.Fab") (width 0.1) (tstamp 656f43bd-a03e-460c-ba1b-9715dbec95bc))
(fp_line (start -3.625 -1.6) (end -3.125 -0.892893) (layer "F.Fab") (width 0.1) (tstamp 700fa350-f0e6-491d-9b23-c1cbb3fe07e0))
(fp_line (start 6.125 1.6) (end 6.125 2.2) (layer "F.Fab") (width 0.1) (tstamp 71596cf3-8544-4b7a-8c91-d72ec1d11c78))
(fp_line (start -4.625 2.6) (end 4.625 2.6) (layer "F.Fab") (width 0.1) (tstamp 87db9284-235f-48da-8453-9d391a881930))
(fp_line (start -4.625 -1.6) (end -4.625 2.6) (layer "F.Fab") (width 0.1) (tstamp 8b91ee28-3a3b-4f33-b67d-c6bcd098c7ea))
(fp_line (start 6.325 1.4) (end 6.125 1.6) (layer "F.Fab") (width 0.1) (tstamp 8bb2de93-c162-4981-8966-af7f49b5ff3e))
(fp_line (start -3.125 -0.892893) (end -2.625 -1.6) (layer "F.Fab") (width 0.1) (tstamp 8c87a3b7-567b-4121-b5a8-908863fc7b83))
(fp_line (start 4.625 -1.6) (end 4.625 2.6) (layer "F.Fab") (width 0.1) (tstamp 9a2d9092-08f4-4605-9911-facfa3d14ae4))
(fp_line (start -6.125 2.2) (end -4.625 2.2) (layer "F.Fab") (width 0.1) (tstamp 9d7384f4-72dd-4958-81aa-491c8577b346))
(fp_line (start -4.625 -1.6) (end 4.625 -1.6) (layer "F.Fab") (width 0.1) (tstamp e691b83c-22f3-4a3a-9d67-af7d12acfd7b))
(fp_line (start -6.325 1.4) (end -6.125 1.6) (layer "F.Fab") (width 0.1) (tstamp ecee3477-ff41-4a3e-8355-a0963b5d128a))
(fp_line (start -4.625 -0.6) (end -6.125 -0.6) (layer "F.Fab") (width 0.1) (tstamp f9e737a8-aaa4-4b82-8dab-cf1ccc2c4de5))
(fp_line (start -6.125 1.6) (end -6.125 2.2) (layer "F.Fab") (width 0.1) (tstamp fd06b46b-01d0-46c6-a57f-052554ce939d))
(fp_line (start 4.625 -0.6) (end 6.125 -0.6) (layer "F.Fab") (width 0.1) (tstamp fe2fda59-0565-44db-9730-492837907240))
(pad "1" smd roundrect (at -3.125 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp b8f5104e-bf28-4c2c-8bbd-3000ed3cc70b))
(pad "2" smd roundrect (at -1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp e2569042-5686-437a-a88d-838ec26ff52c))
(pad "3" smd roundrect (at -0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp b2ca14c3-9645-4c6b-8d7c-fa1223882a76))
(pad "4" smd roundrect (at 0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "SCL") (pinfunction "Pin_4") (pintype "passive") (tstamp b59a572b-45e4-4532-9f92-de20c7c8cb61))
(pad "5" smd roundrect (at 1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 4fde5988-6c04-40c6-8e35-8cc8bcac92ab))
(pad "6" smd roundrect (at 3.125 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "unconnected-(J2-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 959e4507-1a4e-464d-98d6-76e35f321715))
(pad "MP" smd roundrect (at -5.675 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952)
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 7d1f4e05-da18-428c-a049-ab8c7f6847d2))
(pad "MP" smd roundrect (at 5.675 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952)
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp e7ba0631-8a32-4cf8-b1e0-7389be80c395))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_1x10_P1.27mm_Vertical" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 50abaddd-47f5-4d26-a1ac-040e0a5b2a4e)
(at 111.25 107.525)
(descr "Through hole straight pin header, 1x10, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x10 1.27mm single row")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/21298653-2602-4011-a5f1-02eee1b496b0")
(attr through_hole)
(fp_text reference "J10" (at 0 -1.695) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 588bef68-8354-4667-a575-3c31f5656918)
)
(fp_text value "B" (at 0 13.125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b20fce31-a979-44b0-8b02-4f26d5d97078)
)
(fp_text user "${REFERENCE}" (at 0 5.715 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp ebe6845e-77ef-4a3b-8777-25f774d9ada6)
)
(fp_line (start -1.11 12.125) (end -0.30753 12.125) (layer "F.SilkS") (width 0.12) (tstamp 161f5455-8297-4c70-b65c-7a745abba5c6))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 19a78422-b95d-4f86-b628-f6242f9aacfd))
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 2859838c-f7b0-4be7-9045-7fdc963d3d85))
(fp_line (start 0.30753 12.125) (end 1.11 12.125) (layer "F.SilkS") (width 0.12) (tstamp 30304e2e-fae0-4942-8805-94df7afa183a))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp 3d92c55c-1734-42df-b448-2eee86d15983))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer "F.SilkS") (width 0.12) (tstamp 40af157d-bec1-489e-8581-29ec391f5c92))
(fp_line (start 1.11 0.76) (end 1.11 12.125) (layer "F.SilkS") (width 0.12) (tstamp 92529218-3086-4e38-a5d7-361f20edc13a))
(fp_line (start -1.11 0.76) (end -1.11 12.125) (layer "F.SilkS") (width 0.12) (tstamp c2f82502-a672-445f-b0f1-8868bd6c28f2))
(fp_line (start -1.55 -1.15) (end -1.55 12.6) (layer "F.CrtYd") (width 0.05) (tstamp 2069990d-6014-4631-8e6f-d382b53b2ed1))
(fp_line (start 1.55 12.6) (end 1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 2d9eeeec-9b58-4b2a-bc33-b5b8498b0fa3))
(fp_line (start -1.55 12.6) (end 1.55 12.6) (layer "F.CrtYd") (width 0.05) (tstamp 3af48b74-9eb6-4a31-be66-715160acfc85))
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 82e15225-a105-45b2-84d4-4b70931897e0))
(fp_line (start -1.05 12.065) (end -1.05 -0.11) (layer "F.Fab") (width 0.1) (tstamp 3074fade-b34d-479b-8200-fadd967b837d))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer "F.Fab") (width 0.1) (tstamp 63c4f6ba-7934-4f34-b900-9d85f4b16ec3))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer "F.Fab") (width 0.1) (tstamp a3acb1a5-1a94-45cb-a7eb-6abc9d5b9709))
(fp_line (start 1.05 -0.635) (end 1.05 12.065) (layer "F.Fab") (width 0.1) (tstamp a5da963a-270f-4c3d-a079-114d8eef79b7))
(fp_line (start 1.05 12.065) (end -1.05 12.065) (layer "F.Fab") (width 0.1) (tstamp e8b9f5a2-9c61-4573-a103-20f29d774825))
(pad "1" thru_hole rect (at 0 0) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 8257417e-3db1-4b7e-a79b-84d4ba8c4011))
(pad "2" thru_hole oval (at 0 1.27) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 36 "IO13") (pinfunction "Pin_2") (pintype "passive") (tstamp 54d721eb-e499-47c4-8998-1dcd3829302f))
(pad "3" thru_hole oval (at 0 2.54) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 41 "SHD") (pinfunction "Pin_3") (pintype "passive") (tstamp 896391fa-77aa-4617-be63-4c92c9128a73))
(pad "4" thru_hole oval (at 0 3.81) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 42 "SWP") (pinfunction "Pin_4") (pintype "passive") (tstamp 1a585210-4cd2-4cf8-9787-2016b6bc4329))
(pad "5" thru_hole oval (at 0 5.08) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 43 "SCS") (pinfunction "Pin_5") (pintype "passive") (tstamp d57c0ffa-3d5d-4de8-a2cb-de72ea1cf372))
(pad "6" thru_hole oval (at 0 6.35) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 51 "CLK") (pinfunction "Pin_6") (pintype "passive") (tstamp e954e8e4-5e66-4ebc-9dad-43e918b0d8d3))
(pad "7" thru_hole oval (at 0 7.62) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 44 "SDO") (pinfunction "Pin_7") (pintype "passive") (tstamp 36411ff6-02f2-4518-91f8-2ec78503d07a))
(pad "8" thru_hole oval (at 0 8.89) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 45 "SDI") (pinfunction "Pin_8") (pintype "passive") (tstamp fdbeb6f2-ee7c-43eb-840b-d8ad9458d56d))
(pad "9" thru_hole oval (at 0 10.16) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 37 "IO15") (pinfunction "Pin_9") (pintype "passive") (tstamp fe29d3b6-92be-4e54-a383-392356bcc809))
(pad "10" thru_hole oval (at 0 11.43) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 38 "IO2") (pinfunction "Pin_10") (pintype "passive") (tstamp 5fc03015-6f9b-4e08-9fd5-ba1cb6c63544))
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_1x14_P1.27mm_Vertical" (layer "F.Cu")
(tedit 63934B37) (tstamp 5aee846a-8592-4b29-bd9b-9c316ee83d69)
(at 114.75 124.250001 90)
(descr "Through hole straight pin header, 1x14, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x14 1.27mm single row")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/e92f037f-c01c-44c3-81bf-0b593fd20f1e")
(attr through_hole)
(fp_text reference "J11" (at 0 -1.695 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp bdda70c2-3421-4655-b5b9-d211191a6325)
)
(fp_text value "C" (at 0 18.205 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 047cf595-1972-4c2a-a70b-65489a060f88)
)
(fp_text user "${REFERENCE}" (at 0 8.255) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 412488c3-13b7-4cf8-8c58-0304d4e5151b)
)
(fp_line (start 0.30753 17.205) (end 1.11 17.205) (layer "F.SilkS") (width 0.12) (tstamp 21029bc5-ec40-4631-a1f1-024a4085a56f))
(fp_line (start -1.11 17.205) (end -0.30753 17.205) (layer "F.SilkS") (width 0.12) (tstamp 29ba5cb3-8244-4e9f-a028-bde92e99adb1))
(fp_line (start -1.11 0.76) (end -1.11 17.205) (layer "F.SilkS") (width 0.12) (tstamp 395df0a5-800c-4cca-a0f1-3ad76d2e76ca))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer "F.SilkS") (width 0.12) (tstamp 7bc6e4f1-1e6a-45c4-bde8-9944381fe3ce))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp aba0fc13-5864-4b93-a0d5-5b97e1e36281))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp b3ee6304-4586-4924-9942-14d87bd91c7d))
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer "F.SilkS") (width 0.12) (tstamp b93d027f-21f6-4fc9-ad3f-317eded6973b))
(fp_line (start 1.11 0.76) (end 1.11 17.205) (layer "F.SilkS") (width 0.12) (tstamp bdfead1f-ec4f-41f7-bfd1-971493371164))
(fp_line (start -1.55 -1.15) (end -1.55 17.65) (layer "F.CrtYd") (width 0.05) (tstamp 19540a39-5ccf-4444-9213-b906fd0dd61b))
(fp_line (start 1.55 17.65) (end 1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 203e5b2e-39ac-4c61-8ae1-6c3eb4a9b53a))
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 812743ff-ca89-44bf-bfc5-a9a71a71d256))
(fp_line (start -1.55 17.65) (end 1.55 17.65) (layer "F.CrtYd") (width 0.05) (tstamp ad2c8427-faf3-46bd-a366-df5ea0d688b4))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer "F.Fab") (width 0.1) (tstamp 12d6a58e-297d-4423-a9b1-8d6158bbfbac))
(fp_line (start 1.05 -0.635) (end 1.05 17.145) (layer "F.Fab") (width 0.1) (tstamp 2ea45036-6908-4767-a4a0-ac16e09767ee))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer "F.Fab") (width 0.1) (tstamp 675b2a1e-1d1e-4f5b-91f1-23d348015a92))
(fp_line (start 1.05 17.145) (end -1.05 17.145) (layer "F.Fab") (width 0.1) (tstamp 97823ebb-0711-4a96-9596-e1b6f4baec60))
(fp_line (start -1.05 17.145) (end -1.05 -0.11) (layer "F.Fab") (width 0.1) (tstamp f243ec58-1f6e-418e-a663-db153af2a742))
(pad "1" thru_hole rect (at 0 0 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 5 "IO0") (pinfunction "Pin_1") (pintype "passive") (tstamp bb5372f2-1ad0-4a4d-b4cb-b3226f0cfcbd))
(pad "2" thru_hole oval (at 0 1.27 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 39 "IO4") (pinfunction "Pin_2") (pintype "passive") (tstamp b5e82878-b519-4073-ad55-f1d9914c05ff))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 23 "CS2") (pinfunction "Pin_3") (pintype "passive") (tstamp 41d12f3f-11c6-402c-bcf2-6f6e169eb2f6))
(pad "4" thru_hole oval (at 0 3.81 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 22 "CS1") (pinfunction "Pin_4") (pintype "passive") (tstamp 355984fe-c4ef-4584-9c88-7aed9a4b1db8))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 10 "CS0") (pinfunction "Pin_5") (pintype "passive") (tstamp 537d030b-54bb-4562-9f1e-378ccefb4b2e))
(pad "6" thru_hole oval (at 0 6.35 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 11 "SCK") (pinfunction "Pin_6") (pintype "passive") (tstamp b7ea6100-ff11-4609-86f6-89b95a0d171e))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 12 "CIPO") (pinfunction "Pin_7") (pintype "passive") (tstamp b8a5679e-0824-4fd4-bd37-515f1c75fd73))
(pad "8" thru_hole oval (at 0.000008 8.890012 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 46 "unconnected-(J11-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 14024e4b-59d0-4f66-8eba-1d0eb8f5d9a6))
(pad "9" thru_hole oval (at 0 10.16 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 8 "SDA") (pinfunction "Pin_9") (pintype "passive") (tstamp f46360b3-2778-4224-b87e-99e44d6e0b71))
(pad "10" thru_hole oval (at 0 11.43 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 6 "RXD") (pinfunction "Pin_10") (pintype "passive") (tstamp 49c4dcb9-cb9b-421e-b7b9-e495c75a42b7))
(pad "11" thru_hole oval (at 0 12.7 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 7 "TXD") (pinfunction "Pin_11") (pintype "passive") (tstamp e4e8c3f3-f9c5-4fd5-9df8-595c4d009ab6))
(pad "12" thru_hole oval (at 0 13.97 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 9 "SCL") (pinfunction "Pin_12") (pintype "passive") (tstamp 35505c17-306b-4361-9895-a67ced902f2d))
(pad "13" thru_hole oval (at 0 15.24 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 13 "COPI") (pinfunction "Pin_13") (pintype "passive") (tstamp 0db9632a-21af-4acb-9c05-e041f8c89b3a))
(pad "14" thru_hole oval (at 0 16.51 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp c14d7200-f91c-4b1f-9467-64c3336c7ef2))
)
(footprint "Connector_Molex:Molex_PicoBlade_53398-0571_1x05-1MP_P1.25mm_Vertical" (layer "F.Cu")
(tedit 5B78AD88) (tstamp 6050ade4-d8f2-4a7b-93e2-d062e93e9edb)
(at 134.5 132.5)
(descr "Molex PicoBlade series connector, 53398-0571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade side entry")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/53151d47-6f4b-4a8e-a3c2-5419343b9c82")
(attr smd)
(fp_text reference "J4" (at 0 -3.1) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 0bb36be2-ca53-49e2-aeb3-4c5728e3d819)
)
(fp_text value "I2C" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0fa8234-8777-4a66-8b79-9ecbb37d6605)
)
(fp_text user "${REFERENCE}" (at 0 0.4) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b29e116d-0c94-4f3d-a318-db4c1054931b)
)
(fp_line (start 4.11 -1.21) (end 3.16 -1.21) (layer "F.SilkS") (width 0.12) (tstamp 196e2e1c-99db-48a2-923e-0258bca0805d))
(fp_line (start 4.11 -0.26) (end 4.11 -1.21) (layer "F.SilkS") (width 0.12) (tstamp 328427ae-624d-4ad5-9eae-c7dba1277b8f))
(fp_line (start -4.11 -1.21) (end -3.16 -1.21) (layer "F.SilkS") (width 0.12) (tstamp 414df5d7-f19b-4687-a4de-327c40e73e20))
(fp_line (start -3.16 -1.21) (end -3.16 -1.9) (layer "F.SilkS") (width 0.12) (tstamp 7cd22ddf-b7a3-4ab8-89e3-a5e58213159b))
(fp_line (start -3.74 2.71) (end 3.74 2.71) (layer "F.SilkS") (width 0.12) (tstamp 9eb5fc74-7ee2-4483-b24f-769829d8a6c2))
(fp_line (start -4.11 -0.26) (end -4.11 -1.21) (layer "F.SilkS") (width 0.12) (tstamp a1fd107d-3e8c-4d45-b1b9-b910fe926734))
(fp_line (start 6.6 3.5) (end 6.6 -2.4) (layer "F.CrtYd") (width 0.05) (tstamp 1bc69943-163a-4f23-a1b2-869455d3610c))
(fp_line (start -6.6 3.5) (end 6.6 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 21ca756f-3477-4ce7-b401-446af31305b1))
(fp_line (start 6.6 -2.4) (end -6.6 -2.4) (layer "F.CrtYd") (width 0.05) (tstamp 4ee7e00d-7ebf-4975-bd69-7b422f82b3e0))
(fp_line (start -6.6 -2.4) (end -6.6 3.5) (layer "F.CrtYd") (width 0.05) (tstamp a773823e-0f26-4fe7-b141-87b580d11b17))
(fp_line (start 4 -1.1) (end 4 2.6) (layer "F.Fab") (width 0.1) (tstamp 06b57733-f545-49fc-900f-f90ae9b9047c))
(fp_line (start -5.5 2.6) (end -5.7 2.4) (layer "F.Fab") (width 0.1) (tstamp 0d33a0a3-6701-41b8-8040-7340c4d8cd33))
(fp_line (start -3 -1.1) (end -2.5 -0.392893) (layer "F.Fab") (width 0.1) (tstamp 1971aaa8-4fc8-4165-91ab-821ea2d686e3))
(fp_line (start 1.1 1.825) (end 1.4 1.825) (layer "F.Fab") (width 0.1) (tstamp 1ddaccf1-4d0b-44e5-b2c4-dfcabfdb2934))
(fp_line (start -5.7 2.4) (end -5.7 0.6) (layer "F.Fab") (width 0.1) (tstamp 229089b5-d96a-45a7-930c-5b21e68180d7))
(fp_line (start -4 2.6) (end 4 2.6) (layer "F.Fab") (width 0.1) (tstamp 288344de-d424-4b26-b740-94d18e9ae516))
(fp_line (start -1.1 1.825) (end -1.1 1.225) (layer "F.Fab") (width 0.1) (tstamp 3836c63d-ca60-4e8e-a339-40980bdccc31))
(fp_line (start 5.5 2.6) (end 5.7 2.4) (layer "F.Fab") (width 0.1) (tstamp 55811421-7465-4b7c-a8c0-f5132bc3a205))
(fp_line (start -4 2.6) (end -5.5 2.6) (layer "F.Fab") (width 0.1) (tstamp 58633a66-53a7-4a80-bb62-9adf9147da29))
(fp_line (start 2.35 1.225) (end 2.35 1.825) (layer "F.Fab") (width 0.1) (tstamp 59e03393-006d-471e-9536-bbbd75e54503))
(fp_line (start -1.4 1.225) (end -1.4 1.825) (layer "F.Fab") (width 0.1) (tstamp 5e707534-c918-46f7-a5cb-689e5a18b5bb))
(fp_line (start 0.15 1.825) (end 0.15 1.225) (layer "F.Fab") (width 0.1) (tstamp 60af2486-27b0-4394-8b74-bf0b63a58ade))
(fp_line (start 2.65 1.825) (end 2.65 1.225) (layer "F.Fab") (width 0.1) (tstamp 642bef19-f089-4145-8521-0c78a2141a57))
(fp_line (start -5.5 -0.2) (end -4 -0.2) (layer "F.Fab") (width 0.1) (tstamp 66749c6a-b16f-43be-bab1-76caa7a8a44a))
(fp_line (start 4 2.6) (end 5.5 2.6) (layer "F.Fab") (width 0.1) (tstamp 6f80fbb2-ac4c-4cbd-929c-985047ad8ccc))
(fp_line (start 1.1 1.225) (end 1.1 1.825) (layer "F.Fab") (width 0.1) (tstamp 77a2b2d1-2483-4c81-b108-6030d548a09e))
(fp_line (start -5.5 0.4) (end -5.5 -0.2) (layer "F.Fab") (width 0.1) (tstamp 86ed86f4-0151-45c5-905f-b4a048144531))
(fp_line (start -0.15 1.225) (end -0.15 1.825) (layer "F.Fab") (width 0.1) (tstamp 89311f2b-7f4a-4f24-93ac-72dc2e834d5d))
(fp_line (start 0.15 1.225) (end -0.15 1.225) (layer "F.Fab") (width 0.1) (tstamp 8e73e860-7df5-47ee-9d85-a51cffff4073))
(fp_line (start -2.5 -0.392893) (end -2 -1.1) (layer "F.Fab") (width 0.1) (tstamp 8f03ae41-61bd-4463-bc12-db0dde34447c))
(fp_line (start -2.65 1.825) (end -2.35 1.825) (layer "F.Fab") (width 0.1) (tstamp 93ebecb5-a9cc-4d2c-95d6-f1997abc5a8e))
(fp_line (start -0.15 1.825) (end 0.15 1.825) (layer "F.Fab") (width 0.1) (tstamp 9a1807dc-d64a-4457-9c2b-93b6612c3b2e))
(fp_line (start -4 -1.1) (end -4 2.6) (layer "F.Fab") (width 0.1) (tstamp 9cb160c0-5456-4bd7-aa7f-b9388d25eb35))
(fp_line (start -2.35 1.825) (end -2.35 1.225) (layer "F.Fab") (width 0.1) (tstamp 9ee66366-9074-4bc0-8447-8c0b7199acdf))
(fp_line (start -4 -1.1) (end 4 -1.1) (layer "F.Fab") (width 0.1) (tstamp a658002a-8a7e-43ad-8acb-33b00307f4c4))
(fp_line (start 1.4 1.225) (end 1.1 1.225) (layer "F.Fab") (width 0.1) (tstamp a7be9e53-3c65-4638-b824-3d5371aceb9f))
(fp_line (start -1.1 1.225) (end -1.4 1.225) (layer "F.Fab") (width 0.1) (tstamp b2837d6b-6cc1-45c4-aa75-fd2bb220208e))
(fp_line (start -5.7 0.6) (end -5.5 0.4) (layer "F.Fab") (width 0.1) (tstamp b5ea13a8-3e37-4201-b115-0647094f76a8))
(fp_line (start -2.65 1.225) (end -2.65 1.825) (layer "F.Fab") (width 0.1) (tstamp bb5999d5-f86c-445a-9ff9-2a1b539dc199))
(fp_line (start 5.7 0.6) (end 5.5 0.4) (layer "F.Fab") (width 0.1) (tstamp bc90f0c0-612e-411d-9c41-1a8ebb2b39fc))
(fp_line (start 5.7 2.4) (end 5.7 0.6) (layer "F.Fab") (width 0.1) (tstamp c065b0a4-0b93-48f2-9339-44d26009eb1c))
(fp_line (start 5.5 0.4) (end 5.5 -0.2) (layer "F.Fab") (width 0.1) (tstamp d23ca5ac-bc4d-44a2-90ac-0b3eaa4af6f8))
(fp_line (start 1.4 1.825) (end 1.4 1.225) (layer "F.Fab") (width 0.1) (tstamp d7cdfc88-84f0-4354-8fda-98af7b5493ec))
(fp_line (start -1.4 1.825) (end -1.1 1.825) (layer "F.Fab") (width 0.1) (tstamp d9b138bc-0203-4547-9bd8-5f8e532ba1ac))
(fp_line (start 2.35 1.825) (end 2.65 1.825) (layer "F.Fab") (width 0.1) (tstamp e09508cd-85e8-48bb-9bcb-9bab32279ab6))
(fp_line (start -2.35 1.225) (end -2.65 1.225) (layer "F.Fab") (width 0.1) (tstamp e7a006ce-0f82-4892-91e0-922dbe7a9a24))
(fp_line (start 5.5 -0.2) (end 4 -0.2) (layer "F.Fab") (width 0.1) (tstamp eec00f97-9726-4990-8aef-95005e7267d9))
(fp_line (start 2.65 1.225) (end 2.35 1.225) (layer "F.Fab") (width 0.1) (tstamp fac37166-6544-4a5a-8523-75c307b4539f))
(pad "1" smd roundrect (at -2.5 -1.25) (size 0.8 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 6ac440ba-4881-4f79-8968-a3e9f9fd1b3e))
(pad "2" smd roundrect (at -1.25 -1.25) (size 0.8 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 22df74e7-4d34-42bf-850f-da14c7fd1281))
(pad "3" smd roundrect (at 0 -1.25) (size 0.8 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp 83128908-7808-4723-b26c-8992131a5841))
(pad "4" smd roundrect (at 1.25 -1.25) (size 0.8 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "SCL") (pinfunction "Pin_4") (pintype "passive") (tstamp e7d76002-13e3-46e0-a8a6-c532d4210de7))
(pad "5" smd roundrect (at 2.5 -1.25) (size 0.8 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 284b4b05-f802-48af-884a-d2ca721ae34d))
(pad "MP" smd roundrect (at 5.05 1.5) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952)
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 5e32da30-1a3e-4135-adaf-bbf389b0c3fc))
(pad "MP" smd roundrect (at -5.05 1.5) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952)
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp a58c2dc5-d0b2-4b7a-84f6-0ad19b70b65a))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53398-0571_1x05-1MP_P1.25mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RF_Module:ESP32-WROOM-32" (layer "F.Cu")
(tedit 61D4B4ED) (tstamp 69ab893d-e72a-4903-8a42-16f6b5eb229b)
(at 123 113.25 -90)
(descr "Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf")
(tags "Single 2.4 GHz Wi-Fi and Bluetooth combo chip")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/903fb6ee-58aa-43ee-82e2-a7a7437b73c0")
(attr smd)
(fp_text reference "U1" (at -8.6 10.7) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f5fdbe12-8908-4b4e-99cf-dfba67105b79)
)
(fp_text value "ESP32-WROOM-32" (at 0 11.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f009ac58-f532-4e59-a1ec-f6a687be6983)
)
(fp_text user "KEEP-OUT ZONE" (at 0 -19 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aae81720-20e6-4276-a88c-0d6e7e7f9f9d)
)
(fp_text user "5 mm" (at 11.8 -14.375 90) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp c29c1e3f-2ce6-4f84-9b87-2633c5cfebc0)
)
(fp_text user "5 mm" (at 7.8 -19.075) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp dcb7ef5d-30e6-47b3-91df-35b8913e714b)
)
(fp_text user "Antenna" (at 0 -13 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efbd2f04-62a1-49d5-9d60-2e126a66fb46)
)
(fp_text user "5 mm" (at -11.2 -14.375 90) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp fa9ed6b5-4e5c-4243-98fd-8dcda9f36d63)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 51a502e9-5635-4e96-97f0-80e9b324d808)
)
(fp_line (start -9.12 -9.445) (end -9.5 -9.445) (layer "F.SilkS") (width 0.12) (tstamp 5b918e6b-2a60-4fa5-ad8b-e73e23f85e4f))
(fp_line (start 9.12 -15.865) (end 9.12 -9.445) (layer "F.SilkS") (width 0.12) (tstamp 684829a1-14fb-436a-9093-a9211cbef360))
(fp_line (start 9.12 9.1) (end 9.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp 7e14a6ba-72c9-486f-8ebf-f83333348517))
(fp_line (start -9.12 -15.865) (end 9.12 -15.865) (layer "F.SilkS") (width 0.12) (tstamp 8a2de80f-1df5-4bd5-a81c-0dc71a22a3a3))
(fp_line (start 9.12 9.88) (end 8.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp 91c784cb-86f4-4eb1-9d7f-7df9c50ff534))
(fp_line (start -9.12 -15.865) (end -9.12 -9.445) (layer "F.SilkS") (width 0.12) (tstamp b082fdbd-d670-4041-a5e5-3ca0b09bb0a0))
(fp_line (start -9.12 9.88) (end -8.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp b14c35da-dd14-4b8d-93a9-00f219a92f41))
(fp_line (start -9.12 9.1) (end -9.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp b746e97a-71d3-4558-80c6-41ab04fe3fba))
(fp_line (start -13.8 -13.875) (end -13.6 -14.075) (layer "Cmts.User") (width 0.1) (tstamp 495255cc-4ba2-4e9c-a47f-68873ed977bf))
(fp_line (start 9.2 -13.875) (end 9.4 -13.675) (layer "Cmts.User") (width 0.1) (tstamp 589039ca-2779-4520-b3e8-3f7f6261d041))
(fp_line (start 8.4 -20.6) (end 8.6 -20.4) (layer "Cmts.User") (width 0.1) (tstamp 5a379621-58ee-4146-baab-da833a7fa375))
(fp_line (start 8.4 -16) (end 8.6 -16.2) (layer "Cmts.User") (width 0.1) (tstamp 5e01567b-a9f5-4f86-b76a-2572d29d2d44))
(fp_line (start 8.4 -20.6) (end 8.2 -20.4) (layer "Cmts.User") (width 0.1) (tstamp 8dc186eb-86cf-41e1-8b58-fae7324b6144))
(fp_line (start 8.4 -16) (end 8.2 -16.2) (layer "Cmts.User") (width 0.1) (tstamp 8e46ddad-6bfa-40af-b04f-edc6699bc195))
(fp_line (start 13.8 -13.875) (end 13.6 -14.075) (layer "Cmts.User") (width 0.1) (tstamp a15739ab-9211-4aeb-9603-bc7b827421d7))
(fp_line (start -9.2 -13.875) (end -9.4 -13.675) (layer "Cmts.User") (width 0.1) (tstamp aa9444f9-67db-4b57-841d-ad4324b4a525))
(fp_line (start 8.4 -16) (end 8.4 -20.6) (layer "Cmts.User") (width 0.1) (tstamp b1d0c301-b4b9-4a22-806b-1c100e83ef02))
(fp_line (start 13.8 -13.875) (end 13.6 -13.675) (layer "Cmts.User") (width 0.1) (tstamp b9fb1e52-5bfb-4074-afb5-c49d4199f8ba))
(fp_line (start 9.2 -13.875) (end 9.4 -14.075) (layer "Cmts.User") (width 0.1) (tstamp baf92a55-8ef9-4ff0-acd3-40422e2bd4e3))
(fp_line (start -13.8 -13.875) (end -13.6 -13.675) (layer "Cmts.User") (width 0.1) (tstamp ea98f420-4e24-48e8-aa57-57b261e9db18))
(fp_line (start -9.2 -13.875) (end -9.4 -14.075) (layer "Cmts.User") (width 0.1) (tstamp f33894b1-3004-4ac0-b141-e83279084e93))
(fp_line (start -13.8 -13.875) (end -9.2 -13.875) (layer "Cmts.User") (width 0.1) (tstamp f4648014-6a49-47fe-aa14-831ac44193be))
(fp_line (start 9.2 -13.875) (end 13.8 -13.875) (layer "Cmts.User") (width 0.1) (tstamp f89ddfd4-8c5b-4ab4-8c95-e6e9a5e87dd0))
(fp_line (start -14.25 -21) (end -14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 245ce96e-de23-4c93-af58-f40e4cd70189))
(fp_line (start 9.75 -9.72) (end 9.75 10.5) (layer "F.CrtYd") (width 0.05) (tstamp 5ed3eb6e-4113-4e4a-93ef-848547ba49e9))
(fp_line (start -9.75 10.5) (end -9.75 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 824bf9be-cd2c-4ab7-8842-76df6ed72469))
(fp_line (start -14.25 -9.72) (end -9.75 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 8f207e00-886c-4f46-9355-3a8e7985a8d3))
(fp_line (start -14.25 -21) (end 14.25 -21) (layer "F.CrtYd") (width 0.05) (tstamp b5b7cf73-4d60-464f-a67b-f4c9c9d02016))
(fp_line (start 9.75 -9.72) (end 14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp c511469e-d1c5-496e-ab1b-d9bdfe9a1e6d))
(fp_line (start -9.75 10.5) (end 9.75 10.5) (layer "F.CrtYd") (width 0.05) (tstamp dd472471-f193-48d5-889c-efd694d3f702))
(fp_line (start 14.25 -21) (end 14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp deee85ef-cb82-4743-a884-4753952d560e))
(fp_line (start -9 9.76) (end 9 9.76) (layer "F.Fab") (width 0.1) (tstamp 05e97569-cb43-4bfe-9c28-ea03e56f9c42))
(fp_line (start -9 -9.02) (end -9 9.76) (layer "F.Fab") (width 0.1) (tstamp 0db2329c-20dc-462b-b20a-ad6f2e2cbe93))
(fp_line (start -9 -15.745) (end -9 -10.02) (layer "F.Fab") (width 0.1) (tstamp 42ad14a7-9025-4df7-8122-1178f2977a3b))
(fp_line (start -9 -9.02) (end -8.5 -9.52) (layer "F.Fab") (width 0.1) (tstamp 4cb4ec2e-02f5-4446-8447-db3933681d2a))
(fp_line (start -9 -15.745) (end 9 -15.745) (layer "F.Fab") (width 0.1) (tstamp 89ef2bc0-8232-4be3-b051-e70f2b9027de))
(fp_line (start 9 9.76) (end 9 -15.745) (layer "F.Fab") (width 0.1) (tstamp a5e8c014-a02c-48a7-a56b-b148c03b0656))
(fp_line (start -8.5 -9.52) (end -9 -10.02) (layer "F.Fab") (width 0.1) (tstamp fedd826e-74ae-4512-8096-f38aaffedb7c))
(pad "1" smd rect (at -8.5 -8.255 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f1da6dec-d569-4cfe-b70b-354611bf1d93))
(pad "2" smd rect (at -8.5 -6.985 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp b7cf2839-b1c0-4185-bd2b-8b40d3060ac9))
(pad "3" smd rect (at -8.5 -5.715 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "EN") (pinfunction "EN") (pintype "input") (tstamp fcf53a3f-59b9-4ab4-bae0-543d7757d600))
(pad "4" smd rect (at -8.5 -4.445 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "ADC1_CH0") (pinfunction "SENSOR_VP") (pintype "input") (tstamp c7daa16d-2cdc-48f9-84e1-6fd3b9ab8609))
(pad "5" smd rect (at -8.5 -3.175 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "ADC1_CH3") (pinfunction "SENSOR_VN") (pintype "input") (tstamp e2eaff9d-4c94-4311-bec0-a13146b760ca))
(pad "6" smd rect (at -8.5 -1.905 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "ADC1_CH6") (pinfunction "IO34") (pintype "input") (tstamp e66cdece-4893-4be4-8985-52fc83792731))
(pad "7" smd rect (at -8.5 -0.635 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "ADC1_CH7") (pinfunction "IO35") (pintype "input") (tstamp 62cf0a26-9096-4000-923a-60daf3aa23f8))
(pad "8" smd rect (at -8.5 0.635 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "ADC1_CH4") (pinfunction "IO32") (pintype "bidirectional") (tstamp 7f04153d-9d5e-47af-b99d-bc6a387c9a6f))
(pad "9" smd rect (at -8.5 1.905 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "ADC1_CH5") (pinfunction "IO33") (pintype "bidirectional") (tstamp ddcc8852-5683-4366-8128-1d6ff0a98b06))
(pad "10" smd rect (at -8.5 3.175 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "IO25") (pinfunction "IO25") (pintype "bidirectional") (tstamp 4f0ad253-6758-4fab-a304-5619bb190326))
(pad "11" smd rect (at -8.5 4.445 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "IO26") (pinfunction "IO26") (pintype "bidirectional") (tstamp ed15d2ab-884d-4309-8fc5-a20c99e91302))
(pad "12" smd rect (at -8.5 5.715 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "IO27") (pinfunction "IO27") (pintype "bidirectional") (tstamp 63777433-96ab-4b15-8870-c77f38cbb556))
(pad "13" smd rect (at -8.5 6.985 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "IO14") (pinfunction "IO14") (pintype "bidirectional") (tstamp 70e18146-fcad-491b-ae29-6b6b530cc027))
(pad "14" smd rect (at -8.5 8.255 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "IO12") (pinfunction "IO12") (pintype "bidirectional") (tstamp 9b86d498-b713-4140-97c2-940c95f43f16))
(pad "15" smd rect (at -5.715 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5d6cfde2-9586-45a3-9d7e-b9db5ad7bc21))
(pad "16" smd rect (at -4.445 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "IO13") (pinfunction "IO13") (pintype "bidirectional") (tstamp e997c615-0a9d-46fc-872f-6b2d14f01b36))
(pad "17" smd rect (at -3.175 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "SHD") (pinfunction "SHD/SD2") (pintype "bidirectional") (tstamp f5156e03-6da9-4205-8d49-0997e01031c7))
(pad "18" smd rect (at -1.905 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "SWP") (pinfunction "SWP/SD3") (pintype "bidirectional") (tstamp 897136b5-a5d5-4581-a6bf-48c25cde5ca5))
(pad "19" smd rect (at -0.635 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "SCS") (pinfunction "SCS/CMD") (pintype "bidirectional") (tstamp 9fd2c636-f5cd-47e5-bbbc-56f7c25ff6b0))
(pad "20" smd rect (at 0.635 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "CLK") (pinfunction "SCK/CLK") (pintype "bidirectional") (tstamp 7cea007c-3280-4e58-94e8-fd0f1c985899))
(pad "21" smd rect (at 1.905 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "SDO") (pinfunction "SDO/SD0") (pintype "bidirectional") (tstamp 8a80af2d-ce13-4b11-8a6d-9856813678bd))
(pad "22" smd rect (at 3.175 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "SDI") (pinfunction "SDI/SD1") (pintype "bidirectional") (tstamp e34767e1-a29c-42c3-8abb-ef0a479b6adf))
(pad "23" smd rect (at 4.445 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "IO15") (pinfunction "IO15") (pintype "bidirectional") (tstamp e0fafb5a-7612-49f2-857e-07a48cf36c67))
(pad "24" smd rect (at 5.715 9.255) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "IO2") (pinfunction "IO2") (pintype "bidirectional") (tstamp d32ff0d3-6db2-4544-ab69-6c0b14790da2))
(pad "25" smd rect (at 8.5 8.255 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "IO0") (pinfunction "IO0") (pintype "bidirectional") (tstamp 738c73ca-416f-4cdc-b135-180d4d696484))
(pad "26" smd rect (at 8.5 6.985 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "IO4") (pinfunction "IO4") (pintype "bidirectional") (tstamp 7590e24b-577c-4fcd-9e1f-ab45b189df19))
(pad "27" smd rect (at 8.5 5.715 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "CS2") (pinfunction "IO16") (pintype "bidirectional") (tstamp fe1bd8e9-7e87-4635-aee4-ff9ac1345deb))
(pad "28" smd rect (at 8.5 4.445 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "CS1") (pinfunction "IO17") (pintype "bidirectional") (tstamp b7529180-b981-4b46-93d8-91bc4911cdab))
(pad "29" smd rect (at 8.5 3.175 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "CS0") (pinfunction "IO5") (pintype "bidirectional") (tstamp ba1ab41c-bcc1-4114-96ed-6de21e86cec1))
(pad "30" smd rect (at 8.5 1.905 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "SCK") (pinfunction "IO18") (pintype "bidirectional") (tstamp 06a29087-be12-4782-ab0c-68019175faac))
(pad "31" smd rect (at 8.5 0.635 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "CIPO") (pinfunction "IO19") (pintype "bidirectional") (tstamp 34b6b129-a76c-4a62-91cc-2743f5f4b2c4))
(pad "32" smd rect (at 8.5 -0.635 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "unconnected-(U1-Pad32)") (pinfunction "NC") (pintype "no_connect") (tstamp 975ff309-e329-4b51-a1c6-9bae2657c1a6))
(pad "33" smd rect (at 8.5 -1.905 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "SDA") (pinfunction "IO21") (pintype "bidirectional") (tstamp 2be23707-43d6-4159-94ab-fc7f4974c9b7))
(pad "34" smd rect (at 8.5 -3.175 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "RXD") (pinfunction "RXD0/IO3") (pintype "bidirectional") (tstamp afd20e7b-0c57-49fa-a2aa-4d47f56f629d))
(pad "35" smd rect (at 8.5 -4.445 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "TXD") (pinfunction "TXD0/IO1") (pintype "bidirectional") (tstamp 18772a97-fc71-460d-b717-9449db055c90))
(pad "36" smd rect (at 8.5 -5.715 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "SCL") (pinfunction "IO22") (pintype "bidirectional") (tstamp 049a81eb-a1e0-4ed0-b066-8d01132f517e))
(pad "37" smd rect (at 8.5 -6.985 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "COPI") (pinfunction "IO23") (pintype "bidirectional") (tstamp 17108590-0e42-43c2-ab9e-625e7b4f94b1))
(pad "38" smd rect (at 8.5 -8.255 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp a67f115f-343e-401e-a6fd-6c057cd578a5))
(pad "39" smd rect (at -1 -0.755 270) (size 5 5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7da8efaf-d0d3-4bd4-ace3-f78d8c4be5ba))
(zone (net 0) (net_name "") (layers *.Cu) (tstamp 9599f3c3-e1c5-4ec3-bf30-95ca53eb453b) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 132.970001 99.25)
(xy 132.970001 127.25)
(xy 143.75 127.25)
(xy 143.75 99.25)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/RF_Module.3dshapes/ESP32-WROOM-32.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0603" (layer "F.Cu")
(tedit 5E580DD5) (tstamp 6ce712c5-fc40-4079-b769-1caeda39d8f3)
(at 128.8 126.8 90)
(descr "Resistor 0603")
(tags "R Resistor 0603")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/0191afd0-5f1a-40c0-8c2c-fc6b4512ec40")
(attr smd)
(fp_text reference "R2" (at -1.75 0 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 352f28bf-b1c2-4de5-992d-e57cf2e8483f)
)
(fp_text value "5k1" (at 0 -3.475 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca1ed9ca-0cff-4782-8c33-4386bceb5f4f)
)
(fp_line (start 0 0.35) (end 0 -0.35) (layer "F.SilkS") (width 0.12) (tstamp 11c13b9d-0404-4268-bab1-f545d338c0be))
(pad "1" smd rect locked (at -0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC") (pintype "passive") (tstamp 21f58734-fe5c-4a86-add9-a9d5a28072d0))
(pad "2" smd rect locked (at 0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "SCL") (pintype "passive") (tstamp 553f8fdd-c870-4163-a81b-a10a24a3351e))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:J_0603_90" (layer "F.Cu")
(tedit 5E5C605F) (tstamp 73ec9bbc-dc9a-43b6-8948-b32c01d65371)
(at 144.9 133.7 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/70a44489-d752-465f-b353-4d8eb30ff7de")
(attr smd)
(fp_text reference "JP1" (at 1 -1.5) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp a1a95a4e-59c6-4de0-bc59-72f75a6c6058)
)
(fp_text value "JP" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f494321-e87f-4a8e-bbe5-a937d805b012)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 12b06950-23c0-46a3-97b4-485917511191)
)
(fp_text user "${REFERENCE}" (at -0.75 -0.75 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f9875c50-c584-4495-882f-e1b77ce22046)
)
(fp_line (start -0.24 -0.587221) (end -0.24 -0.912779) (layer "F.SilkS") (width 0.12) (tstamp 2a5ed4f1-2e39-45ae-bf53-791630bc4cad))
(fp_line (start -1.26 -0.587221) (end -1.26 -0.912779) (layer "F.SilkS") (width 0.12) (tstamp 9f32a78e-0b59-4846-9068-4909840a34ae))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp ad10a4b7-2487-448c-860c-e5fa438bed4f))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp b5c2c10d-e882-4621-912f-0aa3c082e54a))
(fp_line (start 0 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 035e0cf3-8ba7-4e18-8dd3-f8e636f1c886))
(fp_line (start 0 -0.75) (end 0 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 4949c210-134d-4c0f-a922-5b5c8c6df145))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8c7ad431-18a5-4197-b13f-e4bbf0da7038))
(fp_line (start -1.48 0.73) (end -1.48 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 9396dbf5-aa3c-4ba1-a9ae-1945fbb2026c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9eb4c32c-a62b-416a-a386-ea1abd0b0a0d))
(fp_line (start -1.48 -2.23) (end 0 -2.23) (layer "F.CrtYd") (width 0.05) (tstamp 9fa50f42-0778-414e-80a5-be6ea027c650))
(fp_line (start -1.15 -1.55) (end -0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 064a14d4-7625-4c17-9926-3bc8bef61c95))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 096afd04-538e-4b21-921b-0720cfc0fc33))
(fp_line (start -1.15 0.05) (end -1.15 -1.55) (layer "F.Fab") (width 0.1) (tstamp 18918f47-bbcf-470e-91e3-9d9829868ca1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1bc36098-a67a-43e9-af34-67229b47b5d8))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 309e2839-3c95-45df-b7ac-fa723f3d94a2))
(fp_line (start -0.35 -1.55) (end -0.35 0.05) (layer "F.Fab") (width 0.1) (tstamp 3f642266-c43d-457e-a3d0-ae48d6438db5))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 450fd788-d806-48b1-a032-8afdc8273e6e))
(fp_line (start -0.35 0.05) (end -1.15 0.05) (layer "F.Fab") (width 0.1) (tstamp c3f25bab-d21c-43b9-bb4f-57d9b5e2645a))
(pad "1" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pinfunction "A") (pintype "passive") (tstamp 3ff9be75-0570-418f-a5fc-6ed51d4eae5c))
(pad "2" smd roundrect locked (at -0.75 0.0375 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "Net-(JP1-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 36f0c0d0-5fbc-41c5-b480-ee52e9c49a15))
(pad "2" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "Net-(JP1-Pad2)") (pinfunction "C") (pintype "passive") (tstamp b31efc5a-7b21-4ce8-b439-1c9342fcef4e))
(pad "3" smd roundrect locked (at -0.75 -1.5375 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pinfunction "B") (pintype "passive") (tstamp 9cf43076-18a1-462b-9c97-88acb00965fa))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.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")
(tedit 59FED5CC) (tstamp 87098d73-0d35-4a8f-aa7f-ade9272dc761)
(at 103.058666 122.383635)
(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" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/a5380759-2048-48cd-90dc-c41b428d1566")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1640d46a-7b95-494a-a3c3-b0b261a19a47)
)
(fp_text value "Prog" (at 0 12.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 217ee515-e912-4ae6-8a42-d81c2acad6e9)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8e1de856-3650-44fc-bdbc-9b70d85e955a)
)
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 09a9096a-4f3e-4a77-8f4f-7c94f154ea2a))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3bf6c4cb-12d1-495d-b55d-7f1619679ba0))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 506b942c-fbeb-4847-8520-f8720b149d93))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6ce3d4c4-29c5-47cb-bddc-00a2ea8c7f3d))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 798b47e8-b14a-4f4f-84da-a002440dd70e))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d661c0c1-9a29-454d-abcd-0bb868d39fe5))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 00aaae37-6741-4e78-ba23-839bde6cd36c))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2fb045bf-18db-49ea-b1e6-b2c67e776cd6))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 6f4d19c7-2bf8-466f-aea3-817c0c6defa6))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp aac0ddad-b98c-47f0-ae77-c37e73b396f7))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4b463a08-e787-4b7c-bdef-13b7b5a6299a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7f5bfe30-bd58-4f38-9ffd-bde746cbad1f))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 9ae3a0f1-ff5a-4683-a74e-f792bb59e8af))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp bdeff0b0-d3c0-4f4c-adfd-f5e15cc7775b))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp d3555311-f089-4336-bfb7-2413a4df2f08))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b7521029-4125-4ad1-beeb-31e5725fd477))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "TXD") (pinfunction "Pin_2") (pintype "passive") (tstamp e9fd5c3d-bba3-4119-8361-4bafa8b6c5bc))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "RXD") (pinfunction "Pin_3") (pintype "passive") (tstamp 18aa728f-b3a7-4593-924a-b6e09b1b3941))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "IO0") (pinfunction "Pin_4") (pintype "passive") (tstamp 170d8656-8d88-4f68-ae50-d715d5713f68))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "EN") (pinfunction "Pin_5") (pintype "passive") (tstamp c87281bb-6df9-4d8c-afed-43018d761098))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 8f38d61d-85a4-4a20-aa88-865d9c66b0b4)
(at 148.3 104)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/75f0cff3-53be-4003-b7ac-97d37d5c41b5")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 951f92e3-c509-40e8-964b-37dd7e0e82bf)
)
(fp_text value "M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f28095b2-5bdd-4916-8fd7-8ee2cde7e2ae)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f711db5e-77b0-4494-90e8-aecb55e572ba)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 0f28d312-e674-493b-bb0d-24fe0fb55a5f))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6ddca9c6-d93f-48af-8707-e3012416640e))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 24cb67fc-f0c9-4f6e-88c1-7636ab854c5e))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 290311ab-2acc-454a-9a59-6cba16c0a08d))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 2cad3fe2-0f3b-467e-9c49-f271aa1ec49b))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 58eb1f49-1e5e-4c0c-97da-fb971f13fe25))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp a76c0baf-6e69-4f8d-a142-018c46047833))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp b0f642eb-e44e-4747-9d08-48aa7b02d88d))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp b89754be-9738-4e5f-8e95-e260ee696903))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp b90d0267-ce26-4e19-a4c7-fd16cc7a521c))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp de6a8a79-ffb1-408e-99f7-331b8dd7ba96))
)
(footprint "Connector_Molex:Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B78AD89) (tstamp 95ef25aa-dac6-44d9-90a0-efd49308b704)
(at 149.4 128.7 90)
(descr "Molex PicoBlade series connector, 53261-0671 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/5e75135a-b1e1-4fa8-b578-3b8db5508ffb")
(attr smd)
(fp_text reference "J3" (at 0 -4.4 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9a8c7a6a-47f5-4759-b195-cb5b2186fe1c)
)
(fp_text value "SPI0" (at 0 3.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02fe7830-e856-472d-9dc9-dbb0dfb8d230)
)
(fp_text user "${REFERENCE}" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp e6bd474d-c274-4be4-826d-671799efd8e2)
)
(fp_line (start -4.735 2.26) (end -4.735 2.71) (layer "F.SilkS") (width 0.12) (tstamp 023ed51b-1c8d-4dcc-957f-194abcda38ea))
(fp_line (start -3.785 -1.71) (end -3.785 -3.2) (layer "F.SilkS") (width 0.12) (tstamp 340d18ca-a86b-4210-95fc-f6df6421652d))
(fp_line (start -4.735 -1.26) (end -4.735 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 352c5f65-5f4a-4cde-bd04-648895f9a231))
(fp_line (start -4.735 -1.71) (end -3.785 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 3bc202e2-eb76-4a11-829b-88c32c2ac96b))
(fp_line (start 4.735 -1.71) (end 3.785 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 76c7c3bd-d509-4e91-8194-45531f7f3aac))
(fp_line (start -4.735 2.71) (end 4.735 2.71) (layer "F.SilkS") (width 0.12) (tstamp 89e9caf1-5e77-4c2b-90ca-fc1323d1db36))
(fp_line (start 4.735 2.71) (end 4.735 2.26) (layer "F.SilkS") (width 0.12) (tstamp cd0c9986-0509-49e1-afcb-dfc49dd0af74))
(fp_line (start 4.735 -1.26) (end 4.735 -1.71) (layer "F.SilkS") (width 0.12) (tstamp e1273fc1-f901-4ee6-bad9-faae6a605543))
(fp_line (start 7.22 3.1) (end 7.22 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 1e928119-cc9b-4d2b-ba66-a008db0660fb))
(fp_line (start -7.22 -3.7) (end -7.22 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 5b0622e6-f66f-4f6f-935f-b5190ee4e6e3))
(fp_line (start 7.22 -3.7) (end -7.22 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 695a1845-0347-4c08-bd16-83907895d1c1))
(fp_line (start -7.22 3.1) (end 7.22 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 9bf51e3d-f1ce-4052-a53d-f14c0b1c3c61))
(fp_line (start -6.125 1.6) (end -6.125 2.2) (layer "F.Fab") (width 0.1) (tstamp 00f9f5d0-6133-453f-b026-b40fff95b833))
(fp_line (start -3.125 -0.892893) (end -2.625 -1.6) (layer "F.Fab") (width 0.1) (tstamp 05007046-4748-4be7-bab5-66107a65b629))
(fp_line (start -4.625 -1.6) (end 4.625 -1.6) (layer "F.Fab") (width 0.1) (tstamp 10f08cf5-bfe7-4d14-8ac9-5f0e5443f3b1))
(fp_line (start 6.125 -0.6) (end 6.325 -0.4) (layer "F.Fab") (width 0.1) (tstamp 33c9cd5a-0b16-4784-81bb-8053883c3557))
(fp_line (start -3.625 -1.6) (end -3.125 -0.892893) (layer "F.Fab") (width 0.1) (tstamp 442a97ad-64b6-4068-b29b-7aa5ecd79532))
(fp_line (start -6.125 2.2) (end -4.625 2.2) (layer "F.Fab") (width 0.1) (tstamp 76a331ca-95b2-43d5-b3fd-2b4a2c927cc0))
(fp_line (start 6.325 1.4) (end 6.125 1.6) (layer "F.Fab") (width 0.1) (tstamp 79fdc8ed-da89-488b-b2bb-bc3d9054618d))
(fp_line (start 4.625 -0.6) (end 6.125 -0.6) (layer "F.Fab") (width 0.1) (tstamp 8c1b4983-9763-4fa7-a50c-81ffb400f6d5))
(fp_line (start -4.625 -1.6) (end -4.625 2.6) (layer "F.Fab") (width 0.1) (tstamp 8ef50d9e-64f5-4e17-8519-d20a50206f12))
(fp_line (start 6.125 1.6) (end 6.125 2.2) (layer "F.Fab") (width 0.1) (tstamp 92325a49-a243-42dd-8200-86da24c16ea6))
(fp_line (start 6.125 2.2) (end 4.625 2.2) (layer "F.Fab") (width 0.1) (tstamp c768a2d1-0e72-428c-ad19-849abea74155))
(fp_line (start 4.625 -1.6) (end 4.625 2.6) (layer "F.Fab") (width 0.1) (tstamp c795f885-0eca-4fb2-a568-e2dfa934f8c2))
(fp_line (start -6.325 1.4) (end -6.125 1.6) (layer "F.Fab") (width 0.1) (tstamp d0923c7e-2382-4dc2-b2aa-27bf694de74c))
(fp_line (start -6.325 -0.4) (end -6.325 1.4) (layer "F.Fab") (width 0.1) (tstamp dab240a8-a6c4-4850-a87a-16f319081570))
(fp_line (start 6.325 -0.4) (end 6.325 1.4) (layer "F.Fab") (width 0.1) (tstamp e6a2718a-240f-4292-82fe-56c27996de6a))
(fp_line (start -4.625 2.6) (end 4.625 2.6) (layer "F.Fab") (width 0.1) (tstamp f1e68b79-88c8-4aaa-8224-375b46d91574))
(fp_line (start -6.125 -0.6) (end -6.325 -0.4) (layer "F.Fab") (width 0.1) (tstamp f2653518-ee2b-4507-a7d5-f6891b4a0ad9))
(fp_line (start -4.625 -0.6) (end -6.125 -0.6) (layer "F.Fab") (width 0.1) (tstamp f5a71fa9-e4d6-4ba5-9e60-1e546211d93a))
(pad "1" smd roundrect (at -3.125 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "Net-(JP1-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp b98ea6db-51da-4533-9606-07a493ce0a49))
(pad "2" smd roundrect (at -1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "CS0") (pinfunction "Pin_2") (pintype "passive") (tstamp cacb411a-e977-4882-a6ae-7c4cc189ce96))
(pad "3" smd roundrect (at -0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "SCK") (pinfunction "Pin_3") (pintype "passive") (tstamp 054cf3c3-5314-4f57-bf8b-984f653a5be3))
(pad "4" smd roundrect (at 0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "CIPO") (pinfunction "Pin_4") (pintype "passive") (tstamp 14c508c5-2759-45e1-a8a6-c4ecab466e96))
(pad "5" smd roundrect (at 1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "COPI") (pinfunction "Pin_5") (pintype "passive") (tstamp 45badfed-eaac-416c-9bd9-db8b3bb2c682))
(pad "6" smd roundrect (at 3.125 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp f42cb542-37df-40fc-84b0-0bdf3b672e3b))
(pad "MP" smd roundrect (at -5.675 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952)
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 8659a7bd-721d-4944-a790-2e3983ed7c4c))
(pad "MP" smd roundrect (at 5.675 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190480952)
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp deed97bd-67a0-44b1-8145-eb6a5df80008))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 63934434) (tstamp 9da855b0-f953-4d94-ac15-68c62fcf943f)
(at 104 139.25)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "room-sensor.kicad_sch")
(property "Sheetname" "")
(path "/335ecb09-9f7e-418f-9ea7-0fa441605c9a")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 3487b883-d132-4810-af37-6ee3794b3652)
)
(fp_text value "M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1a89e2c-c297-4307-a1ff-efd1e2a95a5d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5dfa8f9a-6e69-407d-b1ae-eb50492ca459)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8231f06e-2ee3-4905-af5e-c0d72e3085eb))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp e93b4aa0-7fe2-4b97-9fb5-c5458e04e006))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 2adbad2b-46af-4caa-a651-e9f024a9fb8b))
(pad "1" thru_hole circle (at 0 0.05) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 4cd38139-85d8-4bb0-8ec5-44fb4adb00fa))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 5b6af5a7-591e-4959-8c60-02f298d40677))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)