-
Notifications
You must be signed in to change notification settings - Fork 0
/
pimentero.kicad_pcb
1204 lines (1183 loc) · 63.7 KB
/
pimentero.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(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") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(property "DATE" "2020-08-26")
(property "REVISION" "v0.2")
(property "TITLE" "Pimentero")
(property "URL" "github.com/rockola/pimentero")
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad1)")
(net 3 "Net-(C2-Pad2)")
(net 4 "Net-(C3-Pad1)")
(net 5 "Net-(C4-Pad2)")
(net 6 "Net-(C4-Pad1)")
(net 7 "IN")
(net 8 "VCC")
(net 9 "OUT")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 037e4866-5b27-4fff-9816-b82ed2d58459)
(at 119.761 74.041)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/cf11b9ed-dd93-4fae-b397-cc3c58a23711")
(attr smd)
(fp_text reference "C4" (at 2.794 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fba289f-04d9-4c59-8e88-05f7bdd2b91f)
)
(fp_text value "100n" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef7e74e8-adf5-4c10-a263-7ce0b15a3b81)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7cfcec28-5ff8-4c5f-ad39-7c1cc87f3561)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp cd799950-1a24-47b1-9372-43173b474a94))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp e39abacd-3d84-4e9b-a454-3e7eb8108b6c))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 189b34c4-03c8-46c4-bc47-7aeb487ebd9e))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 585528be-8999-45ee-aa62-193f3b964106))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9c40b895-d82b-4095-87c3-b7dc71e4ccea))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp dcccd1e1-a013-4f49-95b4-7bc1166ae3c8))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 1424e489-b8e4-4769-81b0-dfdb7cdb2a10))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 54f152c8-ab4e-49c5-b58c-1e58b1c39287))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6f000521-e69c-4af7-9375-0737eb75d8d7))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 9ea76215-93bb-44e5-9666-6856044f2e72))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 6 "Net-(C4-Pad1)") (tstamp 27f66021-a9d8-4e02-9bd4-16a7caad738c))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 5 "Net-(C4-Pad2)") (tstamp 4b4be6f7-7f5c-4d4c-94b8-e5d09f9d642b))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 169e306f-babb-462f-bada-d50f1c79fc75)
(at 108.839 75.946)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/b1dfd13b-250d-4271-b515-73cc2907d4f7")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 397192ec-bcaa-40ce-943f-347d168f8c3d)
)
(fp_text value "Volume A500k lug 1" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 750e8303-4960-4e9d-a54f-7cad3ed177e1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba6ad52f-3622-487f-a444-edf854ff6371)
)
(fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 35e731aa-b8b3-49f8-968c-590640ed0c8d))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 51579db6-c785-457a-a800-f8f8776f89bb))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 574c6782-25c4-496b-ae23-84c2d3f60da4))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 61c0ea97-4ab0-4ee3-9fa4-bc14f91d93cd))
(fp_line (start 1.33 1.27) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 80616013-4eca-42d8-b551-4afb50be915e))
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp c28c1205-9fc7-4b1e-8e07-9980a60a9ff2))
(fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 244cc533-4056-46c1-ab8e-565e1ae14678))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 29de06ab-ba1a-4af8-84f4-74be52605bdf))
(fp_line (start -1.8 1.8) (end 1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp d1d5a4bc-9cfe-40c5-930a-e3811c870894))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp eafb565b-4187-4422-896e-53be388ff9e3))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 23dfd779-3139-4b3f-bf3f-1abfb1551881))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6f8d119b-fbc1-485a-aa4f-58e44c472fa5))
(fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6f991363-766a-43c2-b578-2416f6ac1475))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp bb7ae49f-1e74-4cfc-8452-4dea9ff121af))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp c6145e44-ea68-4fe0-8c0c-c87eee377eb8))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(C4-Pad2)") (pinfunction "Pin_1") (tstamp d584a053-8fa6-4ec1-9a56-80f59121e7b3))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 1f6480ef-a63a-4119-ad9a-f9b6b1b7a413)
(at 108.712 70.358)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/d46f48e0-c306-4c7c-9089-869a4e9dbbdc")
(attr smd)
(fp_text reference "R4" (at 2.667 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b435d6bb-420b-43dd-b880-66aab5a9c5d6)
)
(fp_text value "22k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa99b325-3bf3-410b-b541-0831fcd83100)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 218943d4-b0d8-4b14-89d8-0ac9e449b9fb)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 393bc5f0-e394-43b5-a480-de4fcb4fe7d2))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 84ba0bcc-3ee6-46fb-ad62-f3ba88f03fae))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 274b5e43-22df-4be9-a621-1091a02eb8e6))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5a67d18f-8bc5-4aac-814c-a607a75191a9))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ce775a37-a96f-483b-bb30-5a116594fef1))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f6b64360-d165-4dc3-b62b-7986e0f6fd24))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 1940b4d5-ef8d-4031-8a06-86e3ca3d60f0))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 3037361c-3c43-4e30-9274-68f72bacf17f))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 73f658d9-9c62-433a-aea0-25ba2437bbe5))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp a5a0cd36-d3c5-4bd5-8ae6-a84a93b0c76c))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 8 "VCC") (tstamp 5c916aaa-a1e3-4f56-bc2d-08793a912d72))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 6 "Net-(C4-Pad1)") (tstamp 928a3acb-cde1-428b-bb8d-f2540ff59d54))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 2339406a-fda4-4a75-b085-e9bd9db8c4fd)
(at 119.761 69.723)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/4de3d977-216b-4acb-9139-5638561caf34")
(attr smd)
(fp_text reference "C3" (at 2.794 0.127) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0d323c1-0de9-4eea-95bd-9b65f1214b48)
)
(fp_text value "22n" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89a94e5c-5ed5-4c7a-a927-028473f4dec1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 58d1200f-00d2-43b5-bbfa-34aa12197767)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 0a384ac8-6709-44f3-9e04-2251ebb7795a))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 80113117-bd2b-414e-a75e-2277e5f7774a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1d2b6082-631f-469c-be0b-22d60be86eb0))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 44f14ac7-4220-423a-93f9-e473a3a3f4ac))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8d87201f-fb07-4d8c-ad37-50342d252cbe))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c53ee173-4f28-4ebc-9d53-b8bda238d814))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 1c52bc07-1a75-4e2e-a082-9a3dfc2fae34))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 2b3a165e-fe16-4953-b87b-d5497e52ed1d))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 2dd31150-92f8-4488-9bfc-73161563cbc8))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5244aaf8-d862-4557-8b1a-640ae83f3cf8))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 4 "Net-(C3-Pad1)") (tstamp 87e4f30e-f046-48b0-ab3f-65c792f2a8ca))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (tstamp 1bf1020f-c08b-42df-9952-7d5753f39bfd))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 46822ead-c62c-43de-b3be-c3dd350a809d)
(at 119.761 71.882)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/428b4199-daec-4bf9-ae27-b2198c06030b")
(attr smd)
(fp_text reference "R3" (at 2.794 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 189bd1c0-20bc-4efb-99e2-f5f378de902f)
)
(fp_text value "3k3" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 307da893-b195-407c-b046-09a825677589)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e9440d37-71b1-4f6b-aa1f-8d1241f78880)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp c8cdc989-2c7d-4493-90dd-cbd37f224b87))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp d63aa203-574a-48a6-a8dc-c429ce61054f))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 05c76298-52ef-4685-8ce6-2f722896a6d7))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 74f93e2f-3c7c-43b7-bfd0-203e9ee4b1d4))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d9bbb818-920b-4634-a0e1-9347e4705a9e))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp dd42624f-d52d-4772-805a-25e0cf148afb))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 45b56b26-a74e-49d7-815d-af40c2a98a24))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 573bf35f-d021-4656-8d7a-3ddddbcd7f57))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp b1ac1517-3442-431d-8162-9678fa5c5bef))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp f287b6cf-4b48-4153-b872-e22178bdd841))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 4 "Net-(C3-Pad1)") (tstamp 3601f895-d60d-46e6-9571-259f1fda948b))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (tstamp 216b5980-f988-4796-bdd0-9c5c2fb2f00b))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 5e211368-e9c3-4710-948f-ba4fd62c4feb)
(at 119.761 67.564)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/3a7170c8-a014-4982-934d-aa98298ac56e")
(attr smd)
(fp_text reference "R2" (at 2.794 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00bc0c8b-8bf1-429c-b51a-5c0fd9afdfe7)
)
(fp_text value "1M" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 503e08cd-b665-4199-8ddf-45c2544ea24f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 33de4e1d-b8ad-4830-9d5f-d5726d3760d6)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp c5301ed1-48e0-485f-bef0-e3b7b16d0307))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp ccd693e1-1a57-493d-940d-07ebf7f6eccc))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5ce3b72b-d3eb-4b57-a036-ec2f583c375c))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8cc43426-6876-45f5-b380-fd490e2cf525))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 922dc287-e3f5-43bf-9200-19b0eecd6fb6))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e3daf3ea-2fa4-412a-850c-8aa3e6548647))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 36ed8124-08a5-4fea-b3a6-c837b1ab6d43))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 67613a0b-e3aa-48d9-bd44-ff6700cbd8c9))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp bc987aa4-916b-4dd0-b001-00684093376e))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp e1a183cc-202a-4c20-960f-d4adf1ccd1fd))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 3 "Net-(C2-Pad2)") (tstamp bb2ca3db-fdfe-4c92-9501-20de8cb60984))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (tstamp d2e58436-88e8-4627-bfc6-2722dffe7981))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 698cb674-e72d-44af-8046-c9d75169479f)
(at 114.173 67.564)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/ca49c723-6ab4-4c5a-9b14-68cb3d5db54a")
(attr smd)
(fp_text reference "C1" (at 2.667 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1fd446b-18a4-4f77-b5b1-4f3b94ade861)
)
(fp_text value "220p" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d45e29dd-485b-491f-b893-218031f0bf1c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c00826ed-f558-4082-b87c-d86bb808a88d)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 6f548c80-640d-4f93-a2bf-ba3f9c833cfa))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 87bd1a8e-b30a-4694-96c5-0cd3c402e7c1))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 20a87ccb-d4f5-49e4-856e-73a10c75bd12))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2f92a6a9-7c99-48a0-ac46-7e2a5a1d2470))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4d7efaf4-c502-4251-af47-23f2ba55ba83))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5c57ab9f-2271-44b5-896f-9f1394608347))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 8070cdef-1439-483f-877d-370c004ffa8e))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 9e0383d5-ca0d-4429-b2a7-53d46dcf1d4c))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp a74248a6-b87b-452e-bcc8-3f5372186714))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp e4a6a938-10ee-4f02-a46d-f35be0a91e01))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "Net-(C1-Pad1)") (tstamp b00922ed-f52d-45f7-baf5-0bb3156eee49))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (tstamp 131abd35-4de7-4e16-9227-c3bb852aa4de))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 77cb4b51-31df-4419-8475-7ce7dd1a5c6a)
(at 119.761 76.2)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/e2039ef0-179b-44c7-99b1-02fdf7a852b0")
(attr smd)
(fp_text reference "R5" (at 2.794 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0218f769-e237-447a-a482-049c6a0a3ae7)
)
(fp_text value "220k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66cbb136-d5a8-4e14-82e0-53f445850e41)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c359bda4-8e75-45dc-a6b7-96228b26c338)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 76f0aef4-b33d-49ad-a82a-727d203353a6))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 8d1f1890-7828-4cf1-9540-ba8adc8c7b69))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 230bc9c6-3959-4fa2-8569-e49d6f2f5a60))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 67e25d94-d3f6-48ab-9a65-b037e7a4a272))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e6d57b41-d444-4765-aa4b-93349879a546))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f1f91e73-d513-45b1-a79c-df4d6f387f23))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 65e83cfe-7f1f-429d-81f0-daefdda44aee))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6ae8dd07-0457-48cc-ae77-d9b6d09ded7f))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp b91f52a8-573c-4fe7-8f48-a02ff708269c))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp bc319d4e-7fa6-479e-ab11-500c1d08a927))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 5 "Net-(C4-Pad2)") (tstamp 8e666183-db7d-40af-9951-55c1e8040c26))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (tstamp 5273e99b-dca6-46c0-8747-417a212c0f5c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.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")
(tedit 5A02FF57) (tstamp cf115759-825f-4e07-af29-9d86f2811f29)
(at 114.173 73.279 90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/bca0b9b2-fc4c-4cae-95c0-90e6404b50df")
(attr smd)
(fp_text reference "Q1" (at -0.127 2.794 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b0bcdfb-b14c-4516-b4a6-254f4f20c8ac)
)
(fp_text value "MMBF5457" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38814059-a002-426a-bffd-31741284b1a5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 1bf7c2e6-6fb5-45d8-bfee-e4b9a97a4a7f)
)
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 6b6e8320-3d0c-44fb-a180-7249c9c050ff))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 80c3e820-5095-4093-882a-299ad3e9cfa2))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp c97c715d-ea75-4484-b775-fcddc54cf870))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp e465aa7f-3818-4677-a01f-83b9f054043d))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 489c5faf-2185-4656-a9d4-219bf2882a6c))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6e276b68-7153-4f3f-9188-0165ec1f41dd))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6f024a51-59b5-41ab-b187-f9adedfa7005))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp f0314be1-1533-480b-8ded-a2671b5b9672))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 1efd05d5-b43f-417c-b516-1cc4cd115cb3))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 4673a985-1e2d-4ccd-a410-c3f7553fe959))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 60da37fb-88e5-4f6f-9532-138b9481ac7e))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp c72a0d6b-6eef-40e1-b709-efeb327d0ed3))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp d4695224-16ff-407e-a0dc-2afd9adbd6e3))
(pad "1" smd rect locked (at -1 -0.95 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C3-Pad1)") (pinfunction "D") (tstamp 53b597cd-8a60-4ce1-bee5-e6434a11497d))
(pad "2" smd rect locked (at -1 0.95 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(C4-Pad1)") (pinfunction "S") (tstamp be11bb83-5c00-4b0c-a1a9-a0af6206c0c2))
(pad "3" smd rect locked (at 1 0 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad2)") (pinfunction "G") (tstamp 07d3c9a0-22d9-4323-8e17-af7fd49a4958))
(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 "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp d4100e4f-acfa-4441-b27b-eee84dc51713)
(at 114.173 70.358)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/25b9bfb2-8ff6-4448-a2e9-ff7868cbfb9d")
(attr smd)
(fp_text reference "C2" (at 2.667 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac80f65a-2ca1-4a66-ab53-b68d23337839)
)
(fp_text value "22n" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfefa10c-d67b-4c8a-83d9-cee3a3118bce)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp af6a2d47-851f-403e-b86d-12cfff448ffa)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp bbac7686-61db-4de8-9aa1-61cfca64349d))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp c11dcc67-1c45-4f7e-be62-eeba9b709630))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4ba962b0-3d67-4ee3-a840-fe7eaef3bfc9))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7e459d96-e966-46a3-99bf-3ddcde8c4912))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a2b10008-41fb-40e6-9222-a3251b9a4047))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp bee77234-c51b-4317-b0ce-21a932bb0a63))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 0e3e1dde-4b28-4b6f-9219-ca88cefac5ab))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 1fc2110d-494e-4d3d-aa1b-660184a24b7f))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 663ab1ec-d8fb-473c-9847-8e71afaabd0f))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp c4148b0b-13e4-419b-9001-35824a680ff3))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "Net-(C1-Pad1)") (tstamp d1a8ad01-0021-4b7f-a31e-ece418556561))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 3 "Net-(C2-Pad2)") (tstamp 53497c3b-e7c8-4a00-b424-a685d828f5c2))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp e2b65f49-8015-496e-a8cf-680096808930)
(at 108.712 67.564)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/6acf37af-130c-44c4-aaca-5ef7cab38d23")
(attr smd)
(fp_text reference "R1" (at 2.667 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fc8d150-0c77-4a22-8a18-26b93534682c)
)
(fp_text value "100k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5e89e69-c744-4547-92e3-5b245c4dfdb9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9db53843-487e-4c30-8283-fb29b15a1fdb)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 578f73fd-7ff9-462c-bbfa-981476da0d9e))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 73b4e72e-02ee-4d10-bcd4-6e5f41f21551))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0257f094-311f-4817-9f24-bcb3fd3bb8d4))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4bff1366-3567-4cc8-8bdd-3f3a2d739386))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d8255d5b-ef32-4938-8a05-5af134f63bc2))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp fcab7c26-352f-4425-87ba-220f61d308a5))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 23d4239e-c34e-4648-8f02-9c7c2566d1c4))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 3d64ac87-2a2e-4eb3-98df-a1cc3466b9f8))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 58ae0df5-97c2-4954-a377-b02faae3abd9))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 81cc2fe1-0b19-4b31-8e1d-54b8e4ca770b))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 7 "IN") (tstamp 14531e02-a145-40f0-9e49-28d601d085be))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "Net-(C1-Pad1)") (tstamp 0f68a337-a280-4366-8168-b0a572216231))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp e8b03068-076c-482b-aa52-dcfce88cb55b)
(at 104.902 68.326)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/191ab971-c850-4aa2-9e5b-5a87161d6e09")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b5cfc17-20be-43a0-ad45-7cf76f6a3f6b)
)
(fp_text value "Conn_01x04_Female" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe128f86-e260-43ee-b464-e2c3be441022)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9de06896-efb8-44fc-8e55-e643e572f5b7)
)
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 1fa3447f-1392-4b28-823d-defe0180ce54))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 1fb1382e-af9c-43a1-be00-e2ecdcfd16d8))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 47859edb-8ce4-4942-af1e-786f439cddb1))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 53c29044-5a17-4615-8371-d6bcbb88ca8e))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5733d47f-8b2d-4735-8f66-fbe6e263ada4))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a01927e0-796f-4489-b031-f659efc1a786))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 44a347e6-ca51-400d-851a-a60253035568))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 5555749c-423a-4cfd-8a14-ac708baf8b63))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp bf19d008-65bd-410b-b82e-fb54a771c169))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp caae5a2c-c9f0-4899-9fa3-2c5f501c9c33))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 5526776a-c518-497e-8f65-2ae2df579761))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 694cac52-bd6d-48c6-9997-5162c3931a7e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6eb4c443-8afb-4c6e-9e6f-dd057230a91e))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 9eac8b36-0ff1-4dae-b802-6fd610645e3e))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp b57c2c0d-66f7-44d8-aead-58310c78ed31))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "IN") (pinfunction "Pin_1") (tstamp 84ec9894-aa25-46a4-9ffe-542398c845bb))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "VCC") (pinfunction "Pin_2") (tstamp ab045f29-53e6-433d-9d21-f5b76a63cb29))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (tstamp 2f66e038-28ac-4556-b72f-52e02a5c2f6c))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "OUT") (pinfunction "Pin_4") (tstamp 1de66390-338c-4215-afaa-29174721ac3f))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp f42a3f2b-c9fc-4e86-a2ef-8e55cac62c35)
(at 108.712 73.025 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheet file" "/mnt/Library/Electronics/src/pimentero/pimentero.kicad_sch")
(property "Sheet name" "")
(path "/4f3d3726-d29e-4cff-8531-da2432773a87")
(attr smd)
(fp_text reference "R6" (at -2.667 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06f44001-75ea-4bb4-956f-82bdb2f37489)
)
(fp_text value "100k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de0da6a8-80ba-467b-9cff-e0a302034fe9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp fec68fa9-4727-4b60-9ce2-ab7f7e4737f4)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 7eb7223c-b734-4b69-b595-05475ff01dd6))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp eeae509e-6ce6-4b07-9fa9-f0174b1e9772))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1f995dba-733b-4ca3-adda-d9e0fcffa363))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3fb2e1f9-91b8-4f41-94f5-9a836e29a924))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8d5d1d1f-a8f1-49a5-8832-383cff8b936a))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c5c8ffca-b219-476c-b7b0-967131b77757))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 158cf920-9f14-4ac9-b07c-69feaddc02c9))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 911dcdb6-8517-41ba-87e6-020be840a27c))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 983280d7-1588-4e00-85a5-cf15b4c74d9c))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 987e59ac-322c-4061-a707-0ee9e5ed8664))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 5 "Net-(C4-Pad2)") (tstamp d44f23ec-a500-49e0-ad0a-b0c606659b0e))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 9 "OUT") (tstamp bf15567b-c345-4a05-901b-640b2fd30691))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_rect (start 102.997 66.421) (end 123.825 77.724) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 1b92fe08-7d15-438e-96c1-97df25c46c0c))
(gr_text "GND" (at 106.934 72.771) (layer "B.SilkS") (tstamp 3262634d-083f-478b-b4e2-dede50abe4f1)
(effects (font (size 0.8 0.8) (thickness 0.127)) (justify mirror))
)
(gr_text "Vol1" (at 111.125 75.057) (layer "B.SilkS") (tstamp 7d2ef86a-efd6-45b9-a85c-b598a2938d05)
(effects (font (size 0.8 0.8) (thickness 0.127)) (justify mirror))
)
(gr_text "${REVISION}\n${DATE}" (at 122.301 75.692) (layer "B.SilkS") (tstamp 853ba521-910f-49d6-8a53-970f20db7baa)
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
)
(gr_text "OUT" (at 106.807 75.184) (layer "B.SilkS") (tstamp a6c0d476-0cd3-48df-ab84-8411ab04af0a)
(effects (font (size 0.8 0.8) (thickness 0.127)) (justify mirror))
)
(gr_text "+V" (at 106.68 70.358) (layer "B.SilkS") (tstamp a795e243-362e-41fc-963f-74157116b77c)
(effects (font (size 0.8 0.8) (thickness 0.127)) (justify mirror))
)
(gr_text "${URL}" (at 115.316 68.58) (layer "B.SilkS") (tstamp c6e510a3-8a62-4a73-b9f9-e85e2343a346)
(effects (font (size 0.7 0.6) (thickness 0.127)) (justify mirror))
)
(gr_text "IN" (at 106.553 67.691) (layer "B.SilkS") (tstamp e6fe5886-e605-4c2b-975d-3313b0b81602)
(effects (font (size 0.8 0.8) (thickness 0.127)) (justify mirror))
)
(gr_text "${TITLE}" (at 116.078 72.136) (layer "B.SilkS") (tstamp ecbb8b1a-8d14-4066-b294-dc04137ab2e9)
(effects (font (size 1.5 1.6) (thickness 0.25)) (justify mirror))
)
(gr_text "I" (at 106.68 68.326) (layer "F.SilkS") (tstamp 0044458a-729c-49eb-abe2-a20eee3831dc)
(effects (font (size 0.8 0.8) (thickness 0.127)))
)
(gr_text "O" (at 106.68 76.073) (layer "F.SilkS") (tstamp 36c1930f-be9d-4d95-850d-16ff7fdb784b)
(effects (font (size 0.8 0.8) (thickness 0.127)))
)
(gr_text "G" (at 106.68 73.533) (layer "F.SilkS") (tstamp 82daff45-2194-40c9-a1d1-5034f0938de8)
(effects (font (size 0.8 0.8) (thickness 0.127)))
)
(gr_text "V" (at 106.68 70.866) (layer "F.SilkS") (tstamp 9991223d-6511-4087-92ec-98ebb1703fff)
(effects (font (size 0.8 0.8) (thickness 0.127)))
)
(gr_text "Vol1" (at 111.125 76.2) (layer "F.SilkS") (tstamp eb9d4886-f608-4c6c-ab8b-d96f99f1c5d5)
(effects (font (size 0.8 0.8) (thickness 0.127)))
)
(via (at 116.967 67.437) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 76401fd4-8cfd-452a-a40b-e941c11635de))
(via (at 122.682 75.057) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp a0246ac7-eddb-467c-9d2e-fee7f3176baa))
(segment (start 113.148 67.945) (end 113.148 70.739) (width 0.508) (layer "F.Cu") (net 2) (tstamp 9b352374-60a3-4f2a-8fdd-628fa63fa615))
(segment (start 109.737 67.945) (end 113.148 67.945) (width 0.508) (layer "F.Cu") (net 2) (tstamp b1835d05-2a3d-4d40-b28a-5ff3a24d385c))
(segment (start 115.198 70.358) (end 115.942 70.358) (width 0.508) (layer "F.Cu") (net 3) (tstamp 0afe4b25-e1b9-428e-bdc8-c452a1c24895))
(segment (start 115.942 70.358) (end 118.736 67.564) (width 0.508) (layer "F.Cu") (net 3) (tstamp 70bf08f2-c7a0-4504-a0e3-a71d2cb2ff01))
(segment (start 114.173 71.383) (end 115.198 70.358) (width 0.508) (layer "F.Cu") (net 3) (tstamp a421b0e0-4c6d-4927-8932-489526a7f6bb))
(segment (start 114.173 72.279) (end 114.173 71.383) (width 0.508) (layer "F.Cu") (net 3) (tstamp f0e94914-50a7-4648-a6e8-75af27ec53e9))
(segment (start 118.736 69.723) (end 118.736 71.882) (width 0.508) (layer "F.Cu") (net 4) (tstamp 2a0c5a8d-83b0-4d1a-9b05-173625c4ba29))
(segment (start 117.434999 73.183001) (end 114.318999 73.183001) (width 0.508) (layer "F.Cu") (net 4) (tstamp 2d811d82-8094-4897-a6a3-12c7d9af1911))
(segment (start 114.318999 73.183001) (end 113.223 74.279) (width 0.508) (layer "F.Cu") (net 4) (tstamp e8865c26-d492-47c0-96d7-fb5495917b48))
(segment (start 118.736 71.882) (end 117.434999 73.183001) (width 0.508) (layer "F.Cu") (net 4) (tstamp f8e000f9-621d-4580-9992-9e360eed3243))
(segment (start 118.736 76.091) (end 120.786 74.041) (width 0.508) (layer "F.Cu") (net 5) (tstamp 13d8244c-bbf8-4de7-93cd-9db204636e59))
(segment (start 108.839 75.946) (end 118.482 75.946) (width 0.508) (layer "F.Cu") (net 5) (tstamp 2505bad9-5d28-4b13-9d62-5215c6dfe819))
(segment (start 118.482 75.946) (end 118.736 76.2) (width 0.508) (layer "F.Cu") (net 5) (tstamp 2dc2d760-c9b2-45ed-af4d-bf6ca921272a))
(segment (start 118.609 76.2) (end 118.736 76.073) (width 0.508) (layer "F.Cu") (net 5) (tstamp 3458930d-bf26-419f-80c1-5e315aec534f))
(segment (start 108.839 75.946) (end 108.839 73.923) (width 0.508) (layer "F.Cu") (net 5) (tstamp 74af8432-0a74-436a-9b7f-ff43ccbbf03a))
(segment (start 108.839 73.923) (end 109.737 73.025) (width 0.508) (layer "F.Cu") (net 5) (tstamp c19bee49-530f-413e-8952-d34694327076))
(segment (start 118.736 76.2) (end 118.736 76.091) (width 0.508) (layer "F.Cu") (net 5) (tstamp f85adb87-b465-4a0b-a2ab-312e54a6976b))
(segment (start 115.123 74.279) (end 118.498 74.279) (width 0.508) (layer "F.Cu") (net 6) (tstamp 04fe582e-5ea1-48f9-99ac-13e29974f581))
(segment (start 114.218999 75.183001) (end 115.123 74.279) (width 0.508) (layer "F.Cu") (net 6) (tstamp 401fba94-8a54-42bc-a0f2-f14b14fcd655))
(segment (start 110.76601 71.38701) (end 110.76601 73.42801) (width 0.508) (layer "F.Cu") (net 6) (tstamp 690da8f3-9146-4f40-b497-27c38bdb8213))
(segment (start 109.737 70.358) (end 110.76601 71.38701) (width 0.508) (layer "F.Cu") (net 6) (tstamp 6ffdb8ed-329b-45e9-a73b-6b3ccdfa8743))
(segment (start 118.498 74.279) (end 118.736 74.041) (width 0.508) (layer "F.Cu") (net 6) (tstamp ab243fb7-2740-4b91-b59a-442c0634bdb2))
(segment (start 112.521001 75.183001) (end 114.218999 75.183001) (width 0.508) (layer "F.Cu") (net 6) (tstamp c1959e95-6a72-40f0-8cfe-91b8876a7643))
(segment (start 110.76601 73.42801) (end 112.521001 75.183001) (width 0.508) (layer "F.Cu") (net 6) (tstamp f98554be-782a-4862-8407-9d0beda6c626))
(segment (start 104.902 68.326) (end 106.925 68.326) (width 0.508) (layer "F.Cu") (net 7) (tstamp 13314e00-ba92-422e-bf11-79861628763b))
(segment (start 106.925 68.326) (end 107.687 67.564) (width 0.508) (layer "F.Cu") (net 7) (tstamp b84a78f6-d2fa-486e-b1fb-bec45065e55c))
(segment (start 107.179 70.866) (end 107.687 70.358) (width 0.508) (layer "F.Cu") (net 8) (tstamp 20613d0a-48be-4720-8df8-1ea5b8cbd166))
(segment (start 104.902 70.866) (end 107.179 70.866) (width 0.508) (layer "F.Cu") (net 8) (tstamp b6e75fed-40f8-4700-b59e-4133e881968a))
(segment (start 104.902 75.81) (end 107.687 73.025) (width 0.508) (layer "F.Cu") (net 9) (tstamp 1484fc7b-9b87-40cb-aece-f033e9b5d7e3))
(segment (start 104.902 75.946) (end 104.902 75.81) (width 0.508) (layer "F.Cu") (net 9) (tstamp 4d9439dd-6504-4979-9664-9029cf0681bc))
(zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 593214ea-f5d5-4b78-ac14-a6438be4b139) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 125.222 64.643)
(xy 125.984 78.867)
(xy 101.346 79.375)
(xy 102.362 65.151)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 123.259121 66.949002)
(xy 123.305614 67.002658)
(xy 123.317 67.055)
(xy 123.317 77.09)
(xy 123.296998 77.158121)
(xy 123.243342 77.204614)
(xy 123.191 77.216)
(xy 121.87826 77.216)
(xy 121.810139 77.195998)
(xy 121.763646 77.142342)
(xy 121.753542 77.072068)
(xy 121.771 77.023884)
(xy 121.798816 76.978757)
(xy 121.804963 76.965576)
(xy 121.856138 76.81129)
(xy 121.859005 76.797914)
(xy 121.868672 76.703562)
(xy 121.869 76.697146)
(xy 121.869 76.472115)
(xy 121.864525 76.456876)
(xy 121.863135 76.455671)
(xy 121.855452 76.454)
(xy 120.658 76.454)
(xy 120.589879 76.433998)
(xy 120.543386 76.380342)
(xy 120.532 76.328)
(xy 120.532 76.072)
(xy 120.552002 76.003879)
(xy 120.605658 75.957386)
(xy 120.658 75.946)
(xy 121.850884 75.946)
(xy 121.866123 75.941525)
(xy 121.867328 75.940135)
(xy 121.868999 75.932452)
(xy 121.868999 75.702905)
(xy 121.868662 75.696386)
(xy 121.858743 75.600794)
(xy 121.855851 75.5874)
(xy 121.804412 75.433216)
(xy 121.798239 75.420038)
(xy 121.712937 75.282193)
(xy 121.703897 75.270787)
(xy 121.643038 75.210033)
(xy 121.608959 75.147751)
(xy 121.613962 75.076931)
(xy 121.642883 75.031843)
(xy 121.705134 74.969484)
(xy 121.705138 74.969479)
(xy 121.710305 74.964303)
(xy 121.735438 74.92353)
(xy 121.799275 74.819968)
(xy 121.799276 74.819966)
(xy 121.803115 74.813738)
(xy 121.858797 74.645861)
(xy 121.8695 74.5414)
(xy 121.8695 73.5406)
(xy 121.861733 73.465739)
(xy 121.859238 73.441692)
(xy 121.859237 73.441688)
(xy 121.858526 73.434834)
(xy 121.838642 73.375233)
(xy 121.804868 73.274002)
(xy 121.80255 73.267054)
(xy 121.709478 73.116652)
(xy 121.643037 73.050326)
(xy 121.608958 72.988045)
(xy 121.613961 72.917225)
(xy 121.642882 72.872136)
(xy 121.704739 72.810171)
(xy 121.713751 72.79876)
(xy 121.798816 72.660757)
(xy 121.804963 72.647576)
(xy 121.856138 72.49329)
(xy 121.859005 72.479914)
(xy 121.868672 72.385562)
(xy 121.869 72.379146)
(xy 121.869 72.154115)
(xy 121.864525 72.138876)
(xy 121.863135 72.137671)
(xy 121.855452 72.136)
(xy 120.658 72.136)
(xy 120.589879 72.115998)
(xy 120.543386 72.062342)
(xy 120.532 72.01)
(xy 120.532 71.609885)
(xy 121.04 71.609885)
(xy 121.044475 71.625124)
(xy 121.045865 71.626329)
(xy 121.053548 71.628)
(xy 121.850884 71.628)
(xy 121.866123 71.623525)
(xy 121.867328 71.622135)
(xy 121.868999 71.614452)
(xy 121.868999 71.384905)
(xy 121.868662 71.378386)
(xy 121.858743 71.282794)
(xy 121.855851 71.2694)
(xy 121.804412 71.115216)
(xy 121.798239 71.102038)
(xy 121.712937 70.964193)
(xy 121.703901 70.952792)
(xy 121.642683 70.891681)
(xy 121.608604 70.829399)
(xy 121.613607 70.758579)
(xy 121.642528 70.71349)
(xy 121.704739 70.651171)
(xy 121.713751 70.63976)
(xy 121.798816 70.501757)
(xy 121.804963 70.488576)
(xy 121.856138 70.33429)
(xy 121.859005 70.320914)
(xy 121.868672 70.226562)
(xy 121.869 70.220146)
(xy 121.869 69.995115)
(xy 121.864525 69.979876)
(xy 121.863135 69.978671)
(xy 121.855452 69.977)
(xy 121.058115 69.977)
(xy 121.042876 69.981475)
(xy 121.041671 69.982865)
(xy 121.04 69.990548)
(xy 121.04 71.609885)
(xy 120.532 71.609885)
(xy 120.532 69.450885)
(xy 121.04 69.450885)
(xy 121.044475 69.466124)
(xy 121.045865 69.467329)
(xy 121.053548 69.469)
(xy 121.850884 69.469)
(xy 121.866123 69.464525)
(xy 121.867328 69.463135)
(xy 121.868999 69.455452)
(xy 121.868999 69.225905)
(xy 121.868662 69.219386)
(xy 121.858743 69.123794)
(xy 121.855851 69.1104)
(xy 121.804412 68.956216)
(xy 121.798239 68.943038)
(xy 121.712937 68.805193)
(xy 121.703901 68.793792)
(xy 121.642683 68.732681)
(xy 121.608604 68.670399)
(xy 121.613607 68.599579)
(xy 121.642528 68.55449)
(xy 121.704739 68.492171)
(xy 121.713751 68.48076)
(xy 121.798816 68.342757)
(xy 121.804963 68.329576)
(xy 121.856138 68.17529)
(xy 121.859005 68.161914)
(xy 121.868672 68.067562)
(xy 121.869 68.061146)
(xy 121.869 67.836115)
(xy 121.864525 67.820876)
(xy 121.863135 67.819671)
(xy 121.855452 67.818)
(xy 121.058115 67.818)
(xy 121.042876 67.822475)
(xy 121.041671 67.823865)
(xy 121.04 67.831548)
(xy 121.04 69.450885)
(xy 120.532 69.450885)
(xy 120.532 67.436)
(xy 120.552002 67.367879)
(xy 120.605658 67.321386)
(xy 120.658 67.31)
(xy 121.850884 67.31)
(xy 121.866123 67.305525)
(xy 121.867328 67.304135)
(xy 121.868999 67.296452)
(xy 121.868999 67.066904)
(xy 121.86872 67.061512)
(xy 121.885175 66.992448)
(xy 121.936357 66.943245)
(xy 121.994552 66.929)
(xy 123.191 66.929)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 117.59506 66.949002)
(xy 117.641553 67.002658)
(xy 117.652741 67.061246)
(xy 117.6525 67.0636)
(xy 117.6525 67.516972)
(xy 117.632498 67.585093)
(xy 117.615595 67.606067)
(xy 116.015174 69.206488)
(xy 115.952862 69.240514)
(xy 115.882047 69.235449)
(xy 115.859965 69.224654)
(xy 115.851971 69.219726)
(xy 115.851964 69.219723)
(xy 115.845738 69.215885)
(xy 115.685254 69.162655)
(xy 115.684389 69.162368)
(xy 115.684387 69.162368)
(xy 115.677861 69.160203)
(xy 115.671025 69.159503)
(xy 115.671022 69.159502)
(xy 115.627969 69.155091)
(xy 115.5734 69.1495)
(xy 114.8226 69.1495)
(xy 114.819354 69.149837)
(xy 114.81935 69.149837)
(xy 114.723692 69.159762)
(xy 114.723688 69.159763)
(xy 114.716834 69.160474)
(xy 114.710298 69.162655)
(xy 114.710296 69.162655)
(xy 114.578914 69.206488)
(xy 114.549054 69.21645)
(xy 114.398652 69.309522)
(xy 114.273695 69.434697)
(xy 114.271094 69.438916)
(xy 114.21397 69.479417)
(xy 114.143047 69.482649)
(xy 114.081635 69.447024)
(xy 114.075078 69.43947)
(xy 114.071478 69.433652)
(xy 113.947482 69.309872)
(xy 113.913403 69.24759)
(xy 113.9105 69.220699)
(xy 113.9105 68.701513)
(xy 113.930502 68.633392)
(xy 113.94835 68.613478)
(xy 113.947348 68.612478)
(xy 114.067131 68.492486)
(xy 114.072305 68.487303)
(xy 114.075102 68.482765)
(xy 114.132353 68.442176)
(xy 114.203276 68.438946)
(xy 114.264687 68.474572)
(xy 114.272062 68.483068)
(xy 114.280098 68.493207)
(xy 114.394829 68.607739)
(xy 114.40624 68.616751)
(xy 114.544243 68.701816)
(xy 114.557424 68.707963)
(xy 114.71171 68.759138)
(xy 114.725086 68.762005)
(xy 114.819438 68.771672)
(xy 114.825854 68.772)
(xy 114.925885 68.772)
(xy 114.941124 68.767525)
(xy 114.942329 68.766135)
(xy 114.944 68.758452)
(xy 114.944 68.753884)
(xy 115.452 68.753884)
(xy 115.456475 68.769123)
(xy 115.457865 68.770328)