-
Notifications
You must be signed in to change notification settings - Fork 151
/
parasite.kicad_pcb
8998 lines (8895 loc) Β· 352 KB
/
parasite.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")
(title_block
(title "b-parasite")
(date "2023-03-19")
(rev "2.0.0")
(company "rbaron.net")
)
(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.051)
(solder_mask_min_width 0.25)
(grid_origin 69 85)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "./gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "SENS_OUT")
(net 3 "Net-(U1B-P0.00{slash}XL1)")
(net 4 "Net-(U1B-P0.01{slash}XL2)")
(net 5 "Net-(D2-A)")
(net 6 "+3V0")
(net 7 "CPARA")
(net 8 "Net-(Q1-B)")
(net 9 "PHOTO_V")
(net 10 "PHOTO_OUT")
(net 11 "PWM")
(net 12 "LED")
(net 13 "SDA")
(net 14 "SCL")
(net 15 "RST")
(net 16 "BTN1")
(net 17 "SWDIO")
(net 18 "SWDCLK")
(net 19 "unconnected-(U1C-P1.11-Pad1)")
(net 20 "unconnected-(U1C-P1.10-Pad2)")
(net 21 "unconnected-(U1C-P1.13-Pad6)")
(net 22 "unconnected-(U1B-P0.31{slash}AIN7-Pad9)")
(net 23 "unconnected-(U1B-P0.26-Pad12)")
(net 24 "unconnected-(U1B-P0.06-Pad14)")
(net 25 "unconnected-(U1B-P0.08-Pad16)")
(net 26 "unconnected-(U1B-P0.04{slash}AIN2-Pad18)")
(net 27 "unconnected-(U1B-P0.12-Pad20)")
(net 28 "0.10")
(net 29 "unconnected-(U1B-P0.07-Pad22)")
(net 30 "unconnected-(U1A-GND@3-Pad24)")
(net 31 "unconnected-(U1A-DCCH-Pad25)")
(net 32 "unconnected-(U1A-VBUS-Pad27)")
(net 33 "unconnected-(U1B-P0.15-Pad28)")
(net 34 "unconnected-(U1A-DM-Pad29)")
(net 35 "unconnected-(U1B-P0.17-Pad30)")
(net 36 "unconnected-(U1A-DP-Pad31)")
(net 37 "unconnected-(U1B-P0.20-Pad32)")
(net 38 "unconnected-(U1B-P0.22-Pad34)")
(net 39 "unconnected-(U1C-P1.00-Pad36)")
(net 40 "unconnected-(U1C-P1.02-Pad38)")
(net 41 "unconnected-(U1C-P1.04-Pad40)")
(net 42 "unconnected-(U1B-P0.09{slash}NFC1-Pad41)")
(net 43 "unconnected-(U1C-P1.06-Pad42)")
(net 44 "unconnected-(U2-NC-Pad5)")
(net 45 "unconnected-(U1C-P1.09-Pad17)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000600d4d96)
(at 69.762 59.069 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1523")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/00000000-0000-0000-0000-0000600e6e5b")
(attr smd)
(fp_text reference "C1" (at 1.674 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
)
(fp_text value "1n" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(pad "1" smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "SENS_OUT") (pintype "passive") (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(pad "2" smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_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 "F.Cu")
(tstamp 00000000-0000-0000-0000-0000600d4e5c)
(at 71.54 59.069 -90)
(descr "Resistor SMD 0402 (1005 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 "resistor")
(property "LCSC" "C26083")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/00000000-0000-0000-0000-0000600e7750")
(attr smd)
(fp_text reference "R6" (at 1.674 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24)
)
(fp_text value "1M" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 240e07e1-770b-4b27-894f-29fd601c924d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(pad "1" smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "SENS_OUT") (pintype "passive") (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(pad "2" smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(model "${KISYS3DMOD}/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 "F.Cu")
(tstamp 00000000-0000-0000-0000-0000600d4ebc)
(at 61.53 57.822 180)
(descr "Resistor SMD 0402 (1005 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 "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/00000000-0000-0000-0000-0000600fff47")
(attr smd)
(fp_text reference "R4" (at 0.015 0.9) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)
)
(fp_text value "10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c43663ee-9a0d-4f27-a292-89ba89964065)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(pad "1" smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(Q1-B)") (pintype "passive") (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(pad "2" smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "PWM") (pintype "passive") (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000600de2e8)
(at 64.936 58.568 180)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "-0.2A Ic, -40V Vce, Small Signal PNP Transistor, SOT-23")
(property "ki_keywords" "PNP Transistor")
(path "/5ac517f9-143d-4f08-ae19-43791bf393aa")
(attr smd)
(fp_text reference "Q1" (at 0 -2.302 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8)
)
(fp_text value "MMBT3906" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)
)
(fp_line (start 0.76 -1.58) (end -1.4 -1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
(fp_line (start 0.76 1.58) (end -0.7 1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
(fp_line (start 0.76 1.58) (end 0.76 0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
(fp_line (start -1.7 1.75) (end -1.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
(fp_line (start 1.7 -1.75) (end 1.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
(fp_line (start 1.7 1.75) (end -1.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
(fp_line (start -0.7 -0.95) (end -0.7 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(fp_line (start -0.7 1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start 0.7 -1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(pad "1" smd rect (at -1 -0.95 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(Q1-B)") (pinfunction "B") (pintype "input") (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
(pad "2" smd rect (at -1 0.95 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "CPARA") (pinfunction "E") (pintype "passive") (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
(pad "3" smd rect (at 1 0 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "C") (pintype "passive") (tstamp 088f77ba-fca9-42b3-876e-a6937267f957))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000601e234e)
(at 61.53 55.663)
(descr "Resistor SMD 0402 (1005 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 "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/00000000-0000-0000-0000-0000600e0e7a")
(attr smd)
(fp_text reference "R1" (at 0 -1.016) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e)
)
(fp_text value "10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp f202141e-c20d-4cac-b016-06a44f2ecce8)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(pad "1" smd roundrect (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "PWM") (pintype "passive") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(pad "2" smd roundrect (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "CPARA") (pintype "passive") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006035901b)
(at 77.382 34.708 -90)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/aab9515e-f2ed-4df6-80db-c725deeeffef")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP1" (at 0 -1.448 90) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd)
)
(fp_text value "IO" (at 0 1.55 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3)
)
(fp_text user "${REFERENCE}" (at 0 -1.45 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e5203297-b913-4288-a576-12a92185cb52))
(pad "1" smd circle (at 0 0 270) (size 1 1) (layers "F.Cu" "F.Mask")
(net 17 "SWDIO") (pinfunction "1") (pintype "passive") (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060359023)
(at 77.382 37.248 -90)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/574f4bed-b270-474d-92b3-b6967ba174c1")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP2" (at 0 -1.448 90) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558)
)
(fp_text value "CLK" (at 0 1.55 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
)
(fp_text user "${REFERENCE}" (at 0 -1.45 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(pad "1" smd circle (at 0 0 270) (size 1 1) (layers "F.Cu" "F.Mask")
(net 18 "SWDCLK") (pinfunction "1") (pintype "passive") (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060359047)
(at 67.984 58.838 180)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/3b4c37d7-7606-4c65-a3ee-d057025cc7f7")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP5" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp dc2801a1-d539-4721-b31f-fe196b9f13df)
)
(fp_text value "CPARA" (at -0.254 -3.429) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(pad "1" smd circle (at 0 0 180) (size 1 1) (layers "F.Cu" "F.Mask")
(net 7 "CPARA") (pinfunction "1") (pintype "passive") (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006035904f)
(at 61.38 59.473 180)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/442dee41-70cf-450f-a8fe-aa2a6113a84e")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP6" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7)
)
(fp_text value "PWM" (at 0 1.55) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp e54e5e19-1deb-49a9-8629-617db8e434c0)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(pad "1" smd circle (at 0 0 180) (size 1 1) (layers "F.Cu" "F.Mask")
(net 11 "PWM") (pinfunction "1") (pintype "passive") (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006035c630)
(at 61.38 50.202 180)
(descr "Resistor SMD 0402 (1005 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 "resistor")
(property "LCSC" "C11702")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/00000000-0000-0000-0000-00006037fe48")
(attr smd)
(fp_text reference "R2" (at 0 1.143 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
)
(fp_text value "1k" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(pad "1" smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D2-A)") (pintype "passive") (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(pad "2" smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "LED") (pintype "passive") (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(model "${KISYS3DMOD}/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 "F.Cu")
(tstamp 00000000-0000-0000-0000-00006035cb9b)
(at 70.524 55.432 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1525")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/00000000-0000-0000-0000-00006036f153")
(attr smd)
(fp_text reference "C2" (at -1.628 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)
)
(fp_text value "100n" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81a15393-727e-448b-a777-b18773023d89))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(pad "1" smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V0") (pintype "passive") (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(pad "2" smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(model "${KISYS3DMOD}/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_3215-2Pin_3.2x1.5mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000604c1116)
(at 67.8885 49.694)
(descr "SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf")
(tags "SMD SMT Crystal")
(property "LCSC" "C32346")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Two pin crystal")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/d6211179-8259-42c3-b07a-bc1bd3b3a8f1")
(attr smd)
(fp_text reference "Y1" (at 0 -1.778) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 716e31c5-485f-40b5-88e3-a75900da9811)
)
(fp_text value "32.768kHz" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 127679a9-3981-4934-815e-896a4e3ff56e)
)
(fp_text user "${REFERENCE}" (at 0 -0.4) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)
)
(fp_line (start -0.675 -0.875) (end 0.675 -0.875)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(fp_line (start -0.675 0.875) (end 0.675 0.875)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(fp_line (start -2 -1.15) (end -2 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(fp_line (start -2 -1.15) (end 2 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(fp_line (start -2 1.15) (end 2 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(fp_line (start 2 -1.15) (end 2 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(pad "1" smd rect (at 1.25 0) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(U1B-P0.01{slash}XL2)") (pinfunction "1") (pintype "passive") (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "2" smd rect (at -1.25 0) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U1B-P0.00{slash}XL1)") (pinfunction "2") (pintype "passive") (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(model "${KIPRJMOD}/lib/grabcad/Crystal-SMD-3215-Pin2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -180))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000604c11f8)
(at 60.618 52.869 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "LCSC" "C2286")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/00000000-0000-0000-0000-00006038131f")
(attr smd)
(fp_text reference "D2" (at -0.1015 1.397 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)
)
(fp_text value "LED" (at -0.1579 -1.4582) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d67a417-188f-4014-9282-000265d80009)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.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 00000000-0000-0000-0000-0000604c135f)
(at 68.8845 53.019 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1547")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2d9f5014-977d-43c3-9264-e76ecf13fa5b")
(attr smd)
(fp_text reference "C4" (at -1.547 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)
)
(fp_text value "12p" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 6fd4442e-30b3-428b-9306-61418a63d311)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(pad "1" smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U1B-P0.01{slash}XL2)") (pintype "passive") (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(pad "2" smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(model "${KISYS3DMOD}/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 00000000-0000-0000-0000-0000604c1f2a)
(at 67.1065 52.996 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1547")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/09a62b8d-af2d-4255-bf19-be6e54b45f4e")
(attr smd)
(fp_text reference "C3" (at 1.524 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5)
)
(fp_text value "12p" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(pad "1" smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(pad "2" smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U1B-P0.00{slash}XL1)") (pintype "passive") (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_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 "F.Cu")
(tstamp 00000000-0000-0000-0000-0000604c3442)
(at 74.588 53.019 -90)
(descr "Resistor SMD 0402 (1005 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 "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/00000000-0000-0000-0000-00006037481e")
(attr smd)
(fp_text reference "R7" (at -1.547 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a)
)
(fp_text value "10k" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 66043bca-a260-4915-9fce-8a51d324c687)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(pad "1" smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "SDA") (pintype "passive") (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(pad "2" smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V0") (pintype "passive") (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "/Applications/KiCad/KiCad.app/Contents/SharedSupport/3dmodels/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000604c346c)
(at 76.239 53.019 90)
(descr "Resistor SMD 0402 (1005 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 "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/00000000-0000-0000-0000-000060372d0f")
(attr smd)
(fp_text reference "R8" (at 1.547 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 29e78086-2175-405e-9ba3-c48766d2f50c)
)
(fp_text value "10k" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(pad "1" smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V0") (pintype "passive") (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(pad "2" smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "SCL") (pintype "passive") (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "kicad:Sensirion_DFN-4-1EP_2x2mm_P1mm_EP0.7x1.6mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000604c6cc1)
(at 74.08 56.044 180)
(descr "DFN, 4 Pin (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/0_Datasheets/Humidity/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf)")
(tags "Sensirion DFN NoLead")
(property "LCSC" "C194656")
(property "Sheetfile" "parasite.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Humidity and Temperature Sensor, +/-2%RH, +/-0.2degC, I2C, 1.62-3.6V, DFN-4")
(property "ki_keywords" "Sensirion environment environmental measurement digital")
(path "/00000000-0000-0000-0000-00006052cfbe")
(attr smd)
(fp_text reference "U2" (at 0.127 -1.905) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(fp_text value "SHTC3" (at 0 1.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.12)))
(tstamp d22e95aa-f3db-4fbc-a331-048a2523233e)
)
(fp_line (start -1 1.11) (end 1 1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(fp_line (start 0 -1.11) (end 1 -1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(fp_line (start -1.45 -1.25) (end -1.45 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(fp_line (start -1.45 1.25) (end 1.45 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(fp_line (start 1.45 -1.25) (end -1.45 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(fp_line (start 1.45 1.25) (end 1.45 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(fp_line (start -1 -0.5) (end -0.5 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(fp_line (start -1 1) (end -1 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864))
(fp_line (start -0.5 -1) (end 1 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))