-
Notifications
You must be signed in to change notification settings - Fork 0
/
co2-uhat.kicad_pcb
11492 lines (11461 loc) · 424 KB
/
co2-uhat.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Anavi Infra pHAT")
(date "2017-01-21")
(company "Anavi Technology")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010e0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plots/rev10-bg/")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "GND")
(net 3 "+5V")
(net 4 "Net-(JP1-Pad1)")
(net 5 "Net-(R2-Pad2)")
(net 6 "Net-(R3-Pad2)")
(net 7 "Net-(R6-Pad2)")
(net 8 "Net-(R7-Pad2)")
(net 9 "Net-(D1-Pad2)")
(net 10 "Net-(D2-Pad2)")
(net 11 "Net-(R4-Pad2)")
(net 12 "Net-(R5-Pad2)")
(net 13 "unconnected-(RASP_CONN1-Pad7)")
(net 14 "Net-(RASP_CONN1-Pad8)")
(net 15 "Net-(RASP_CONN1-Pad10)")
(net 16 "unconnected-(RASP_CONN1-Pad11)")
(net 17 "unconnected-(RASP_CONN1-Pad12)")
(net 18 "unconnected-(RASP_CONN1-Pad13)")
(net 19 "unconnected-(RASP_CONN1-Pad15)")
(net 20 "unconnected-(RASP_CONN1-Pad16)")
(net 21 "unconnected-(RASP_CONN1-Pad18)")
(net 22 "unconnected-(RASP_CONN1-Pad19)")
(net 23 "unconnected-(RASP_CONN1-Pad21)")
(net 24 "unconnected-(RASP_CONN1-Pad22)")
(net 25 "unconnected-(RASP_CONN1-Pad23)")
(net 26 "unconnected-(RASP_CONN1-Pad24)")
(net 27 "unconnected-(RASP_CONN1-Pad26)")
(net 28 "unconnected-(RASP_CONN1-Pad32)")
(net 29 "unconnected-(RASP_CONN1-Pad33)")
(net 30 "unconnected-(RASP_CONN1-Pad35)")
(net 31 "unconnected-(RASP_CONN1-Pad36)")
(net 32 "unconnected-(RASP_CONN1-Pad37)")
(net 33 "unconnected-(RASP_CONN1-Pad38)")
(net 34 "unconnected-(RASP_CONN1-Pad40)")
(net 35 "unconnected-(U2-Pad9)")
(net 36 "unconnected-(U2-Pad8)")
(net 37 "unconnected-(U2-Pad5)")
(net 38 "unconnected-(U2-Pad4)")
(net 39 "unconnected-(U2-Pad1)")
(footprint "Capacitors_SMD:C_0603_HandSoldering" (layer "F.Cu")
(tedit 588FBDB9) (tstamp 00000000-0000-0000-0000-000058831703)
(at 198.12 86.868 90)
(descr "Capacitor SMD 0603, hand soldering")
(tags "capacitor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000056fb5967")
(attr smd)
(fp_text reference "C1" (at -0.06 1.93 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6)
)
(fp_text value "0.1" (at 0 1.9 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934)
)
(fp_line (start 0.35 0.6) (end -0.35 0.6) (layer "F.SilkS") (width 0.15) (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer "F.SilkS") (width 0.15) (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(fp_line (start 1.85 -0.75) (end 1.85 0.75) (layer "F.CrtYd") (width 0.05) (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(fp_line (start -1.85 -0.75) (end 1.85 -0.75) (layer "F.CrtYd") (width 0.05) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start -1.85 -0.75) (end -1.85 0.75) (layer "F.CrtYd") (width 0.05) (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(fp_line (start -1.85 0.75) (end 1.85 0.75) (layer "F.CrtYd") (width 0.05) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(pad "1" smd rect locked (at -0.95 0 90) (size 1.2 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(pad "2" smd rect locked (at 0.95 0 90) (size 1.2 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(model "Capacitors_SMD.3dshapes/C_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x02" (layer "F.Cu")
(tedit 588FBD9A) (tstamp 00000000-0000-0000-0000-00005883171b)
(at 209.97 94.1)
(descr "Through hole pin header")
(tags "pin header")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000570c5478")
(attr through_hole)
(fp_text reference "JP1" (at 2.63 1.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455)
)
(fp_text value "JUMPER" (at 0 -3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae)
)
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer "F.SilkS") (width 0.15) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer "F.SilkS") (width 0.15) (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer "F.SilkS") (width 0.15) (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp e8314017-7be6-4011-9179-37449a29b311))
(pad "1" thru_hole rect locked (at 0 0) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 4 "Net-(JP1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl"
(offset (xyz 0 -1.269999981 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 588FBDA0) (tstamp 00000000-0000-0000-0000-000058831728)
(at 198.2216 93.218 -90)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000056fb57dd")
(attr smd)
(fp_text reference "R1" (at 0 -1.9 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(fp_text value "1K" (at 0 1.9 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(pad "1" smd rect locked (at -1.1 0 270) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(pad "2" smd rect locked (at 1.1 0 270) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(JP1-Pad1)") (pintype "passive") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 588FBDA5) (tstamp 00000000-0000-0000-0000-00005883172e)
(at 186.944 86.106)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000056fb589d")
(attr smd)
(fp_text reference "R2" (at 0 -1.7) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(fp_text value "4.7K" (at 0 1.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(R2-Pad2)") (pintype "passive") (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 588FBDAE) (tstamp 00000000-0000-0000-0000-000058831734)
(at 192.829 86.106 180)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000056fb5912")
(attr smd)
(fp_text reference "R3" (at 0 1.636) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
)
(fp_text value "4.7K" (at 0 1.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(R3-Pad2)") (pintype "passive") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_2x20" (layer "F.Cu")
(tedit 588FBD82) (tstamp 00000000-0000-0000-0000-000058831778)
(at 156.85 79.8 90)
(descr "Through hole pin header")
(tags "pin header")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000056fb7c7a")
(attr through_hole)
(fp_text reference "RASP_CONN1" (at 0 -5.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb)
)
(fp_text value "Raspberry_PI" (at 0 -3.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)
)
(fp_line (start 3.81 49.53) (end 3.81 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start 3.81 -1.27) (end 1.27 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start -1.27 1.27) (end -1.27 49.53) (layer "F.SilkS") (width 0.15) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -1.55 -1.55) (end -1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(fp_line (start 3.81 49.53) (end -1.27 49.53) (layer "F.SilkS") (width 0.15) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(fp_line (start -1.75 -1.75) (end -1.75 50.05) (layer "F.CrtYd") (width 0.05) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start -1.75 50.05) (end 4.3 50.05) (layer "F.CrtYd") (width 0.05) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 4.3 -1.75) (end 4.3 50.05) (layer "F.CrtYd") (width 0.05) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start -1.75 -1.75) (end 4.3 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "VDD(3.3V)") (pintype "input") (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 3 "+5V") (pinfunction "VPP(5V)") (pintype "input") (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(R4-Pad2)") (pinfunction "GPIO2/I2C1_SDA") (pintype "input") (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 3 "+5V") (pinfunction "Vpp(5V)") (pintype "input") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 12 "Net-(R5-Pad2)") (pinfunction "GPIO3/I2C1_SCL") (pintype "input") (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 13 "unconnected-(RASP_CONN1-Pad7)") (pinfunction "GPIO4/GPCLK0") (pintype "input+no_connect") (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(pad "8" thru_hole oval locked (at 2.54 7.62 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 14 "Net-(RASP_CONN1-Pad8)") (pinfunction "GPIO14/UART_TXD") (pintype "input") (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(pad "10" thru_hole oval locked (at 2.54 10.16 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 15 "Net-(RASP_CONN1-Pad10)") (pinfunction "GPIO15/UART_RXD") (pintype "input") (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 16 "unconnected-(RASP_CONN1-Pad11)") (pinfunction "GPIO17") (pintype "input+no_connect") (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(pad "12" thru_hole oval locked (at 2.54 12.7 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 17 "unconnected-(RASP_CONN1-Pad12)") (pinfunction "GPIO18/PCM_CLK") (pintype "input+no_connect") (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(pad "13" thru_hole oval locked (at 0 15.24 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 18 "unconnected-(RASP_CONN1-Pad13)") (pinfunction "GPIO27") (pintype "input+no_connect") (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(pad "14" thru_hole oval locked (at 2.54 15.24 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(pad "15" thru_hole oval locked (at 0 17.78 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 19 "unconnected-(RASP_CONN1-Pad15)") (pinfunction "GPIO22") (pintype "input+no_connect") (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(pad "16" thru_hole oval locked (at 2.54 17.78 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 20 "unconnected-(RASP_CONN1-Pad16)") (pinfunction "GPIO23") (pintype "input+no_connect") (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(pad "17" thru_hole oval locked (at 0 20.32 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "VDD(3.3V)") (pintype "input") (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(pad "18" thru_hole oval locked (at 2.54 20.32 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 21 "unconnected-(RASP_CONN1-Pad18)") (pinfunction "GPIO24") (pintype "input+no_connect") (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(pad "19" thru_hole oval locked (at 0 22.86 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 22 "unconnected-(RASP_CONN1-Pad19)") (pinfunction "GPIO10/SPI_MOSI") (pintype "input+no_connect") (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(pad "20" thru_hole oval locked (at 2.54 22.86 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(pad "21" thru_hole oval locked (at 0 25.4 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 23 "unconnected-(RASP_CONN1-Pad21)") (pinfunction "GPIO9/SPI_MISO") (pintype "input+no_connect") (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(pad "22" thru_hole oval locked (at 2.54 25.4 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 24 "unconnected-(RASP_CONN1-Pad22)") (pinfunction "GPIO25") (pintype "input+no_connect") (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(pad "23" thru_hole oval locked (at 0 27.94 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 25 "unconnected-(RASP_CONN1-Pad23)") (pinfunction "GPIO11/SPI_SCLK") (pintype "input+no_connect") (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(pad "24" thru_hole oval locked (at 2.54 27.94 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 26 "unconnected-(RASP_CONN1-Pad24)") (pinfunction "GPIO8/SPI_CE0") (pintype "input+no_connect") (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(pad "25" thru_hole oval locked (at 0 30.48 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(pad "26" thru_hole oval locked (at 2.54 30.48 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 27 "unconnected-(RASP_CONN1-Pad26)") (pinfunction "GPIO7/SPI_CE1") (pintype "input+no_connect") (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(pad "27" thru_hole oval locked (at 0 33.02 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 6 "Net-(R3-Pad2)") (pinfunction "ID_SD") (pintype "input") (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(pad "28" thru_hole oval locked (at 2.54 33.02 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 5 "Net-(R2-Pad2)") (pinfunction "ID_SC") (pintype "input") (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(pad "29" thru_hole oval locked (at 0 35.56 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 7 "Net-(R6-Pad2)") (pinfunction "GPIO5/GPCLK1") (pintype "input") (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(pad "30" thru_hole oval locked (at 2.54 35.56 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(pad "31" thru_hole oval locked (at 0 38.1 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 8 "Net-(R7-Pad2)") (pinfunction "GPIO6/GPCLK2") (pintype "input") (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "32" thru_hole oval locked (at 2.54 38.1 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 28 "unconnected-(RASP_CONN1-Pad32)") (pinfunction "GPIO12/PWM0") (pintype "input+no_connect") (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(pad "33" thru_hole oval locked (at 0 40.64 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 29 "unconnected-(RASP_CONN1-Pad33)") (pinfunction "GPIO13/PWM1") (pintype "input+no_connect") (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(pad "34" thru_hole oval locked (at 2.54 40.64 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(pad "35" thru_hole oval locked (at 0 43.18 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 30 "unconnected-(RASP_CONN1-Pad35)") (pinfunction "GPIO19/PCM_FS") (pintype "input+no_connect") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(pad "36" thru_hole oval locked (at 2.54 43.18 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 31 "unconnected-(RASP_CONN1-Pad36)") (pinfunction "GPIO16") (pintype "input+no_connect") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(pad "37" thru_hole oval locked (at 0 45.72 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 32 "unconnected-(RASP_CONN1-Pad37)") (pinfunction "GPIO26") (pintype "input+no_connect") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(pad "38" thru_hole oval locked (at 2.54 45.72 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 33 "unconnected-(RASP_CONN1-Pad38)") (pinfunction "GPIO20/PCM_DIN") (pintype "input+no_connect") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(pad "39" thru_hole oval locked (at 0 48.26 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(pad "40" thru_hole oval locked (at 2.54 48.26 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 34 "unconnected-(RASP_CONN1-Pad40)") (pinfunction "GPIO21/PCM_DOUT") (pintype "input+no_connect") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_2x20.wrl"
(offset (xyz 1.269999981 -24.12999964 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Housings_DIP:DIP-8_W7.62mm" (layer "F.Cu")
(tedit 588FBD0C) (tstamp 00000000-0000-0000-0000-00005883179c)
(at 184.9986 100.5232 90)
(descr "8-lead dip package, row spacing 7.62 mm (300 mils)")
(tags "dil dip 2.54 300")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000056fb5761")
(attr through_hole)
(fp_text reference "U1" (at 0 -5.22 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)
)
(fp_text value "CAT24C32WI-GT3" (at 0 -3.72 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)
)
(fp_line (start 0.135 -2.295) (end 0.135 -1.025) (layer "F.SilkS") (width 0.15) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(fp_line (start 7.485 9.915) (end 7.485 8.645) (layer "F.SilkS") (width 0.15) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(fp_line (start 7.485 -2.295) (end 7.485 -1.025) (layer "F.SilkS") (width 0.15) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(fp_line (start 0.135 9.915) (end 7.485 9.915) (layer "F.SilkS") (width 0.15) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(fp_line (start 0.135 9.915) (end 0.135 8.645) (layer "F.SilkS") (width 0.15) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(fp_line (start 0.135 -1.025) (end -0.8 -1.025) (layer "F.SilkS") (width 0.15) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(fp_line (start 0.135 -2.295) (end 7.485 -2.295) (layer "F.SilkS") (width 0.15) (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(fp_line (start -1.05 -2.45) (end 8.65 -2.45) (layer "F.CrtYd") (width 0.05) (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(fp_line (start 8.65 -2.45) (end 8.65 10.1) (layer "F.CrtYd") (width 0.05) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(fp_line (start -1.05 -2.45) (end -1.05 10.1) (layer "F.CrtYd") (width 0.05) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(fp_line (start -1.05 10.1) (end 8.65 10.1) (layer "F.CrtYd") (width 0.05) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(pad "1" thru_hole oval locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "A0") (pintype "input") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "A1") (pintype "input") (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "A2") (pintype "input") (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "VSS") (pintype "input") (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(pad "5" thru_hole oval locked (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 6 "Net-(R3-Pad2)") (pinfunction "SDA") (pintype "input") (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(pad "6" thru_hole oval locked (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 5 "Net-(R2-Pad2)") (pinfunction "SCL") (pintype "input") (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "7" thru_hole oval locked (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 4 "Net-(JP1-Pad1)") (pinfunction "WP") (pintype "input") (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(pad "8" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "VCC") (pintype "input") (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(model "Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCDB) (tstamp 00000000-0000-0000-0000-0000588c38c3)
(at 152 78.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF1" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(pad "1" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCD6) (tstamp 00000000-0000-0000-0000-0000588c38d0)
(at 210 78.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF2" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 2d67a417-188f-4014-9282-000265d80009))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(pad "2" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCC1) (tstamp 00000000-0000-0000-0000-0000588c398a)
(at 210 101.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF3" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a13ab237-8f8d-4e16-8c47-4440653b8534)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(pad "3" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
)
(footprint "Mounting_Holes:MountingHole_2.7mm_M2.5_DIN965_Pad" (layer "F.Cu")
(tedit 588FBCE4) (tstamp 00000000-0000-0000-0000-0000588c39a5)
(at 152 101.5)
(descr "Mounting Hole 2.7mm, M2.5, DIN965")
(tags "mounting hole 2.7mm m2.5 din965")
(attr through_hole)
(fp_text reference "REF4" (at 0 -3.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba)
)
(fp_text value "MountingHole_2.7mm_M2.5_DIN965_Pad" (at 0 3.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8087f566-a94d-4bbc-985b-e49ee7762296)
)
(fp_circle (center 0 0) (end 2.35 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(fp_circle (center 0 0) (end 2.6 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(pad "4" thru_hole circle locked (at 0 0) (size 4.7 4.7) (drill 2.7) (layers *.Cu *.Mask "F.SilkS") (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005e278287)
(at 164.676 83.566 180)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000570c0bd5")
(attr smd)
(fp_text reference "R5" (at 0.006 1.476) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)
)
(fp_text value "4.7K" (at -1.7 -1.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(R5-Pad2)") (pintype "passive") (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 5E278505) (tstamp 00000000-0000-0000-0000-00005e27829a)
(at 165.395 102.16 -90)
(descr "Through hole pin header")
(tags "pin header")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e288893")
(attr through_hole)
(fp_text reference "DISPLAY" (at 0 -2.745 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp 309b3bff-19c8-41ec-a84d-63399c649f46)
)
(fp_text value "DISPLAY1" (at 2.775 1.675) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
)
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(pad "1" thru_hole rect locked (at 0 0 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(R4-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 12 "Net-(R5-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "Pin_3") (pintype "passive") (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 588FBD33) (tstamp 00000000-0000-0000-0000-00005e278d68)
(at 161.998 95.91 180)
(descr "Through hole pin header")
(tags "pin header")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005752a123")
(attr through_hole)
(fp_text reference "SENS2" (at 0 -5.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17)
)
(fp_text value "I2C_SENS_1" (at 0 -3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)
)
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(pad "1" thru_hole rect locked (at 0 0 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "VIN") (pintype "input") (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 12 "Net-(R5-Pad2)") (pinfunction "SCL") (pintype "input") (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(R4-Pad2)") (pinfunction "SDA") (pintype "input") (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 588FBD12) (tstamp 00000000-0000-0000-0000-00005e278da4)
(at 167.078 95.91 180)
(descr "Through hole pin header")
(tags "pin header")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005752a2f7")
(attr through_hole)
(fp_text reference "SENS3" (at 0 -5.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)
)
(fp_text value "I2C_SENS_1" (at 0 -3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)
)
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(pad "1" thru_hole rect locked (at 0 0 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "VIN") (pintype "input") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 12 "Net-(R5-Pad2)") (pinfunction "SCL") (pintype "input") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(R4-Pad2)") (pinfunction "SDA") (pintype "input") (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x04" (layer "F.Cu")
(tedit 588FBD3A) (tstamp 00000000-0000-0000-0000-00005e278de0)
(at 156.918 95.91 180)
(descr "Through hole pin header")
(tags "pin header")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005704a9c3")
(attr through_hole)
(fp_text reference "SENS1" (at 0 -5.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da)
)
(fp_text value "I2C_SENS_1" (at 0 -3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)
)
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(fp_line (start 1.27 1.27) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer "F.SilkS") (width 0.15) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(fp_line (start -1.27 8.89) (end 1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer "F.SilkS") (width 0.15) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(fp_line (start -1.27 1.27) (end -1.27 8.89) (layer "F.SilkS") (width 0.15) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(fp_line (start -1.75 -1.75) (end -1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(fp_line (start 1.75 -1.75) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(fp_line (start -1.75 9.4) (end 1.75 9.4) (layer "F.CrtYd") (width 0.05) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "1" thru_hole rect locked (at 0 0 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+3V3") (pinfunction "VIN") (pintype "input") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 12 "Net-(R5-Pad2)") (pinfunction "SCL") (pintype "input") (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(R4-Pad2)") (pinfunction "SDA") (pintype "input") (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(model "Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl"
(offset (xyz 0 -3.809999943 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005e279829)
(at 159.342 83.566)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000570c0762")
(attr smd)
(fp_text reference "R4" (at -0.012 -1.506) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)
)
(fp_text value "4.7K" (at -1.542 1.584) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82be7aae-5d06-4178-8c3e-98760c41b054)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(R4-Pad2)") (pintype "passive") (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000060d2588d)
(at 210.0056 89.62 90)
(descr "LED SMD 1206 (3216 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 "diode")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d32733")
(attr smd)
(fp_text reference "D1" (at 0.15 2.1 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
)
(fp_text value "KP-3216EC" (at -0.05 -2 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580)
)
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp 00e38d63-5436-49db-81f5-697421f168fc))
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
(pad "1" smd roundrect locked (at -1.4 0 90) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb))
(pad "2" smd roundrect locked (at 1.4 0 90) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 9 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000060d258a0)
(at 209.9556 83.82 90)
(descr "LED SMD 1206 (3216 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 "diode")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d32d35")
(attr smd)
(fp_text reference "D2" (at 0 2.05 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde)
)
(fp_text value "KP-3216SGC" (at -0.1 -1.95 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 71f92193-19b0-44ed-bc7f-77535083d769)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
)
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(pad "1" smd roundrect locked (at -1.4 0 90) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83))
(pad "2" smd roundrect locked (at 1.4 0 90) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 10 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-000060d258ac)
(at 204.1652 97.7392 180)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d2c5c4")
(attr smd)
(fp_text reference "R6" (at 2.95 0.05 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp cc15f583-a41b-43af-ba94-a75455506a96)
)
(fp_text value "270R" (at 0.2752 -1.6808 180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 1199146e-a60b-416a-b503-e77d6d2892f9)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(D1-Pad2)") (pintype "passive") (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(R6-Pad2)") (pintype "passive") (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-000060d258b8)
(at 204.0968 84.4296 180)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d2b963")
(attr smd)
(fp_text reference "R7" (at 2.85 -0.05 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
)
(fp_text value "270R" (at -0.0132 1.5696 180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(D2-Pad2)") (pintype "passive") (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(R7-Pad2)") (pintype "passive") (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "logo:anavi-logo" (layer "F.Cu")
(tedit 588538F6) (tstamp 00000000-0000-0000-0000-000060d2bd4a)
(at 151.2316 96.1136 90)
(attr through_hole)
(fp_text reference "" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb)
)
(fp_text value "LOGO" (at 0.75 0 90) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372)
)
(fp_poly (pts
(xy 1.693334 1.693334)
(xy -1.693333 1.693334)
(xy -1.693333 -1.524)
(xy -1.185333 -1.524)
(xy -1.185333 1.185334)
(xy 1.439334 1.185334)
(xy 1.439334 -1.524)
(xy -1.185333 -1.524)
(xy -1.693333 -1.524)
(xy -1.693333 -1.778)
(xy 1.693334 -1.778)
(xy 1.693334 1.693334)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
)
(footprint "mh-z19:Winsen_MH-Z19B" (layer "F.Cu")
(tedit 64D1783E) (tstamp b44dfd56-9f75-4375-bfb1-0c583048d194)
(at 175.3553 100.8898 180)
(property "Sheetfile" "co2-uhat.kicad_sch")
(property "Sheetname" "")
(path "/bbec963a-8c15-4b18-bbd7-48eb862eb055")
(attr through_hole)
(fp_text reference "U2" (at 0.0153 1.5798) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91642b02-a1e3-45f1-86d5-e95c74a72c2a)
)
(fp_text value "MH-Z19B" (at -19.05 0.762) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33878cb0-de93-49ba-844f-9667b0ba12b2)
)
(fp_line (start -1.27 2.54) (end 1.27 2.54) (layer "F.SilkS") (width 0.15) (tstamp 08ea73d9-b82c-41dc-bb2a-d12314dfd682))
(fp_line (start -27.75 4.75) (end -30.65 4.75) (layer "F.SilkS") (width 0.15) (tstamp 29c8103b-55df-4ba7-bb30-27604469a02c))
(fp_line (start 1.27 15.24) (end -1.27 15.24) (layer "F.SilkS") (width 0.15) (tstamp 2b1ccc34-c439-431e-a579-6de321c72079))
(fp_line (start 1.27 2.54) (end 1.275 15.24) (layer "F.SilkS") (width 0.15) (tstamp 49155c9e-7231-4c58-a78b-200933cd83a4))
(fp_line (start -1.27 2.54) (end -1.27 15.24) (layer "F.SilkS") (width 0.12) (tstamp 62b05cc2-d33e-48a4-b819-5e122810ce5b))
(fp_line (start -27.75 4.75) (end -27.75 15.24) (layer "F.SilkS") (width 0.12) (tstamp 8c0309b7-1547-471d-a438-26fc16faedb6))
(fp_line (start -30.65 4.75) (end -30.65 15.24) (layer "F.SilkS") (width 0.15) (tstamp dc05fe33-69eb-4ea0-b860-d8aaa13c1628))
(fp_line (start -30.65 15.24) (end -27.75 15.24) (layer "F.SilkS") (width 0.15) (tstamp decc1120-527f-4db0-bbf7-5cd6825d374e))
(pad "1" thru_hole rect (at 0 13.97 180) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 39 "unconnected-(U2-Pad1)") (pinfunction "Vout") (pintype "power_out+no_connect") (tstamp fccf2c44-52fa-4770-b86c-c998258c418e))
(pad "2" thru_hole circle (at 0 11.43 180) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 14 "Net-(RASP_CONN1-Pad8)") (pinfunction "RXD") (pintype "input") (tstamp 35766383-03d6-4f8b-9c16-d16020f426e2))
(pad "3" thru_hole circle (at 0 8.89 180) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 15 "Net-(RASP_CONN1-Pad10)") (pinfunction "TXD") (pintype "output") (tstamp a6522efe-efaa-4294-8978-e8c504504a39))
(pad "4" thru_hole circle (at 0 6.35 180) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)