-
Notifications
You must be signed in to change notification settings - Fork 1
/
cockTag.kicad_pcb
8784 lines (8731 loc) · 380 KB
/
cockTag.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.1808)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 0.6) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.6) (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)
(grid_origin 154.8 102.5)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Outputs/Gerber/")
)
)
(net 0 "")
(net 1 "Net-(AE1-Pad1)")
(net 2 "/MCU + RF/ANT")
(net 3 "GND")
(net 4 "Net-(C7-Pad2)")
(net 5 "Net-(C15-Pad2)")
(net 6 "unconnected-(U2-Pad5)")
(net 7 "VCC")
(net 8 "Net-(BZ1-Pad2)")
(net 9 "Net-(C4-Pad2)")
(net 10 "Net-(C5-Pad1)")
(net 11 "Net-(C6-Pad1)")
(net 12 "XL1")
(net 13 "/MCU + RF/XC1")
(net 14 "XL2")
(net 15 "/MCU + RF/XC2")
(net 16 "SWDCLK")
(net 17 "SWDIO")
(net 18 "Net-(Q1-Pad1)")
(net 19 "GYRO_SCL")
(net 20 "GYRO_SDA")
(net 21 "/MCU + RF/BUZZER")
(net 22 "GYRO_INT")
(net 23 "unconnected-(U2-Pad8)")
(net 24 "unconnected-(U2-Pad14)")
(net 25 "unconnected-(U2-Pad4)")
(net 26 "unconnected-(U2-Pad6)")
(net 27 "unconnected-(U2-Pad7)")
(net 28 "unconnected-(U2-Pad9)")
(net 29 "unconnected-(U2-Pad15)")
(net 30 "unconnected-(U2-Pad16)")
(net 31 "unconnected-(U2-Pad18)")
(net 32 "unconnected-(U2-Pad22)")
(net 33 "unconnected-(U2-Pad23)")
(net 34 "unconnected-(U2-Pad21)")
(net 35 "unconnected-(U2-Pad17)")
(net 36 "unconnected-(U2-Pad24)")
(net 37 "unconnected-(U2-Pad37)")
(net 38 "unconnected-(U2-Pad28)")
(net 39 "unconnected-(U2-Pad40)")
(net 40 "unconnected-(U2-Pad41)")
(net 41 "unconnected-(U2-Pad42)")
(net 42 "unconnected-(U2-Pad43)")
(net 43 "unconnected-(U2-Pad44)")
(net 44 "unconnected-(U2-Pad47)")
(net 45 "unconnected-(U2-Pad38)")
(net 46 "/MCU + RF/LED_A")
(net 47 "Net-(D1-Pad1)")
(net 48 "Net-(D2-Pad1)")
(net 49 "/MCU + RF/LED_B")
(net 50 "BOOT")
(net 51 "unconnected-(U2-Pad39)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 07e820f6-5352-4622-89c6-9dc8d877ae52)
(at 155.45 91.95 -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 "LCSC" "C106201")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/34426879-3fbf-4507-8da5-57ea288b580f")
(attr smd)
(fp_text reference "C8" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b555eee7-8149-4892-8ba4-057aabcbbee2)
)
(fp_text value "12p" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c97ec1e3-38c3-4514-9704-1b06a25c7c8d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 8699357b-081e-4490-9c44-11d25a40de14)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp d0164702-426e-4c87-abe5-fbfeda4c6ede))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp eccdf86f-23ac-4077-b13e-27dc356e9a70))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 8b8cbcc8-2fab-4017-82d7-9e2b0dd87d55))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp b9937346-f6e7-4a0d-8b88-940809bc0c5f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp d205f026-5c37-4a8f-96d0-c67ab0976f34))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp f82b8be3-e209-4493-8527-8e48e4d9c1ce))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ae9a2cfc-2e02-4731-9394-e388bba596f8))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c40d36bb-2efa-4bc3-859b-223faaa66f3e))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f686f314-e4c1-4c2d-a83a-58da96d3edf9))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp fae1c1af-89ba-4c18-88bc-46f514e9bd6f))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 08895aac-0eaf-4885-9893-39d7cbab257b))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "XL1") (pintype "passive") (tstamp 251bbd6b-00ad-4956-8621-28b4b522b62b))
(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 "Package_DFN_QFN:QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm" (layer "F.Cu")
(tedit 5DC5F6A5) (tstamp 22ddbf58-002f-4a2d-a55f-a08cf4085952)
(at 160.05 80.75)
(descr "QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "QFN NoLead")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/cc89fa23-a243-4555-89b5-e3868f114948")
(attr smd)
(fp_text reference "U2" (at 0 -4.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9b83c24-087c-4866-b791-d79da8c23943)
)
(fp_text value "nRF52832-QFxx" (at 0 4.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63777b9e-0275-4aad-a3da-f144d646491f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fff946a-3456-4234-9804-bc3d578c6f9d)
)
(fp_line (start 3.11 -3.11) (end 3.11 -2.56) (layer "F.SilkS") (width 0.12) (tstamp 2c970ddb-72a8-4a7d-8092-b8b2732b32b5))
(fp_line (start 2.56 -3.11) (end 3.11 -3.11) (layer "F.SilkS") (width 0.12) (tstamp 42916924-c198-4bef-88d7-87ab5ea31768))
(fp_line (start -2.56 -3.11) (end -3.11 -3.11) (layer "F.SilkS") (width 0.12) (tstamp 5d332674-1468-46b4-8a26-b374bfbb2103))
(fp_line (start -2.56 3.11) (end -3.11 3.11) (layer "F.SilkS") (width 0.12) (tstamp 6d8a1f19-dd10-4dd0-90b5-33bca002df59))
(fp_line (start 3.11 3.11) (end 3.11 2.56) (layer "F.SilkS") (width 0.12) (tstamp 73f53911-489d-4762-ae33-de0d5bc5ae90))
(fp_line (start -3.11 3.11) (end -3.11 2.56) (layer "F.SilkS") (width 0.12) (tstamp a83cfa60-e4a6-4566-bcd3-247edd4ecc50))
(fp_line (start 2.56 3.11) (end 3.11 3.11) (layer "F.SilkS") (width 0.12) (tstamp f9ca9f38-1aab-43cf-83b4-07664d9fc0e7))
(fp_line (start 3.6 -3.6) (end -3.6 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 18230dbf-426c-4109-8720-b8f305cb7e64))
(fp_line (start -3.6 3.6) (end 3.6 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 41569a03-efe4-47b0-9f03-3da0280253af))
(fp_line (start 3.6 3.6) (end 3.6 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 4fb02b51-2d34-4ab8-b00f-f14721f04e7a))
(fp_line (start -3.6 -3.6) (end -3.6 3.6) (layer "F.CrtYd") (width 0.05) (tstamp a0219490-0f83-42fb-ba14-f7828d4f4df6))
(fp_line (start -3 -2) (end -2 -3) (layer "F.Fab") (width 0.1) (tstamp 00a5049b-643f-49b5-94b1-a1b300be5b5a))
(fp_line (start 3 -3) (end 3 3) (layer "F.Fab") (width 0.1) (tstamp 5a1aabba-f06b-41d0-8a46-e02e09541dd1))
(fp_line (start -2 -3) (end 3 -3) (layer "F.Fab") (width 0.1) (tstamp 8fb1802d-af74-4ef3-a8e8-9f4316036a73))
(fp_line (start -3 3) (end -3 -2) (layer "F.Fab") (width 0.1) (tstamp 93b5034c-d09e-4a8e-8dde-df18bdb1ddcf))
(fp_line (start 3 3) (end -3 3) (layer "F.Fab") (width 0.1) (tstamp aa016d90-ac41-405b-af62-161165d456a2))
(pad "" smd roundrect (at -1.53 0) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 3cad0497-cd6f-4e45-9157-6c6e4292a2ee))
(pad "" smd roundrect (at 0 -1.53) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 40c5694b-c67b-47dd-bb34-f689147950db))
(pad "" smd roundrect (at 1.53 0) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 4af3e295-f6f5-4f47-9d28-1add45a90dd7))
(pad "" smd roundrect (at -1.53 1.53) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 6b3b30a1-f0df-4d33-9fba-ff80f992b74a))
(pad "" smd roundrect (at 0 1.53) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 7b7211ed-4baa-4b9a-8c84-3a7c3fd8494f))
(pad "" smd roundrect (at -1.53 -1.53) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 7f8f200d-2367-4df8-a675-f537a1623238))
(pad "" smd roundrect (at 1.53 1.53) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 9aa084c0-d230-4a1c-a233-fa999f096412))
(pad "" smd roundrect (at 1.53 -1.53) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp 9f3b99bb-82ca-4f9c-bfe3-1d3f6d1391e0))
(pad "" smd roundrect (at 0 0) (size 1.24 1.24) (layers "F.Paste") (roundrect_rratio 0.201613) (tstamp a3424c17-ba76-4eaa-b2df-99c5717b0e8b))
(pad "1" smd roundrect (at -2.95 -2.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C5-Pad1)") (pinfunction "DEC1") (pintype "passive") (tstamp 8995547b-6ee3-42c0-b993-3084fb6690ba))
(pad "2" smd roundrect (at -2.95 -1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "XL1") (pinfunction "P0.00/XL1") (pintype "bidirectional") (tstamp 7a63d423-0c21-4946-a4fe-ddbc0d9f6945))
(pad "3" smd roundrect (at -2.95 -1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "XL2") (pinfunction "P0.01/XL2") (pintype "bidirectional") (tstamp c4cf509a-b2bb-4762-a902-1770c84412e5))
(pad "4" smd roundrect (at -2.95 -1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "unconnected-(U2-Pad4)") (pinfunction "P0.02/AIN0") (pintype "bidirectional") (tstamp 3e141005-dfbd-47a2-8ab7-16745d9488df))
(pad "5" smd roundrect (at -2.95 -0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "unconnected-(U2-Pad5)") (pinfunction "P0.03/AIN1") (pintype "bidirectional") (tstamp f7feec58-8417-4550-8c5a-9ab6ebf97616))
(pad "6" smd roundrect (at -2.95 -0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "unconnected-(U2-Pad6)") (pinfunction "P0.04/AIN2") (pintype "bidirectional") (tstamp d6538393-fbc4-4141-9419-0fa72b7b09ee))
(pad "7" smd roundrect (at -2.95 0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "unconnected-(U2-Pad7)") (pinfunction "P0.05/AIN3") (pintype "bidirectional") (tstamp d149d152-8b4c-4fd9-b9ca-8573f03e57e6))
(pad "8" smd roundrect (at -2.95 0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "unconnected-(U2-Pad8)") (pinfunction "P0.06") (pintype "bidirectional") (tstamp aa1c9c42-8db0-40d1-9074-5c144c9946fc))
(pad "9" smd roundrect (at -2.95 1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "unconnected-(U2-Pad9)") (pinfunction "P0.07") (pintype "bidirectional") (tstamp 5d3a23a3-f049-4481-8408-026a840d5115))
(pad "10" smd roundrect (at -2.95 1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "GYRO_SDA") (pinfunction "P0.08") (pintype "bidirectional") (tstamp 09ebde7b-2b4a-4db0-a962-48af3973d1ae))
(pad "11" smd roundrect (at -2.95 1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GYRO_SCL") (pinfunction "NFC1/P0.09") (pintype "bidirectional") (tstamp df513184-523d-4a8f-aed3-893b7d3f7a77))
(pad "12" smd roundrect (at -2.95 2.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "GYRO_INT") (pinfunction "NFC2/P0.10") (pintype "bidirectional") (tstamp 0eae53ec-d808-45bf-a3f4-bc1d0f78e9b3))
(pad "13" smd roundrect (at -2.2 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp a43fb473-9f56-40a1-a776-f400e5c4d8c8))
(pad "14" smd roundrect (at -1.8 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "unconnected-(U2-Pad14)") (pinfunction "P0.11") (pintype "bidirectional") (tstamp 64f3011e-e8f4-46da-8d38-43445a9f1620))
(pad "15" smd roundrect (at -1.4 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "unconnected-(U2-Pad15)") (pinfunction "P0.12") (pintype "bidirectional") (tstamp 3caa9483-3a63-4cb6-9b70-e63bb835c2b9))
(pad "16" smd roundrect (at -1 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(U2-Pad16)") (pinfunction "P0.13") (pintype "bidirectional") (tstamp fcb79043-4969-42fc-b6fb-0a2adc8555d7))
(pad "17" smd roundrect (at -0.6 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "unconnected-(U2-Pad17)") (pinfunction "P0.14") (pintype "bidirectional") (tstamp fe714ee4-b2fb-4248-aa8e-bbdf7a40ef17))
(pad "18" smd roundrect (at -0.2 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U2-Pad18)") (pinfunction "P0.15") (pintype "bidirectional") (tstamp 87b34b41-75a8-48af-a5f3-fb958cdfa812))
(pad "19" smd roundrect (at 0.2 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "BOOT") (pinfunction "P0.16") (pintype "bidirectional") (tstamp 19f81f8d-6210-43d7-8884-27012ea551df))
(pad "20" smd roundrect (at 0.6 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/MCU + RF/BUZZER") (pinfunction "P0.17") (pintype "bidirectional") (tstamp 01f0df45-9e26-4559-be74-a4e282dafcf7))
(pad "21" smd roundrect (at 1 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(U2-Pad21)") (pinfunction "P0.18/SWO") (pintype "bidirectional") (tstamp a1c0ab66-83b9-4749-90ba-7ed3595289b8))
(pad "22" smd roundrect (at 1.4 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U2-Pad22)") (pinfunction "P0.19") (pintype "bidirectional") (tstamp 0457d808-b67f-452b-bc7f-fd7d3074674c))
(pad "23" smd roundrect (at 1.8 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U2-Pad23)") (pinfunction "P0.20") (pintype "bidirectional") (tstamp de91010a-41f1-4f87-bbc2-ec96bbe6cfa8))
(pad "24" smd roundrect (at 2.2 2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "unconnected-(U2-Pad24)") (pinfunction "P0.21/~{RESET}") (pintype "bidirectional") (tstamp 57e0f05e-7822-44d6-81b8-6530b8e6a0b9))
(pad "25" smd roundrect (at 2.95 2.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "SWDIO") (pinfunction "SWDCLK") (pintype "input") (tstamp 5c6c565b-9934-4246-87aa-e59c1d493dc0))
(pad "26" smd roundrect (at 2.95 1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "SWDCLK") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp f569be6b-8337-4f27-860b-d8be8cc64840))
(pad "27" smd roundrect (at 2.95 1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "/MCU + RF/LED_A") (pinfunction "P0.22") (pintype "bidirectional") (tstamp 364d64b5-a365-492c-885b-f703eb1b9a08))
(pad "28" smd roundrect (at 2.95 1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "unconnected-(U2-Pad28)") (pinfunction "P0.23") (pintype "bidirectional") (tstamp 59274436-0241-4a27-aaac-e2bbed8f3b37))
(pad "29" smd roundrect (at 2.95 0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "/MCU + RF/LED_B") (pinfunction "P0.24") (pintype "bidirectional") (tstamp 190ba2a8-8b48-4a76-bcaf-28b65b56d699))
(pad "30" smd roundrect (at 2.95 0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/MCU + RF/ANT") (pinfunction "ANT") (pintype "passive") (tstamp c4529fcc-b58c-4617-869f-948b5827978b))
(pad "31" smd roundrect (at 2.95 -0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 9e6914e5-d08b-49be-899f-6b8f92ef3020))
(pad "32" smd roundrect (at 2.95 -0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C4-Pad2)") (pinfunction "DEC2") (pintype "passive") (tstamp 8268d587-2b54-4d35-8af7-ef25b656892e))
(pad "33" smd roundrect (at 2.95 -1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C15-Pad2)") (pinfunction "DEC3") (pintype "passive") (tstamp 778dc1c0-81ae-4bf5-95ac-f4f87ce216a4))
(pad "34" smd roundrect (at 2.95 -1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/MCU + RF/XC1") (pinfunction "XC1") (pintype "input") (tstamp fdad034b-5d54-4e40-8b64-250a7bee49ee))
(pad "35" smd roundrect (at 2.95 -1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/MCU + RF/XC2") (pinfunction "XC2") (pintype "input") (tstamp b3dbbc55-d27a-4dca-9843-ab952c271744))
(pad "36" smd roundrect (at 2.95 -2.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "VCC") (pinfunction "VDD") (pintype "passive") (tstamp 3f40f6e8-e60c-42cc-9fd2-df31453de563))
(pad "37" smd roundrect (at 2.2 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "unconnected-(U2-Pad37)") (pinfunction "P0.25") (pintype "bidirectional") (tstamp 47924a00-13cf-427b-8be9-262a2b091096))
(pad "38" smd roundrect (at 1.8 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "unconnected-(U2-Pad38)") (pinfunction "P0.26") (pintype "bidirectional") (tstamp 248ec48f-d402-4ddc-9933-0fbd6ecf9ba4))
(pad "39" smd roundrect (at 1.4 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "unconnected-(U2-Pad39)") (pinfunction "P0.27") (pintype "bidirectional") (tstamp 7d140245-b064-4678-85e6-a0e6c2e915e8))
(pad "40" smd roundrect (at 1 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "unconnected-(U2-Pad40)") (pinfunction "P0.28/AIN4") (pintype "bidirectional") (tstamp 0add28b5-d1ba-434f-9fbc-38a0fc8417a7))
(pad "41" smd roundrect (at 0.6 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U2-Pad41)") (pinfunction "P0.29/AIN5") (pintype "bidirectional") (tstamp d842b66e-e356-47d9-8870-d69dab94043a))
(pad "42" smd roundrect (at 0.2 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "unconnected-(U2-Pad42)") (pinfunction "P0.30/AIN6") (pintype "bidirectional") (tstamp 82c25907-170e-4aac-9007-8554700c6bd1))
(pad "43" smd roundrect (at -0.2 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "unconnected-(U2-Pad43)") (pinfunction "P0.31/AIN7") (pintype "bidirectional") (tstamp 7cc7705a-7ee8-49f7-bc0c-61522a1a0447))
(pad "44" smd roundrect (at -0.6 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(U2-Pad44)") (pinfunction "NC") (pintype "no_connect") (tstamp cb567194-eec1-4f87-83ee-6bb12077e193))
(pad "45" smd roundrect (at -1 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "VSS") (pintype "passive") (tstamp 861d106f-131d-4743-b4f5-998a88ef6962))
(pad "46" smd roundrect (at -1.4 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C7-Pad2)") (pinfunction "DEC4") (pintype "passive") (tstamp 131cfc48-892f-4ea6-a5ea-8e8c6a5c2a3d))
(pad "47" smd roundrect (at -1.8 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(U2-Pad47)") (pinfunction "DCC") (pintype "power_out+no_connect") (tstamp ee57caf4-d106-4057-a11a-641821503f0c))
(pad "48" smd roundrect (at -2.2 -2.95) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "VCC") (pinfunction "VDD") (pintype "passive") (tstamp 03b18b49-7ebc-4023-9141-be40cef690c7))
(pad "49" smd rect (at 0 0) (size 4.6 4.6) (layers "F.Cu" "F.Mask")
(net 3 "GND") (pinfunction "VSS") (pintype "passive") (tstamp e173206d-9c0f-475f-b114-54f413137920))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Buzzer_Beeper:PUIAudio_SMT_0825_S_4_R" (layer "F.Cu")
(tedit 5BF326A3) (tstamp 2926e945-d9e3-4a4e-9b51-aad244dc04f4)
(at 145.1 104.1 -60)
(descr "SMD 8540, http://www.puiaudio.com/product-detail.aspx?partnumber=SMT-0825-S-4-R")
(tags "SMD 8540")
(property "LCSC" "C409827")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/b401eca2-204c-47b0-a6cc-cbd09a8de2ad")
(attr smd)
(fp_text reference "BZ1" (at 0.2 -5.9 120) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 956f8a88-9acc-4e52-9280-d386fdb26e68)
)
(fp_text value "Buzzer" (at 0.1 6 120) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37c732a1-cf44-4113-843f-85a5910958ec)
)
(fp_text user "+" (at -1.5 -3.25 30) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17c7b03d-e4b9-4587-b2ce-0ee7a9d30575)
)
(fp_text user "${REFERENCE}" (at 0.1 0.1 120) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 381ea437-8589-413a-8d00-c27a465a3773)
)
(fp_text user "+" (at -2.75 -2.75 30) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e12ec3e8-0d5b-47b1-abb9-9b31a4bb451e)
)
(fp_line (start 2 -4.35) (end -2 -4.35) (layer "F.SilkS") (width 0.12) (tstamp 6f581e98-caac-4a3a-b0ed-76aab462e56a))
(fp_line (start -2 4.35) (end 2 4.35) (layer "F.SilkS") (width 0.12) (tstamp 73b08644-febb-4c1e-9b8f-826cf4cd7348))
(fp_line (start 4.35 2) (end 4.35 -2) (layer "F.SilkS") (width 0.12) (tstamp dc50af72-15b3-4fb5-bf25-289e8b8f51f6))
(fp_line (start -4.35 -2) (end -4.35 2) (layer "F.SilkS") (width 0.12) (tstamp f47ba0cc-ecae-4aef-a30d-acee22ce59db))
(fp_line (start -4.75 4.75) (end -4.75 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 18406746-0f9d-4d88-9ef2-8423e08576f0))
(fp_line (start -4.75 -4.75) (end 4.75 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 20ac7a70-5cb9-4418-b061-8e4ee8d36b79))
(fp_line (start 4.75 4.75) (end -4.75 4.75) (layer "F.CrtYd") (width 0.05) (tstamp d0823f78-79d3-470b-87e6-694e750395bc))
(fp_line (start 4.75 -4.75) (end 4.75 4.75) (layer "F.CrtYd") (width 0.05) (tstamp dfdaa22a-0489-48da-8a56-737e4c4366e1))
(fp_line (start -4.25 2.75) (end -4.25 -2.75) (layer "F.Fab") (width 0.1) (tstamp 168a0226-3f44-46ec-a72a-15290137bd66))
(fp_line (start 2.75 -4.25) (end 4.25 -2.75) (layer "F.Fab") (width 0.1) (tstamp 2b7fcec9-f103-4c1e-8056-817283941746))
(fp_line (start -2.75 -4.25) (end 2.75 -4.25) (layer "F.Fab") (width 0.1) (tstamp 318b1c02-8f98-40e0-8672-6e5f766110ad))
(fp_line (start 4.25 -2.75) (end 4.25 2.75) (layer "F.Fab") (width 0.1) (tstamp 54562a16-6662-4d1b-9b50-45ed0ae36481))
(fp_line (start -2.75 4.25) (end -4.25 2.75) (layer "F.Fab") (width 0.1) (tstamp a1bbbcb7-3394-4d47-a7e2-c5aca5915b62))
(fp_line (start 2.75 4.25) (end -2.75 4.25) (layer "F.Fab") (width 0.1) (tstamp ae0ad2a8-816d-4ed9-8122-ce73b249d5bc))
(fp_line (start -4.25 -2.75) (end -2.75 -4.25) (layer "F.Fab") (width 0.1) (tstamp ccefc75b-fd16-4e82-963f-281710a98051))
(fp_line (start 4.25 2.75) (end 2.75 4.25) (layer "F.Fab") (width 0.1) (tstamp cd008119-17d3-4098-90f3-4ace8a150683))
(pad "1" smd rect (at -3.5 -3.5 210) (size 2 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VCC") (pinfunction "-") (pintype "passive") (tstamp 432045b0-7589-468b-8659-999ac30c51fa))
(pad "2" smd rect (at -3.5 3.5 210) (size 2 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(BZ1-Pad2)") (pinfunction "+") (pintype "passive") (tstamp 4d290f63-844a-4f7b-8aec-c610c29b1e2f))
(pad "3" smd rect (at 3.5 3.5 210) (size 2 2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fdd0a3ff-3d05-4dc5-8f2c-3aa967326c19))
(pad "4" smd rect (at 3.5 -3.5 210) (size 2 2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2009ab3a-f4bf-4c63-a0fe-9d170c762787))
(model "${KICAD6_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/PUIAudio_SMT_0825_S_4_R.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")
(tedit 5F68FEEE) (tstamp 311a70eb-5859-4da6-8fe4-344b06368e0f)
(at 148.6 98.9 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 "LCSC" "")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/6335e93c-a32e-49c1-beda-01823bae59a1")
(attr smd)
(fp_text reference "C4" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d38eca7-b037-4400-970c-46db57e3c3cb)
)
(fp_text value "100p" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac5a5c45-797a-4bbe-bfd5-5ce5a8aa3463)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 971c1271-0f6f-46b9-8494-7107930ab4af)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 1aa01b33-85ec-45ea-bfaa-b88738576f2f))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 4362e6ac-6290-4071-922f-911c69fdd561))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0afc6592-c2db-4caa-a22b-f13f9e7e1c40))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 4d759aa0-1145-43ae-a507-a45f6fc89e2a))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 62b6b2b3-6ade-4e95-8062-936451a2172f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 9c8b409b-0d1b-49e5-8fed-acd83e0e8b3e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3f6533ba-c4f9-46fc-b56b-e4570f6ba8d8))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 4f2de74c-a0a3-419c-86d3-f1056d120362))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d0d2152d-05bb-45b9-922c-65dc46f5a5df))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f6662114-e94f-4466-8b01-5f4d76363a86))
(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 "GND") (pintype "passive") (tstamp cdb2878b-f702-4635-9e4c-1cc8cfe5a84c))
(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 9 "Net-(C4-Pad2)") (pintype "passive") (tstamp cd74d053-e62a-45a3-9f24-631862f85655))
(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")
(tedit 5F68FEEE) (tstamp 33193802-955d-4a94-98cf-a3ed27526865)
(at 144.9 94.85 -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 "LCSC" "C41851")
(property "Sheetfile" "cockTag.kicad_sch")
(property "Sheetname" "")
(path "/4a029941-e460-458c-a9f4-bfffb068ae01")
(attr smd)
(fp_text reference "C1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7b44d07-2cb6-4c10-bad9-adf2185ee6fd)
)
(fp_text value "100n" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5ed04ff-a810-4989-b637-8cc763ae2ab6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 7cc91655-208f-4c40-986f-00fd054b4b29)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp ce824579-a256-4757-8547-32bf1db63637))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp f66b82ab-c203-4cb4-84ea-abcb2cd50a9c))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 363809f4-b895-434e-8ee8-f8b8fb35d4fe))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 49956dd5-35c0-4b9f-8b2a-6f2b8918bd8c))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp a5129eb7-d259-4824-8f60-442feba02c79))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp e567c545-204a-4e4a-bfa9-ae48e2366f9a))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 21491966-3c4c-414a-8ddc-0c7176ddff87))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4159a1b3-645b-4fcf-a72d-9242b2067a63))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 791a5e22-eefd-4c9f-8145-64da9c193893))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7d6a83ee-b39d-480d-9568-6e909628ec27))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "VCC") (pintype "passive") (tstamp c61a2d85-d3d7-4faf-9bef-d07618588ca0))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 570b0686-0fc3-46c1-be51-39569bba54ce))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 34f494d3-f727-4e92-b04b-bb02d398ea06)
(at 149.1 88.4 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" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/06b6e33d-a4df-464b-9c23-5be0fca31893")
(attr smd)
(fp_text reference "R5" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b6b0ef8-cb49-4806-a385-9d93130ffdc0)
)
(fp_text value "470" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 838ac53b-3ec1-4b97-9af6-c64a64ade18e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e2438ac6-18fb-4b36-bec6-4ea332ad0f99)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 15849db9-220e-4afd-b7a0-07e5cbc925e5))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp c0cb9ac4-a13f-4ce2-8aea-f334c934d5b3))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 31fb150b-1634-44a3-bbf0-4f27407886b5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6f9f8538-0b96-4eb3-a978-1c7439c0e8bf))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cb65e3b7-af7c-4e91-bec7-ee202fea2815))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d2551b77-8cbc-4e7a-af3b-fc16fb61dc91))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 2733a655-db42-498b-a705-184e4fe256a3))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 5006a2d1-be56-41dc-888f-67fb86bea03b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp b908b981-26a7-43ab-bb19-96137e6f2a5a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp d05ca12a-32d4-4c55-95ec-69bfada58ba7))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp c36e7618-99ac-4188-82ad-148b9401ee0f))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "Net-(D2-Pad1)") (pintype "passive") (tstamp 101131db-475d-4275-89d4-ac43ee9a25d5))
(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 "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 3585a139-cfc6-4b57-99ce-0163d84caa4b)
(at 149.8 89.5)
(descr "LED 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 "LED")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/dd80eaf6-1013-4ba9-b847-e6f8e30c82a2")
(attr smd)
(fp_text reference "D2" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76bf3f12-008a-4a13-b216-e7dae9728db6)
)
(fp_text value "LED" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 878a2718-59d9-4c03-a97a-b08c3d833cb9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 77f01482-1a0d-408c-a0b8-f389b6fedc82)
)
(fp_circle (center -1.09 0) (end -1.04 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp 49bc590d-585a-47df-bda3-e46f7daa6990))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4e3d105c-3308-491c-a0aa-594e6247a479))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5821604d-5ceb-420a-b7e4-ba8f3233a4b7))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 78aafe37-8da2-4652-8543-18ebef8d21dc))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e01103b1-667c-4bf0-b447-ad1d0f4d8e00))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 45d251bd-4b8c-43e0-a1a3-865b3e4a5a83))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4d8a27f3-5994-4c02-859b-09c0a8d34a6d))
(fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7924cdcb-45b3-439a-a58e-4e78f2ff9e7a))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 80cc6be9-668a-4344-9b65-0659b9071698))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp cc268aca-4ea7-4c71-a771-346b177957a8))
(fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp fb070305-7327-4d47-aaa2-52c1d26471d3))
(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 48 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 5e3ca9e8-0260-4e6b-9246-fb1c6934f35f))
(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 46 "/MCU + RF/LED_A") (pinfunction "A") (pintype "passive") (tstamp d8f7259d-0682-4c60-95f0-ad48cc844b79))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_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")
(tedit 5F68FEEE) (tstamp 37aa75b3-7b69-4cea-84e8-ba31642c1c6b)
(at 175.55 91.22)
(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 "LCSC" "C5185458")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/9bc49620-4dce-4775-881f-f62ef11aa070")
(attr smd)
(fp_text reference "C15" (at 0 -1.16) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdf7e3d9-ab9a-4501-b66c-cb684ed63008)
)
(fp_text value "100p" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a89baa9b-6ff8-450d-8f56-89b5f01dcdf0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d1d263e6-39da-4cb9-b35f-3f5b716643b8)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 622c0d9f-5a8d-4cf9-80b9-91bc17f67602))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp ea6f6b4c-019c-4c47-a6e3-906bc2b0ef3e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 02841b05-8fcd-4ed4-aa1a-39c44afaf743))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 90dac697-78b3-43c2-bc1b-7ec71b2a5ba7))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 954b7a4f-34a2-4cc5-bebd-2994c1fc9268))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp edbe1f75-bfee-43af-9837-faa153ead28e))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2fed61a3-0d95-462b-845d-812e174f877e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 6a1878bc-0aca-4b94-b9de-940366db0343))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 79941aee-0d04-4b3f-bcff-4d0969e76f78))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e1dbdf48-6279-4f81-a8e5-3624bffec188))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp f8a5a4fd-0492-4dac-9d64-cc68607cc10d))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C15-Pad2)") (pintype "passive") (tstamp 4779141e-3359-4c43-ac1d-b6c5cf2a7125))
(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 "Package_TO_SOT_SMD:SOT-323_SC-70" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 4829bee0-faa8-43f7-b2d7-8a6e5d1b3050)
(at 140.2 99.8 -150)
(descr "SOT-323, SC-70")
(tags "SOT-323 SC-70")
(property "LCSC" "C553063")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/d07c9852-1fa4-40ca-9b3a-45379faf2beb")
(attr smd)
(fp_text reference "Q1" (at 0.043301 0.025 120) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5600b446-cc57-4d99-a6dd-3cb2f076483c)
)
(fp_text value "Q_NPN_BEC" (at -0.05 2.05 30) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a56a0e1-0b83-4459-b285-5106d6ccafbb)
)
(fp_text user "${REFERENCE}" (at 0 0 120) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp cfdd684c-0d04-48e4-a62a-4b899d9ad32f)
)
(fp_line (start -0.68 1.16) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp 43cc948b-7aa9-4530-a448-911bd0e35fae))
(fp_line (start 0.73 0.5) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp 449c1c23-1f0d-4ed5-b566-2c18ec95c2a3))
(fp_line (start 0.73 -1.16) (end -1.3 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 9b11964f-5943-49c9-bbf0-08d035779463))
(fp_line (start 0.73 -1.16) (end 0.73 -0.5) (layer "F.SilkS") (width 0.12) (tstamp e6eb6955-2cd6-4a24-9d4c-bf3c42dcce77))
(fp_line (start -1.7 1.3) (end -1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 3c847883-a462-4ea9-9466-d1dd1edc5a97))
(fp_line (start -1.7 -1.3) (end 1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 73975e5a-04c0-454b-b7b1-06dcb3c81497))
(fp_line (start 1.7 -1.3) (end 1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp a1cf3838-7a06-43e1-a94f-aa849ba69819))
(fp_line (start 1.7 1.3) (end -1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp a43501fb-72a9-4536-bb81-9f53755e8169))
(fp_line (start 0.67 -1.1) (end 0.67 1.1) (layer "F.Fab") (width 0.1) (tstamp 2e2c4431-7ad4-4101-b72a-e48147e24a71))
(fp_line (start -0.68 -0.6) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp 822cf157-ecb8-46d7-8cc6-5f0248fd6b37))
(fp_line (start 0.67 -1.1) (end -0.18 -1.1) (layer "F.Fab") (width 0.1) (tstamp 8cb63406-42c5-417f-9384-cf8cdba62340))
(fp_line (start -0.18 -1.1) (end -0.68 -0.6) (layer "F.Fab") (width 0.1) (tstamp 9f7b3295-d16c-467f-88f6-2ab8ee650e3a))
(fp_line (start 0.67 1.1) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp bdb69042-8fa0-4d7e-be19-fed7218cdfd8))
(pad "1" smd rect (at -1 -0.65 120) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(Q1-Pad1)") (pinfunction "B") (pintype "input") (tstamp 77b09fa1-fbbb-49ab-94c4-069660b694ff))
(pad "2" smd rect (at -1 0.65 120) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "E") (pintype "passive") (tstamp 899f373a-cf16-4f13-9d21-dfc8f80ca371))
(pad "3" smd rect (at 1 0 120) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(BZ1-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 5f88a249-af85-4825-b9e1-a3ec67ffc637))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-323_SC-70.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")
(tedit 5F68FEEE) (tstamp 4a151dd5-28d8-42af-b70d-d52cf427540e)
(at 153.05 102.55 135)
(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 "LCSC" "C710646")
(property "Sheetfile" "MCU.kicad_sch")
(property "Sheetname" "MCU + RF")
(path "/b6ef546a-f2cf-48f2-a973-1f8e7a78bf18/aecd2232-5ac4-42f3-a19d-9f028ec399cb")
(attr smd)
(fp_text reference "C6" (at 0 -1.16 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a82cec30-45c1-49b3-b9e6-e30cc49eb759)
)
(fp_text value "1p" (at 0 1.16 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 572f678c-7489-4a0c-81c3-6f024e0707be)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 97816a30-8562-4b40-bfd6-82faaadf14b2)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 7c938fcf-5266-4f01-b9d8-797ff7c61f4c))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp dc4bf440-2891-440b-98cc-4ec7ceadee72))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0504c604-5989-41d4-98b3-73baf39661a4))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 06d56cea-efec-4ee2-a30e-da196d83ccb4))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 737d10d1-31d2-4ac3-8e9f-c01d3ad411b5))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 7b66c522-eb2b-4ac5-8fa6-badbd9e03844))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6fb81dc6-41d5-4f97-ab8d-08492b739776))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a4a90bd3-5586-4453-acbb-4d2c22443f49))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e807127d-3013-4e6e-a160-f258e33d9fb8))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp edbc17dd-aa76-4d77-81ec-11ed42efea05))
(pad "1" smd roundrect (at -0.48 0 135) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(C6-Pad1)") (pintype "passive") (tstamp 92563de1-61c4-4e3f-8603-96474790934f))
(pad "2" smd roundrect (at 0.48 0 135) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/MCU + RF/ANT") (pintype "passive") (tstamp 4f4277d9-4ff1-4fe4-9af0-84cedee4b2b6))
(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 "kibuzzard-6367CDC3" (layer "F.Cu")
(tedit 6367CDC3) (tstamp 5220aecb-b626-4e55-b7dd-d749af12110d)
(at 144.9 97)
(descr "Converted using: scripting")
(tags "svg2mod")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "kibuzzard-6367CDC3" (at 0 -0.675831) (layer "F.SilkS") hide
(effects (font (size 0.000254 0.000254) (thickness 0.000003)))
(tstamp 73f5dd60-adb4-415a-872e-bdaf4ef211f4)
)
(fp_text value "G***" (at 0 0.675831) (layer "F.SilkS") hide
(effects (font (size 0.000254 0.000254) (thickness 0.000003)))
(tstamp 8a3e57b9-2f59-4c70-9357-789f97c3cd88)
)
(fp_poly (pts
(xy -1.553051 0.040005)
(xy -1.545015 0.121444)
(xy -1.520904 0.185738)
(xy -1.478935 0.227528)
(xy -1.41732 0.241459)
(xy -1.357134 0.227528)
(xy -1.313736 0.185738)
(xy -1.287482 0.121444)
(xy -1.278731 0.040005)
(xy -1.286768 -0.041255)
(xy -1.310878 -0.105013)
(xy -1.352848 -0.146268)
(xy -1.414463 -0.16002)
(xy -1.474649 -0.146268)
(xy -1.518047 -0.105013)
(xy -1.5443 -0.041255)
(xy -1.553051 0.040005)
) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2c35c1e9-00de-490e-84fb-a80d6b126f9c))
(fp_poly (pts
(xy -2.424589 -0.675323)
(xy -2.424589 0.040005)
(xy -2.418874 -0.030718)
(xy -2.401729 -0.097155)
(xy -2.372797 -0.157341)
(xy -2.33172 -0.209312)
(xy -2.27832 -0.252174)
(xy -2.212419 -0.285036)
(xy -2.133302 -0.305931)
(xy -2.040255 -0.312896)
(xy -1.93167 -0.304324)
(xy -1.833086 -0.275749)
(xy -1.871663 -0.134303)
(xy -1.935242 -0.152162)
(xy -2.024539 -0.16002)
(xy -2.129552 -0.145018)
(xy -2.197418 -0.103584)
(xy -2.234565 -0.040005)
(xy -2.245995 0.040005)
(xy -2.232958 0.122873)
(xy -2.193846 0.185738)
(xy -2.123301 0.225385)
(xy -2.015966 0.238601)
(xy -1.929527 0.232886)
(xy -1.847374 0.214313)
(xy -1.708785 0.183594)
(xy -1.72593 0.114836)
(xy -1.731645 0.038576)
(xy -1.725751 -0.036612)
(xy -1.708071 -0.105013)
(xy -1.679853 -0.165378)
(xy -1.642348 -0.216456)
(xy -1.596092 -0.257532)
(xy -1.541621 -0.287893)
(xy -1.480542 -0.306645)
(xy -1.414463 -0.312896)
(xy -1.34749 -0.306645)
(xy -1.286589 -0.287893)
(xy -1.232654 -0.257532)
(xy -1.186577 -0.216456)
(xy -1.149251 -0.165378)
(xy -1.121569 -0.105013)
(xy -1.104424 -0.036612)
(xy -1.098709 0.038576)
(xy -0.995839 0.040005)
(xy -0.990124 -0.030718)
(xy -0.972979 -0.097155)
(xy -0.944047 -0.157341)
(xy -0.90297 -0.209312)
(xy -0.84957 -0.252174)
(xy -0.783669 -0.285036)
(xy -0.704552 -0.305931)
(xy -0.611505 -0.312896)
(xy -0.50292 -0.304324)
(xy -0.404336 -0.275749)
(xy -0.442913 -0.134303)
(xy -0.506492 -0.152162)
(xy -0.595789 -0.16002)
(xy -0.700802 -0.145018)
(xy -0.768668 -0.103584)
(xy -0.805815 -0.040005)
(xy -0.817245 0.040005)
(xy -0.804208 0.122873)
(xy -0.765096 0.185738)
(xy -0.694551 0.225385)
(xy -0.587216 0.238601)
(xy -0.500777 0.232886)
(xy -0.418624 0.214313)
(xy -0.254317 0.375761)
(xy -0.254317 -0.585788)
(xy -0.077153 -0.615791)
(xy -0.077153 -0.030004)
(xy -0.025003 -0.093583)
(xy 0.026432 -0.162878)
(xy 0.074295 -0.232172)
(xy 0.1143 -0.295751)
(xy 0.325755 -0.295751)
(xy 0.638651 -0.362903)
(xy 0.405765 -0.362903)
(xy 0.405765 -0.508635)
(xy 1.048703 -0.508635)
(xy 1.048703 -0.362903)
(xy 0.815816 -0.362903)
(xy 1.427321 -0.312896)
(xy 1.503224 -0.308074)
(xy 1.565196 -0.293608)
(xy 1.653064 -0.239316)
(xy 1.700213 -0.153591)
(xy 1.7145 -0.040005)
(xy 1.853486 0.109538)
(xy 1.845945 0.018574)
(xy 1.856105 -0.08255)
(xy 1.886585 -0.164941)
(xy 1.937385 -0.2286)
(xy 2.005647 -0.273844)
(xy 2.088515 -0.30099)
(xy 2.185988 -0.310039)
(xy 2.261394 -0.30607)
(xy 2.340927 -0.294164)
(xy 2.424589 -0.27432)
(xy 2.424589 0.294323)
(xy 2.415778 0.394335)
(xy 2.389346 0.475298)
(xy 2.345293 0.53721)
(xy 2.281714 0.580866)
(xy 2.196703 0.60706)
(xy 2.090261 0.615791)
(xy 2.028646 0.612577)
(xy 1.969532 0.602933)
(xy 1.858804 0.572929)
(xy 1.891665 0.424339)
(xy 1.978819 0.453628)
(xy 2.093119 0.467201)
(xy 2.168843 0.456486)
(xy 2.215991 0.427196)
(xy 2.24028 0.383619)
(xy 2.247424 0.330041)
(xy 2.247424 0.302895)
(xy 2.179558 0.324326)
(xy 2.113121 0.33147)
(xy 2.032556 0.322263)
(xy 1.966119 0.29464)
(xy 1.913811 0.248603)
(xy 1.876107 0.186214)
(xy 1.853486 0.109538)
(xy 1.7145 -0.040005)
(xy 1.7145 0.360045)
(xy 1.6002 0.380048)
(xy 1.519833 0.38862)
(xy 1.430179 0.391478)
(xy 1.313736 0.380048)
(xy 1.224439 0.342186)
(xy 1.167289 0.273606)
(xy 1.147286 0.170021)
(xy 1.170146 0.071438)
(xy 1.231583 0.007144)
(xy 1.320165 -0.027861)
(xy 1.424464 -0.038576)
(xy 1.489115 -0.035719)
(xy 1.545908 -0.027146)
(xy 1.545908 -0.048578)
(xy 1.514475 -0.132159)
(xy 1.471613 -0.157341)
(xy 1.40589 -0.165735)
(xy 1.309449 -0.158591)
(xy 1.23444 -0.141446)
(xy 1.210151 -0.282893)
(xy 1.30302 -0.303609)
(xy 1.364099 -0.310575)
(xy 1.427321 -0.312896)
(xy 0.815816 -0.362903)
(xy 0.815816 0.375761)
(xy 0.638651 0.375761)
(xy 0.638651 -0.362903)
(xy 0.325755 -0.295751)
(xy 0.267176 -0.224314)
(xy 0.199311 -0.145733)
(xy 0.129302 -0.06858)
(xy 0.065723 0)
(xy 0.142875 0.082153)
(xy 0.183952 0.130909)
(xy 0.224314 0.181451)
(xy 0.262711 0.232886)
(xy 0.297894 0.284321)
(xy 0.351473 0.375761)
(xy 0.150019 0.375761)
(xy 0.105013 0.295037)
(xy 0.04572 0.206454)
(xy -0.017859 0.123587)
(xy -0.077153 0.058579)
(xy -0.077153 0.375761)
(xy -0.254317 0.375761)
(xy -0.418624 0.214313)
(xy -0.392906 0.358616)
(xy -0.482918 0.382191)
(xy -0.540425 0.389156)
(xy -0.607219 0.391478)
(xy -0.702766 0.384691)
(xy -0.783669 0.364331)
(xy -0.850642 0.332184)
(xy -0.904399 0.290036)
(xy -0.945297 0.238601)
(xy -0.973693 0.178594)
(xy -0.990302 0.1118)
(xy -0.995839 0.040005)
(xy -1.098709 0.038576)
(xy -1.104424 0.114836)
(xy -1.121569 0.183594)
(xy -1.149072 0.244138)
(xy -1.185863 0.295751)
(xy -1.231404 0.337542)
(xy -1.285161 0.368618)
(xy -1.346418 0.387906)
(xy -1.414463 0.394335)
(xy -1.482507 0.387906)
(xy -1.543764 0.368618)
(xy -1.5977 0.337542)
(xy -1.643777 0.295751)
(xy -1.681103 0.244138)
(xy -1.708785 0.183594)
(xy -1.847374 0.214313)
(xy -1.821656 0.358616)
(xy -1.911668 0.382191)
(xy -1.969175 0.389156)
(xy -2.035969 0.391478)
(xy -2.131516 0.384691)
(xy -2.212419 0.364331)
(xy -2.279392 0.332184)
(xy -2.333149 0.290036)
(xy -2.374047 0.238601)
(xy -2.402443 0.178594)
(xy -2.419052 0.1118)
(xy -2.424589 0.040005)
(xy -2.424589 -0.675323)
(xy -2.48412 -0.675323)
(xy -2.889314 0.675323)
(xy -2.48412 0.675323)
(xy -2.424589 0.675323)
(xy 2.424589 0.675323)
(xy 2.48412 0.675323)
(xy 2.889314 -0.675323)
(xy 2.48412 -0.675323)
(xy 2.424589 -0.675323)
(xy -2.424589 -0.675323)
) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7250ab33-f433-406a-8859-03d505c595fe))
(fp_poly (pts
(xy 1.443038 0.250031)
(xy 1.498759 0.249317)
(xy 1.545908 0.245745)
(xy 1.545908 0.09144)
(xy 1.504474 0.086439)
(xy 1.460183 0.084296)
(xy 1.407319 0.087868)
(xy 1.362313 0.100013)
(xy 1.331595 0.124301)
(xy 1.320165 0.165735)
(xy 1.354455 0.230743)
(xy 1.443038 0.250031)
) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8271ec03-b476-49a0-8cbe-6e2a51c21484))
(fp_poly (pts
(xy 2.024539 0.018574)
(xy 2.03204 0.091619)
(xy 2.054543 0.145018)
(xy 2.14884 0.188595)
(xy 2.202418 0.181451)
(xy 2.247424 0.162878)
(xy 2.247424 -0.16002)
(xy 2.211705 -0.165735)
(xy 2.178844 -0.167164)
(xy 2.093119 -0.146526)
(xy 2.041684 -0.084614)
(xy 2.024539 0.018574)
) (layer "F.SilkS") (width 0) (fill solid) (tstamp c0c92632-9bed-4731-8e26-78a0ec532393))
)
(footprint "Crystal:Crystal_SMD_3215-2Pin_3.2x1.5mm" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 5f48357f-c353-4808-811f-74ed7ffaa7c6)
(at 157.35 93 -90)
(descr "SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf")