-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DesktopSensorHub.kicad_pcb
8578 lines (8523 loc) · 390 KB
/
DesktopSensorHub.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 4)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Submission/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "Net-(U2-LED_A)")
(net 4 "Net-(U3-EN)")
(net 5 "Net-(U1-XIN)")
(net 6 "Net-(C10-Pad2)")
(net 7 "+1V1")
(net 8 "Net-(D1-A1)")
(net 9 "Net-(J1-CC1)")
(net 10 "unconnected-(J1-SBU1-PadA8)")
(net 11 "Net-(J1-CC2)")
(net 12 "unconnected-(J1-SBU2-PadB8)")
(net 13 "Net-(J1-SHIELD)")
(net 14 "Net-(U1-QSPI_SS)")
(net 15 "/USB_D-")
(net 16 "/USB_D+")
(net 17 "Net-(U1-GPIO4)")
(net 18 "Net-(U1-RUN)")
(net 19 "Net-(U1-XOUT)")
(net 20 "Net-(U1-GPIO3)")
(net 21 "Net-(U1-GPIO2)")
(net 22 "unconnected-(U1-GPIO0-Pad2)")
(net 23 "unconnected-(U1-GPIO1-Pad3)")
(net 24 "unconnected-(U1-GPIO18-Pad29)")
(net 25 "unconnected-(U1-GPIO17-Pad28)")
(net 26 "unconnected-(U1-GPIO16-Pad27)")
(net 27 "unconnected-(U1-GPIO5-Pad7)")
(net 28 "unconnected-(U1-GPIO6-Pad8)")
(net 29 "unconnected-(U1-GPIO7-Pad9)")
(net 30 "unconnected-(U1-GPIO8-Pad11)")
(net 31 "unconnected-(U1-GPIO9-Pad12)")
(net 32 "unconnected-(U1-GPIO10-Pad13)")
(net 33 "unconnected-(U1-GPIO11-Pad14)")
(net 34 "unconnected-(U1-GPIO12-Pad15)")
(net 35 "unconnected-(U1-GPIO13-Pad16)")
(net 36 "unconnected-(U1-GPIO14-Pad17)")
(net 37 "unconnected-(U1-GPIO15-Pad18)")
(net 38 "unconnected-(U1-SWCLK-Pad24)")
(net 39 "unconnected-(U1-SWD-Pad25)")
(net 40 "unconnected-(U1-GPIO19-Pad30)")
(net 41 "unconnected-(U1-GPIO20-Pad31)")
(net 42 "unconnected-(U1-GPIO21-Pad32)")
(net 43 "unconnected-(U1-GPIO22-Pad34)")
(net 44 "unconnected-(U1-GPIO23-Pad35)")
(net 45 "unconnected-(U1-GPIO24-Pad36)")
(net 46 "unconnected-(U1-GPIO25-Pad37)")
(net 47 "unconnected-(U1-GPIO26_ADC0-Pad38)")
(net 48 "unconnected-(U1-GPIO27_ADC1-Pad39)")
(net 49 "unconnected-(U1-GPIO28_ADC2-Pad40)")
(net 50 "unconnected-(U1-GPIO29_ADC3-Pad41)")
(net 51 "Net-(U1-QSPI_SD3)")
(net 52 "Net-(U1-QSPI_SCLK)")
(net 53 "Net-(U1-QSPI_SD0)")
(net 54 "Net-(U1-QSPI_SD2)")
(net 55 "Net-(U1-QSPI_SD1)")
(net 56 "Net-(U2-LDR)")
(net 57 "unconnected-(U3-NC-Pad4)")
(net 58 "Net-(U1-USB_DM)")
(net 59 "Net-(U1-USB_DP)")
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tstamp 03d4dcb4-5bf7-4f50-9da5-fd0d93f6a19f)
(at 98.3 88.45)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8863c227-2474-498f-b3da-838a493832db)
)
(fp_text value "MountingHole_2.2mm_M2" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdde9d5f-18b2-4bb7-b469-f4010daee4e2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efd6eaed-66ce-469e-a3fe-94c68cb512f8)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 6291e004-6d8f-4ef4-ad30-d1f7455efa8f))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 3cd8ef63-629c-4547-b55c-05b971f9df5d))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 5ee29b05-b024-4a3d-8673-d59bdb6c8ea5))
)
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tstamp 1b2beb7e-bc63-4d7c-89df-3700477026ae)
(at 143 88.45)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8df5fb63-435d-403a-83db-f93fb5fb9f62)
)
(fp_text value "MountingHole_2.2mm_M2" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6432a26-3ef0-4692-a37e-e2dfa7787565)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d39a88ae-a57f-4660-a40d-ee2a1d9cb1d4)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 5a38279e-829c-48fa-8cf9-451687093f43))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9e14bfdf-047b-4206-8f92-c60bd2c9f53f))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 4f498cdd-3a2e-4ccf-a817-1f7e9ff2cde1))
)
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tstamp 5df636be-bf38-4eb0-a87e-4a3c37f665de)
(at 143 66.35)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46489ef5-0a90-4ddc-bd76-3bd76dd74002)
)
(fp_text value "MountingHole_2.2mm_M2" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff7604b2-1971-4e11-a01e-ceae08699954)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05ebd921-3aac-4cf3-b39e-b2cc1d3f1976)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp f463babb-cb3a-4d7d-aebb-9ecfd8eb9eee))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b36d7d05-a661-4a40-ac5a-f6e6d691d69d))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 93eb4484-c537-4d28-bd1f-ecae38814f87))
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (layer "F.Cu")
(tstamp 650ac784-3580-4bfe-8659-9607dddb5c35)
(at 141.055 74.3 180)
(descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a5ec3bda-50ac-42fd-a167-580be4267a7e")
(attr exclude_from_pos_files)
(fp_text reference "JMP1" (at -2.85 0.1 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 459e82dc-2eae-4cd5-b4e0-2e71c2334217)
)
(fp_text value "0" (at 0 1.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11859933-4a1a-4512-86f1-cfb9bf7992f8)
)
(fp_line (start -1.4 -1) (end 1.4 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d85e47cc-763b-4eb4-b9e7-e98b145ccbfe))
(fp_line (start -1.4 1) (end -1.4 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f236b0fc-357e-4402-9a15-47d152f5b720))
(fp_line (start 1.4 -1) (end 1.4 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3889c107-50af-430e-b0d8-bcae35646335))
(fp_line (start 1.4 1) (end -1.4 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0e04b4b-023c-4797-994a-bb50a78154d0))
(fp_line (start -1.65 -1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6e7e61d-8b05-471d-a37a-9852717626dd))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a423f341-cb77-4936-9851-53c010188a59))
(fp_line (start 1.65 1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e5ba4c6b-b20d-4b54-9f45-420de0af5126))
(fp_line (start 1.65 1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6300990-0b0f-43ef-b580-2c40541e2d8b))
(pad "1" smd custom (at -0.725 0 180) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 13 "Net-(J1-SHIELD)") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 1 0)
(xy 0.5 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp 53b00e75-1be0-43c8-ab0d-325c31f9827c))
(pad "2" smd custom (at 0.725 0 180) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.5 0.75)
(xy -0.65 0.75)
(xy -0.15 0)
(xy -0.65 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp 24b5289d-13c3-4940-af3c-672070201082))
)
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tstamp 953a9246-5871-4e2b-bffc-d3f2c3209db7)
(at 98.3 66.35)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afdba800-738a-4569-85d1-b8714b7a21aa)
)
(fp_text value "MountingHole_2.2mm_M2" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84dd934b-d158-4075-98de-1b45501cf7a8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0b79003-bbd0-4cee-aa77-a5cb7d1be58a)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 95faea63-20df-49d6-86b1-7b5cf85c4a54))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 3602945d-3aeb-46d1-8872-8c4206eeb18b))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 031546ed-7326-43d6-b0df-a749fe1ec41b))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp bc1bd4c7-3e9f-4107-b635-f8617b1ebbb5)
(at 113.2 82 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/81c45617-7c0f-4831-9875-7d1aaac872a8")
(attr smd)
(fp_text reference "C3" (at 0 -1.16 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8574d501-3189-4d98-ae15-54af9953f5a6)
)
(fp_text value "1u" (at 0 1.16 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33844ec9-9ce9-4ffc-b21a-4df6df12bd7c)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c3f2f878-30ac-4472-90aa-a0cd8ec2b2f9)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f4bfe7f-85d6-4644-987c-0604389f8637))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4120966d-2ae7-4f36-89f0-8e74df878843))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 171152c2-2aa0-4a66-88a5-8d2a602733b9))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68144d5f-458d-41d0-8d12-fd3e6cff6716))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbd2c580-9359-4ef5-ad3e-ea7f9e6fad6c))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18c82255-a081-4ff8-afe1-84c8b54d1f3f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b40fcca-e5c2-46bc-b2a0-651bb78ef640))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68501ee2-0af0-4872-a54f-6c5b9b8117ef))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0aab78f1-c2bb-4c01-ae6c-d65daa44261d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2752b9e2-0cab-44ed-aa53-9e8febc15744))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp a81df43e-80fd-40fe-b222-610b02fa7752))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f438f3c1-ad05-48bb-ad3b-8dd7433755e0))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp e0e1910c-0b0f-426b-9dca-429425d80283)
(at 111.2 86.8 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/6a2753b0-7125-42eb-bc90-9241a244933d")
(attr smd)
(fp_text reference "C4" (at 0 -1.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df416e9b-2f9d-47de-98cb-8afadd27d2bf)
)
(fp_text value "1u" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86a8da8c-71bc-43e0-a7db-52bdf337958c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 9c05e80e-2bd5-45be-9d41-471b60f4d6cc)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2ca8166-271c-4bed-ac48-d4b4fdb850a3))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5276e4a7-cff9-4404-a1f4-97e9f96bc600))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f58875c-06e7-4a3a-8f1a-130db41b8acc))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a18c2cb-bed9-402e-83b6-a6d5eb3cd958))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e4f2ab2-f368-4f80-9853-300ce404300f))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ec1fa2c-ee41-459e-92cb-13d73b2218d1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6911a08d-ea0d-40ad-b1d7-88dac32f454a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16051a0d-6530-4502-8e9a-90856d0777c1))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e122d88-a228-463a-a8be-2b7ad1a46d66))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77dacb9d-7b95-4d8b-a3f2-899472f54617))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U2-LED_A)") (pintype "passive") (tstamp 63f011e5-754d-4e72-be58-de373f025c96))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7094f5d7-d5d2-45e7-b6f0-9d5c70bdf074))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Sensor:Avago_APDS-9960" (layer "F.Cu")
(tstamp ec2e2e05-df77-43a8-a672-74faf4170066)
(at 113.9 85.8 -90)
(descr "Digital Proximity, Ambient Light, RGB and Gesture Sensor (https://docs.broadcom.com/doc/AV02-4191EN)")
(tags "DFN Sensor optical IR")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Digital Proximity, Ambient Light, RGB and Gesture Sensor")
(property "ki_keywords" "sensor gesture light rgb")
(path "/9af55157-b9cb-4a13-b3cd-938aaa09d505")
(attr smd)
(fp_text reference "U2" (at 0 -2 -90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c540901-d971-40da-b448-da1d0b607280)
)
(fp_text value "APDS-9960" (at 0 2.2 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e90fb4b-13f9-4f81-b340-265a88243e9c)
)
(fp_text user "D" (at -0.92 0 unlocked) (layer "Cmts.User") hide
(effects (font (size 0.2 0.2) (thickness 0.05)))
(tstamp 132278d6-bcae-4fce-9dcf-6286462674a0)
)
(fp_text user "LED" (at 1.43 0 unlocked) (layer "Cmts.User") hide
(effects (font (size 0.2 0.2) (thickness 0.05)))
(tstamp 4da89add-5387-41aa-859f-650304f07a5c)
)
(fp_text user "L" (at -1.27 0.35 unlocked) (layer "Cmts.User") hide
(effects (font (size 0.2 0.2) (thickness 0.05)))
(tstamp 864e4f20-a2cf-4af7-9f70-981c586dc8f2)
)
(fp_text user "U" (at -1.62 0 unlocked) (layer "Cmts.User") hide
(effects (font (size 0.2 0.2) (thickness 0.05)))
(tstamp 9aeb9473-7194-4989-91c5-1b8084c77e77)
)
(fp_text user "R" (at -1.27 -0.35 unlocked) (layer "Cmts.User") hide
(effects (font (size 0.2 0.2) (thickness 0.05)))
(tstamp cde77c8e-b241-481b-ab07-ab87558f1c27)
)
(fp_text user "${REFERENCE}" (at -0.4 0 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp e32cdc4b-8efc-462b-a2ff-fcbbacf7fa03)
)
(fp_line (start -1.97 1.29) (end 1.97 1.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fc486bf-f325-4c95-999d-fa71b3d6ddee))
(fp_line (start 1.97 -1.29) (end -1.47 -1.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93c90b85-5d61-485d-9cd7-fd158b5d7e27))
(fp_circle (center -1.27 0) (end -0.72 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "Cmts.User") (tstamp a6c8c83f-b1c2-47d6-9370-bfe24a70e384))
(fp_circle (center 1.43 0) (end 1.88 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "Cmts.User") (tstamp 83f3a595-0cbb-4cb3-8c79-1626384f3639))
(fp_rect (start 2.22 1.43) (end -2.22 -1.43)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0a84ef7b-c2b2-41a3-ab1a-b05a6dcdaa13))
(fp_line (start -1.97 -0.68) (end -1.97 1.18)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd3c63c7-a5ed-49ff-951d-1ae094f55d87))
(fp_line (start -1.97 1.18) (end 1.97 1.18)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0681693a-270b-426d-9ad4-42856b96ed43))
(fp_line (start -1.47 -1.18) (end -1.97 -0.68)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb8e1fc9-efe0-41da-b10e-b38ae982ea1b))
(fp_line (start 0.82 1.18) (end 0.82 -1.18)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 197c130a-5a21-4e88-ae77-d2bd7f922de7))
(fp_line (start 1.97 -1.18) (end -1.47 -1.18)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e63a9dd-ef7b-4644-b998-9b42fbdf023d))
(fp_line (start 1.97 -1.18) (end 1.97 1.18)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a7ddc3b-330b-4b71-b4d9-9d5c12048ad4))
(pad "1" smd rect (at -1.455 -0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(U1-GPIO3)") (pinfunction "SDA") (pintype "bidirectional") (tstamp 99e2c1f4-2be5-4911-a90f-72e98c18a82d))
(pad "2" smd rect (at -0.485 -0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(U1-GPIO4)") (pinfunction "INT") (pintype "open_collector") (tstamp 5edca51f-82a1-426e-a7a5-3414b677e56f))
(pad "3" smd rect (at 0.485 -0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "Net-(U2-LDR)") (pinfunction "LDR") (pintype "passive") (tstamp 7c692dc2-6e64-452a-926f-f46597c3a275))
(pad "4" smd rect (at 1.455 -0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "Net-(U2-LDR)") (pinfunction "LED_K") (pintype "passive") (tstamp 93638220-3fa5-4112-918c-136cc30cd64f))
(pad "5" smd rect (at 1.455 0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U2-LED_A)") (pinfunction "LED_A") (pintype "passive") (tstamp 4a0629ec-8b66-4df2-bd27-7a038d7c2b4a))
(pad "6" smd rect (at 0.485 0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f2c9e852-42f7-48b3-847a-f6405b8cd037))
(pad "7" smd rect (at -0.485 0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(U1-GPIO2)") (pinfunction "SCL") (pintype "input") (tstamp cf67e9f1-6e37-44b4-b276-a2303d32f17f))
(pad "8" smd rect (at -1.455 0.7 270) (size 0.72 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 765b5a12-d339-4b57-a625-d7fb8594fe3b))
(model "${KICAD7_3RD_PARTY}/snapeda/3dmodels/APDS-9960.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tstamp 0eaad9e2-73f8-4a44-a97f-78b79b330af6)
(at 136.4 67.5 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/0a7ca685-88e2-49a0-a7e8-307c0422bee3")
(attr smd)
(fp_text reference "C6" (at 2.4 -0.05 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 80002874-c911-42b6-ab7c-4bc194a6f665)
)
(fp_text value "10u" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e1a93a5a-b3d1-400a-82b0-b1463a83bc3e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp f0c02bcd-05e3-4cce-b1dd-7e0975c8b86d)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0d0e20eb-d6f4-4744-b614-1af33be95fd2))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 256a0ecf-a490-4c21-8c47-2878add84958))
(fp_line (start -1.7 -0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 56bd0849-4e37-477f-8051-9f86ee06b7a4))
(fp_line (start -1.7 0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1606579f-048c-4e33-9117-4f9f42b1b794))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ab659c2f-8f08-463b-a19b-d49498d9ca9d))
(fp_line (start 1.7 0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8fa42990-641d-45ef-a799-b17058683664))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 03ad3c2e-a1a4-464c-8769-7e2c29244cb5))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f9694771-4bf6-47fb-8fee-4817df7b941c))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7c8a618a-840e-4af4-b048-71069515cba3))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2055df77-39ba-4c7c-8f92-268e3d2298ad))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U3-EN)") (pintype "passive") (tstamp f2d858c1-5b53-4efa-a2f8-bd845f8d864d))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 520b0818-3438-4b3a-93d3-d5371ada250a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
(tstamp 0feeb142-cb75-4d37-b209-dc2cb539def9)
(at 115.6 69.72 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/755cf387-1dc4-45cc-824b-cbd680b3d0cb")
(attr smd)
(fp_text reference "C19" (at 3.1 0 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4932bf03-1c65-4477-99b1-6eef35b7fa52)
)
(fp_text value "100n" (at 0 -1.16 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5aa6fe1e-2149-4966-9541-c6d83e783f5f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
(tstamp cdeb6f02-c181-46bd-9fc8-b7d0b2118329)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dac1d03a-1a9c-4069-a8a6-ba615f3a8c7e))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6814eea5-365a-410e-8007-6b313609a4c8))
(fp_line (start -0.91 -0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9bfb2a9d-3af1-40b8-84f7-ee81c792e538))
(fp_line (start -0.91 0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 982065b9-84f0-40eb-b28b-446177f8f14b))
(fp_line (start 0.91 -0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2a8ede34-0b45-468a-862a-52cbc21e30a6))
(fp_line (start 0.91 0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 220f1ad5-9f0b-4358-91c2-e61b573f1a8f))
(fp_line (start -0.5 -0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 40974bdf-9c67-4d26-bd42-15bcdf554620))
(fp_line (start -0.5 0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f0174f90-87d6-40bb-9945-d8c5decc54e7))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e2d43908-66cd-4022-b6b4-1349f8f6d8c2))
(fp_line (start 0.5 0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e285c72c-dac3-4f71-8755-47e4c0cb286c))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp eb5128b4-1d96-4790-99cd-c958f9b837dc))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp bbc90a96-827a-4296-9e9e-6408ba5c0eb5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
(tstamp 16fcfbd2-9004-417b-bb26-6d4188b6f54e)
(at 109.9 80.35 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a523deef-d5e2-4a80-9ed5-a28456b27796")
(attr smd)
(fp_text reference "C17" (at 2.35 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 02cd3cc0-002a-4681-ae86-8b965110f35f)
)
(fp_text value "100n" (at 0 -1.16) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1f20cd73-dc8e-4a3d-964c-90e6d53f0fff)
)
(fp_text user "${REFERENCE}" (at 0 -0.05) (layer "B.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
(tstamp dd76bbc3-f623-4356-ab02-5f92689b585b)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2db59bb7-575d-42ce-96b7-866324e343e2))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1a2402f2-20f0-4a18-9d99-7815422fa12d))
(fp_line (start -0.91 -0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5fc4f60c-5d25-4879-8f3c-56b47b14d628))
(fp_line (start -0.91 0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 52e436c9-5735-43d3-944f-4c21dce26a8e))
(fp_line (start 0.91 -0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp da2ce79b-e8a9-4ab7-ab90-7546228f301b))
(fp_line (start 0.91 0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4d88d4f5-bd0c-4c92-8bfe-7dd9a8207e71))
(fp_line (start -0.5 -0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0caea930-74a7-4273-9a37-e8712b7b225d))
(fp_line (start -0.5 0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bca1bc28-dd60-40ab-9889-9b9c801b4276))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c2ba9e78-fd5e-4ab5-b3b6-d69212e59cdb))
(fp_line (start 0.5 0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ebe82ad3-195e-47a0-9eb5-bafbc58d53fc))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 9777a04c-9f49-4a0b-aa82-9d253a312cac))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 46e67d1a-3e43-47dd-8292-6b548d806366))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_HC49-SD" (layer "B.Cu")
(tstamp 26a79c8e-a48e-4402-82d2-09a9475ab9da)
(at 99.6 76.8 90)
(descr "SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package")
(tags "SMD SMT crystal")
(property "MPN" "ABLS-12.000MHZ-B4-T")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Two pin crystal")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/288fbba5-53d2-49eb-8ad4-211d381a05a2")
(attr smd)
(fp_text reference "Y1" (at 0.1 -0.35 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 80405286-61ce-42eb-ba60-f3b7c81e2ee9)
)
(fp_text value "12 MHZ" (at 0 -3.55 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 298829f3-b53d-4fa1-81d4-60de23787579)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bec08873-6072-42a4-a547-3ecea8376da6)
)
(fp_line (start -6.7 -2.55) (end 5.9 -2.55)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 595b3079-27da-4162-99ab-ef65e8480061))
(fp_line (start -6.7 2.55) (end -6.7 -2.55)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dde048f2-2b7b-453c-8126-25b4f825c358))
(fp_line (start 5.9 2.55) (end -6.7 2.55)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 29871dff-bf18-4601-9fde-aa51939a9695))
(fp_line (start -6.8 -2.6) (end 6.8 -2.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6ab61136-7628-47d4-8bb9-dd40380788ce))
(fp_line (start -6.8 2.6) (end -6.8 -2.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4c03422c-a5e5-4ee4-98dc-6b0bcfb2aa65))
(fp_line (start 6.8 -2.6) (end 6.8 2.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 94fb9653-2494-4876-bcc7-c01d87eca162))
(fp_line (start 6.8 2.6) (end -6.8 2.6)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e3c1d947-fc0e-4711-9e4c-924a65cafd0b))
(fp_line (start -5.7 -2.35) (end 5.7 -2.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0551dfeb-49e8-4b10-ad72-bbba72c334b9))
(fp_line (start -5.7 2.35) (end -5.7 -2.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4569c8b6-1cb3-4a64-ad9c-19ea6b5f648a))
(fp_line (start -3.015 -2.115) (end 3.015 -2.115)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c510cc02-3517-449c-8214-346cd7c7200e))
(fp_line (start -3.015 2.115) (end 3.015 2.115)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4439b4e1-9f5c-49be-ab68-f409c0741f56))
(fp_line (start 5.7 -2.35) (end 5.7 2.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e97df601-38c1-439f-82a9-f803e87977ab))
(fp_line (start 5.7 2.35) (end -5.7 2.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 401e9a32-b5e0-4351-9397-279873a74414))
(fp_arc (start -3.015 2.115) (mid -5.13 0) (end -3.015 -2.115)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7876e2b9-2ffb-4f7f-b986-139d993c7233))
(fp_arc (start 3.015 -2.115) (mid 5.13 0) (end 3.015 2.115)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eb028d18-3e86-4f23-af3d-2482d15b441d))
(pad "1" smd rect (at -4.25 0 90) (size 4.5 2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "Net-(U1-XIN)") (pinfunction "1") (pintype "passive") (tstamp 11e1933f-6701-4a81-9a35-8eaf928157e6))
(pad "2" smd rect (at 4.25 0 90) (size 4.5 2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "Net-(C10-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 296d4656-209b-4680-a312-ee465e2af203))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_HC49-SD.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-923" (layer "B.Cu")
(tstamp 28a0319f-afe5-4bba-b1cd-c23b5a82f20b)
(at 135.95 81.5)
(descr "https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4")
(tags "Diode SOD923")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "ESD protection diode, 3.3Vrwm, SOD-923")
(property "ki_keywords" "diode TVS ESD")
(path "/7d6bd9f9-59c4-41b2-8a78-3d402a53bc26")
(attr smd)
(fp_text reference "D1" (at 0 -1.1) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d43efab9-f5d7-4ea4-876f-271ec3764842)
)
(fp_text value "ESD9B3.3ST5G" (at 0 -1.2) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9d197d13-9fe2-453d-a273-e01fff7948fd)
)
(fp_text user "${REFERENCE}" (at 0 1.2) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d24717f4-af61-494a-ba58-608160a81eca)
)
(fp_line (start -0.86 0.4) (end -0.86 -0.4)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fdc4e887-146d-45db-8c59-54f841678e72))
(fp_line (start 0.5 -0.4) (end -0.86 -0.4)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 53223872-1550-4c21-8bda-1565ce981236))
(fp_line (start 0.5 0.4) (end -0.86 0.4)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0a9a5ca3-62ab-4857-bbda-1936ae60d858))
(fp_line (start -0.75 -0.28) (end -0.55 -0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ca6cbb37-ad35-4fce-b6b0-9deaf21c6293))
(fp_line (start -0.75 0.28) (end -0.75 -0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 42b4bfb9-551c-43eb-9ea6-4345ef100e8e))
(fp_line (start -0.55 -0.45) (end -0.55 -0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5c293e8f-9663-4d85-9f97-ddfe0c4484bb))
(fp_line (start -0.55 0.28) (end -0.75 0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d4dd5a07-9cf5-4123-99a5-d0da337235a5))
(fp_line (start -0.55 0.28) (end -0.55 0.45)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e3f3d834-485d-4c0e-b61d-1f0ba573081d))
(fp_line (start -0.55 0.45) (end 0.55 0.45)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fb0a24f7-0773-4130-91cf-14ff316a702c))
(fp_line (start 0.55 -0.45) (end -0.55 -0.45)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d6ee65f7-8523-4ba8-bb87-ae7df6e63e11))
(fp_line (start 0.55 -0.28) (end 0.55 -0.45)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 785767f7-4d3e-40e1-9934-e7544b77f6e7))
(fp_line (start 0.55 0.28) (end 0.75 0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e486e180-a31c-446d-af7d-5c2ff7e7764a))
(fp_line (start 0.55 0.45) (end 0.55 0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c77ddd98-98d3-4f50-8610-46d1079ca714))
(fp_line (start 0.75 -0.28) (end 0.55 -0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5d840618-1862-4c67-83a3-c6b180cb3058))
(fp_line (start 0.75 0.28) (end 0.75 -0.28)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6632edf5-ed3c-4f80-94d4-c32cb5935ba7))
(fp_line (start -0.4 -0.3) (end -0.4 0.3)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d98cb40f-7cc8-4b1c-aba3-e261079cdc77))
(fp_line (start -0.4 0.3) (end 0.4 0.3)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b08f2a12-484e-4c28-9985-b793fcb74868))
(fp_line (start -0.15 -0.2) (end -0.15 0.2)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3dfb5d81-49f5-4ba2-975d-9f925ee0e145))
(fp_line (start -0.15 0) (end -0.25 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bc0d082b-b877-443f-b16a-e257412b23d7))
(fp_line (start -0.15 0) (end 0.15 -0.2)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b33d058b-1577-4cbd-9675-aa420276ad46))
(fp_line (start 0.15 -0.2) (end 0.15 0.2)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9025ba4e-b328-4641-9c22-a2915f8f8a4c))
(fp_line (start 0.15 0) (end 0.25 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c9ef57ea-b013-4534-8c3e-8fc1b7667d99))
(fp_line (start 0.15 0.2) (end -0.15 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 24603bbc-f213-4b66-b523-75e8a1e345a6))
(fp_line (start 0.4 -0.3) (end -0.4 -0.3)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0cceace7-2f7c-403a-b1df-be0cd83b3c40))
(fp_line (start 0.4 0.3) (end 0.4 -0.3)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp db650ab5-33bf-463a-8125-18f79ca2f155))
(pad "1" smd roundrect (at -0.42 0 180) (size 0.36 0.25) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D1-A1)") (pinfunction "A1") (pintype "passive") (tstamp 7602120a-1ad8-469c-a253-3eead6b82fe7))
(pad "2" smd roundrect (at 0.42 0 180) (size 0.36 0.25) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "A2") (pintype "passive") (tstamp 23cb5fb5-fe46-4bb4-960c-13d17a9ab331))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-923.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tstamp 2d7e7283-98e0-47c9-85f5-cce26d63449d)
(at 106.35 72.55)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/3f395977-6b61-4e47-86e3-061234184d42")
(attr smd)
(fp_text reference "R6" (at 0 -1.15) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 15e11280-9d49-4417-9615-452a3879d069)
)
(fp_text value "10K" (at 0 -1.17) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0322d563-b3fb-426c-b124-e28c39bc6fef)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp 1b5ed63f-30ec-482b-9e73-7a7ec54f0d1a)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1d8e39cb-40dc-402c-995f-8ac702f88ecc))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 07b581f8-ab0a-416d-90ec-8e762afba6fc))
(fp_line (start -0.93 -0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cc9aa1c0-f88c-4bf2-bf40-1dd62f864fef))
(fp_line (start -0.93 0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b3be0838-38a3-4b29-8dc2-0e987c6e7ff5))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2c5cf93a-a4a9-46aa-bd5a-6586ecfe9199))
(fp_line (start 0.93 0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f792a1d2-e3c8-4dae-8add-3c3f46285ce4))
(fp_line (start -0.525 -0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eeaf8b73-65cc-4588-a195-5268ba30d484))
(fp_line (start -0.525 0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5afafb64-f433-4bea-8f3c-72f5730dd6b5))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3b36c147-85c5-4b8e-aabe-64d88672ef27))
(fp_line (start 0.525 0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7d6be51e-5431-4bde-8236-e7499d3e1bb1))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 36900b61-99e2-4068-b04e-17b8c38d49db))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(U1-RUN)") (pintype "passive") (tstamp 4e3f51a6-f7da-48bd-b250-04a070926f86))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tstamp 33af3edc-8f04-4f49-b68b-8df247fbf3cd)
(at 106.75 75.9)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a9ff50e0-c047-477f-b3c4-0e3832533e61")
(attr smd)
(fp_text reference "R7" (at 0 1.45 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e12624d5-26a9-477f-b06a-1c4a42b4257a)
)
(fp_text value "1K" (at 0 -1.17) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ba6fe23a-7ead-4a52-9844-4181ad4fed41)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") hide
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp 3de62a16-ff1e-4198-8e88-7e1259d9cb84)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp af06b85d-b00e-4a0e-9e96-7f89812ac36c))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 91ffd672-4248-41a8-b9f6-d73de83437bf))
(fp_line (start -0.93 -0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 863119a4-4365-4b22-ba3f-5efb58b8fbfc))
(fp_line (start -0.93 0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5fa031c7-d6de-49ea-9850-94fb5d171410))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bf4090b5-a89b-4b7a-8f1c-ee7ca74493de))
(fp_line (start 0.93 0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp aa582ee7-0d28-49fd-ae06-9a08a2bdceb3))
(fp_line (start -0.525 -0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d8614e46-3b2b-41dd-8f49-28dc48fa67e0))
(fp_line (start -0.525 0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 75ff8da5-7b31-42d9-bf1e-c541ef1af4c4))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9b0623ce-8583-4a68-8303-46ab588a3c9f))
(fp_line (start 0.525 0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 766583e0-e14a-43c7-bae0-acdae989fe09))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C10-Pad2)") (pintype "passive") (tstamp 9b2a22ad-752c-45c0-8f5a-fcde4c4cbe16))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(U1-XOUT)") (pintype "passive") (tstamp 9e258f7c-3ab8-4d55-95e8-458d1a013665))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tstamp 4291af40-b1a7-4c9a-8b8e-00004ebfe229)
(at 136.7 72.5 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/f8f1aa14-f7cd-4e48-b0bb-5996180e1577")
(attr smd)
(fp_text reference "R11" (at 1 1.1) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2990386f-8a62-40a6-8446-362eed6b39f8)
)
(fp_text value "5.1K" (at 0 1) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 25130a54-4ced-4554-88ab-7fff5fea31c3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") hide
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp 81513ff3-1bd4-4f55-8ce6-d2b4bbe02ecf)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 668ba750-b678-44d5-8624-340ae313cbfc))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f6e72710-f329-4a1f-903a-e6b4937bbd9b))
(fp_line (start -0.93 -0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7fdc2114-8877-4d31-9614-847d5bd71525))
(fp_line (start -0.93 0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8e4906d2-701e-4a6c-b46a-c288b10a6c2f))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 526a010d-cfbe-4cdb-bf81-2c3de38f8091))
(fp_line (start 0.93 0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6202b4a3-5cd3-432b-a066-4d4032e0d3ca))
(fp_line (start -0.525 -0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 23553fac-9594-4c9c-89dc-53e8b612efde))
(fp_line (start -0.525 0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1dd646b9-c8a6-49fd-b950-738c55f352e5))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 935e1065-ed9e-4c90-99d2-6c4e11f4314c))
(fp_line (start 0.525 0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ef8ece65-768c-4c50-9e80-3d92d67a6366))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(J1-CC1)") (pintype "passive") (tstamp a24e8c4f-efba-45ad-88fa-29a96ae49b62))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 46920a1a-a8ae-474c-9da1-44cc2fcf0a56))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
(tstamp 45e5c093-d8a3-4110-bbf9-d7d6c37f82fd)
(at 103.05 78.05 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "DesktopSensorHub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/69651e36-2bae-476a-8438-5c78e8d25482")
(attr smd)
(fp_text reference "C9" (at -0.15 1.15 270) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))