-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUARTtoESP.kicad_pcb
6207 lines (6177 loc) · 279 KB
/
UARTtoESP.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
(pad_to_mask_clearance 0.05)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "TX")
(net 2 "RX")
(net 3 "5")
(net 4 "4")
(net 5 "0")
(net 6 "2")
(net 7 "15")
(net 8 "GND")
(net 9 "13")
(net 10 "12")
(net 11 "14")
(net 12 "16")
(net 13 "ADC")
(net 14 "RST")
(net 15 "Net-(U1-Pad18)")
(net 16 "Net-(U1-Pad17)")
(net 17 "Net-(U1-Pad15)")
(net 18 "Net-(U1-Pad8)")
(net 19 "Net-(U1-Pad7)")
(net 20 "Net-(U1-Pad6)")
(net 21 "Net-(U1-Pad5)")
(net 22 "Net-(U1-Pad4)")
(net 23 "Net-(U1-Pad3)")
(net 24 "Net-(U1-Pad2)")
(net 25 "Net-(U1-Pad1)")
(net 26 "/DTR")
(net 27 "/RTSR")
(net 28 "/RTS")
(net 29 "/DTRR")
(net 30 "VCC")
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp 00000000-0000-0000-0000-00005f3e5b1f)
(at 50.038 90.17 -90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path "/00000000-0000-0000-0000-00005f4194d6")
(attr through_hole)
(fp_text reference "Q1" (at 1.27 -3.56 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 743d5c96-1df6-41ec-b841-e90af9b17bab)
)
(fp_text value "BC547" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd1e22c1-717e-4e29-9bb1-9fe9909ac941)
)
(fp_text user "${REFERENCE}" (at 1.27 -3.56 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b8980f6-4fbb-490a-9fc7-0bc172a84438)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp dca5e6f1-8930-442b-8c91-70dfab052126))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp b09d1a3d-3911-4668-a5ed-159cd891259c))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp f288fe48-77f5-481c-a12f-e51d63e8ec6c))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 5401f564-5b49-47e7-9334-1c3ce1d9638f))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp be91194a-f0f6-48a7-ab2a-5adf40c51e55))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp d0cb9bc4-cfd6-4d51-ae2a-54ff52551ab2))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp ff56f4a8-f40b-4eb4-a0d0-a3915f602aee))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 7f424174-c834-41bf-b648-2c657932c3d3))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp 95e0d504-c828-4569-b46b-794f3e54d1a1))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp bf2886c1-9964-4558-99ad-5534a154488f))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 5 "0") (tstamp b062ec01-9e46-4ac6-a9e6-14a4fe8bfbba))
(pad "2" thru_hole oval locked (at 1.27 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 27 "/RTSR") (tstamp c7fe6e16-5488-47ea-8147-23a08f8c453c))
(pad "3" thru_hole oval locked (at 2.54 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 26 "/DTR") (tstamp 3240ca8c-b4b8-4867-b612-e21c20bf6f45))
(model "${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp 00000000-0000-0000-0000-00005f3e5b31)
(at 54.864 90.17 -90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path "/00000000-0000-0000-0000-00005f419bb5")
(attr through_hole)
(fp_text reference "Q2" (at 1.27 -3.56 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d9899b3-1599-4adb-b5c8-13b876c59a70)
)
(fp_text value "BC547" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45c9edaa-b73a-404d-87f5-2d0fe7425c5f)
)
(fp_text user "${REFERENCE}" (at 1.27 -3.56 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 207d767d-6512-45a5-9696-eecfce3e1386)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp 241467b8-e460-42bf-88c6-0c5a9b85eca6))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 97e9fbcb-af0b-4c3e-abfb-4f10d49e71af))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp a643ef14-1d87-4837-8dcc-11bcc96f4538))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 2cd26de1-7b55-4d97-9e0b-8aba3ba1c376))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 679cf961-31fb-4f94-b3e8-e1e94f67e2ad))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp 6e5a988b-ef11-4af0-b41f-f2b2a3ff645d))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp 82cae49d-072e-41dc-99e1-893ffc0421e4))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp eff43f54-fbce-45b0-8e37-4d6dacfd2692))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp d2e6fba3-6e51-4c38-b3f8-70b21de7d666))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp f3b544aa-5e9f-47c1-9524-4b95e6f3cb06))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 14 "RST") (tstamp 34488657-e55d-4963-806f-d07ae33d9431))
(pad "2" thru_hole oval locked (at 1.27 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 29 "/DTRR") (tstamp b324c23e-4834-4841-8a3d-92513a35ce42))
(pad "3" thru_hole oval locked (at 2.54 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 28 "/RTS") (tstamp ed03f62b-0af3-4af1-bafa-ee200e5af3d0))
(model "${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005f3e5b48)
(at 84.836 89.408 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00005f43efb3")
(attr through_hole)
(fp_text reference "R1" (at 5.08 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 528b5f5b-c4c4-4419-8ada-720b4a029a9a)
)
(fp_text value "12kR" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c364005a-a25a-4c89-aa96-1696213fbc41)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cb76dd2-34db-471a-a15e-0aa4964afa6b)
)
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5097c918-c650-4e2a-a9c4-ab60c50fb53c))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7fe53549-d9e9-4ee8-b265-8840ffec144e))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 9b8da671-d1bf-4bcc-ac93-0f11bf7a7439))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b4eeed52-d252-4111-9cb0-39fb50300071))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp df8b986c-ce53-4949-8623-886cb0d3fb76))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp fa91f924-c1f8-4042-bb52-29d0d5833076))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 00c1732e-9e11-4f7a-a43d-83a863229c8a))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4681022e-fa28-4492-abdc-b6f782338acb))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4deef919-8f34-487a-888e-b128fd3c8eb6))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5e225752-d3cf-46b3-821c-9a585d74d20b))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 1f3b5a2d-3f81-4619-bd39-21253f766bfa))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 36bdf3cc-9b32-45bd-af9f-1804e124f5ed))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4ab0d29c-650e-4c29-9b00-70e78220fc33))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp a72d7441-1f13-453b-ac7c-923d655f3d25))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp c98b9903-a9f3-4c5a-9a0f-fad4ede0415a))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp e08568bb-faa3-4a59-9d8d-b87b1d8d66ec))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "15") (tstamp 9d372d24-7966-4d45-945b-df3b0fc38065))
(pad "2" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp 07af1679-5916-452a-8cb8-4e6f46b916e8))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005f3e5b5f)
(at 48.514 99.314)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00005f44af37")
(attr through_hole)
(fp_text reference "R2" (at 5.08 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad427632-25ce-4e8a-a1c6-ed3b65b0c8ce)
)
(fp_text value "1kR" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aeba9f1d-d919-464d-b8be-40ac7f144371)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc596efd-7e6c-4757-80e2-d3a315df7639)
)
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2a05c1c4-b993-4dc9-8673-8b7164625b65))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4eb5e4c1-6c34-46a7-bbfa-8310d311fa74))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8a393be7-2f65-407f-b3d2-5165d79c1d62))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9210e465-75c1-4b32-913b-0372457cebd4))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp b133afd5-1868-4e10-b2fd-3a1d3c1c9053))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp d153fcae-b14c-4a26-8998-c65308ad3190))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1683821b-0530-4795-ae67-6348bbb48447))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2295ea36-129c-41ab-a0db-b47fede7f9e4))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 83c3d626-11c5-43eb-ba3a-b51a92a150a5))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 872fac44-a50f-4360-b1e9-c62e0443050b))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 123943d7-d42d-4e3e-8dbc-60346dbafc0e))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 46f46e9f-b659-4bd1-9f18-bcadb84a2ee3))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 61f83bcd-b744-412b-8c4c-61d02a2349b4))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7e40e55f-6c5c-4668-85f3-5d8f8f9658f2))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp a0cb9a3a-1677-444f-95aa-d22a90f4d2b2))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp ed38c0a4-ce8c-423c-8a93-efd99239570d))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/RTSR") (tstamp 61e9b5b3-e553-45e0-958d-94cb383f68f3))
(pad "2" thru_hole oval locked (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/RTS") (tstamp 2a31ffce-3997-4b11-b023-4168b9696e5d))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005f3e5b76)
(at 58.674 95.758 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00005f44bb49")
(attr through_hole)
(fp_text reference "R3" (at 5.08 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e20854f-295f-476b-b5dd-a388ecc7bce4)
)
(fp_text value "1kR" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ab3a8dd-907e-4d27-ad47-1cf4a98380cf)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 848921d1-36fc-4ff3-8aec-1f47bdfb12d1)
)
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 16c9bf78-1bce-49c7-b697-2850a36269d4))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp b9caae06-f010-4274-8462-7b0dbf40a40b))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp c5e0f6cd-df4d-40e5-a33e-862730ce5d14))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp d085768c-6f3e-4c96-9b75-5b248d5cc596))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp d75f6bda-825f-4f53-b3e8-7a8734fcfe18))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp dc724802-e29e-4fda-9650-a60d350e9e50))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 40efde62-dd5f-4c28-b692-3d471ed2d896))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8bf273be-e35e-4888-84d0-64f91cba9bae))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a4429ec9-2bd5-46b7-9617-1fd42243a75a))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp aeffdf5f-9c68-432a-8b1b-6f727c5e917b))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 02482739-a598-4693-b28a-f5dea63c6ee6))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 185114f2-7f73-459d-9dd8-6120fd6b8031))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7b4238df-b9f5-400f-bf49-37f33990f945))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp a33b0ec8-c275-48ac-953c-896bbdea7011))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp d3d2f08e-edd7-4053-9055-afd038cbef6a))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp fd21672a-11c6-4c7d-a831-527a6c37f0de))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/DTRR") (tstamp 7ec8e42a-d2ad-4a3c-9382-7aad898c5da9))
(pad "2" thru_hole oval locked (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/DTR") (tstamp 99a60e71-a924-4320-bc08-163d5dd30430))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "USBtoUART_USBtoTTL_FT232RL:USBtoUART_USBtoTTL_FT232rl" (layer "F.Cu")
(tedit 5F3D381C) (tstamp 00000000-0000-0000-0000-00005f3e5bc6)
(at 45.974 117.856 90)
(descr "USB to UART Adapter")
(tags "Programming FT232 UART")
(path "/00000000-0000-0000-0000-00005f32ecb1")
(attr through_hole)
(fp_text reference "U1" (at 7.73 -2.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a78f9b5-4b39-4cfe-ae68-c4ecb41a2e61)
)
(fp_text value "USBtoUART_adapter" (at 7.73 -3.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aae7cc99-f358-4fa3-9471-277a42140e79)
)
(fp_text user "FTDI RS232 Module" (at 8.255 21.59) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aea16c35-bec8-4c92-a15b-4177147389c8)
)
(fp_text user "Horizontal Pins from" (at 7.62 36.83 90) (layer "Cmts.User")
(effects (font (size 0.7 0.7) (thickness 0.125)))
(tstamp 54d625c1-e113-4590-aabd-8d7d147e4efa)
)
(fp_text user " Module at 6mm or higher" (at 7.62 39.37 90) (layer "Cmts.User")
(effects (font (size 0.7 0.7) (thickness 0.125)))
(tstamp d36406b2-0a3f-45f5-a1fe-b351e72778ac)
)
(fp_poly (pts
(xy 11.43 8.89)
(xy 3.81 8.89)
(xy 3.81 -0.635)
(xy 11.43 -0.635)
) (layer "F.SilkS") (width 0.1) (fill solid) (tstamp d383f8db-8742-44d8-bc23-e7e30e6b6bea))
(fp_poly (pts
(xy 15.24 43.18)
(xy 0 43.18)
(xy 0 35.56)
(xy 15.24 35.56)
) (layer "F.SilkS") (width 0.1) (fill solid) (tstamp d7b97afd-526a-45b8-8b5e-8f13731bd90e))
(fp_line (start 3.81 -0.565) (end 11.43 -0.565) (layer "F.Fab") (width 0.12) (tstamp 02f2507a-4650-4f1c-a592-4129922ae4e1))
(fp_line (start 12.33 0) (end 16.51 0) (layer "F.Fab") (width 0.12) (tstamp 17e3069f-0e32-4f1e-bafd-7edfe7883467))
(fp_line (start -1.27 36) (end -1.27 0) (layer "F.Fab") (width 0.12) (tstamp 3f05c31b-bba7-475f-a41b-44ef102cdf0a))
(fp_line (start 3.81 8.635) (end 11.43 8.635) (layer "F.Fab") (width 0.12) (tstamp 4afa0dea-64e7-4b36-a5e8-669adb83df2a))
(fp_line (start 3.81 8.635) (end 3.81 -0.565) (layer "F.Fab") (width 0.12) (tstamp 56c07dfb-4e7e-4299-ae5f-0bda4e181dca))
(fp_line (start 11.43 -0.565) (end 11.43 8.635) (layer "F.Fab") (width 0.12) (tstamp 8fc69186-2cd2-4ab8-ad88-1865cd28363b))
(fp_line (start -1.27 0) (end 12.33 0) (layer "F.Fab") (width 0.12) (tstamp b057dcc3-36e2-48c2-8b13-3c3a759fc446))
(fp_line (start 16.51 36) (end -1.27 36) (layer "F.Fab") (width 0.12) (tstamp ecac8364-34d6-4edb-a809-e430c94e9390))
(fp_line (start 16.51 0) (end 16.51 36) (layer "F.Fab") (width 0.12) (tstamp f2050c5e-d9b5-47d8-8780-809cf845dd4f))
(pad "1" thru_hole circle locked (at 0 12.7 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 25 "Net-(U1-Pad1)") (tstamp b9674ee6-222e-44e4-a7b4-aff9a1611a03))
(pad "2" thru_hole circle locked (at 0 15.24 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 24 "Net-(U1-Pad2)") (tstamp b1695f47-ac08-4f3e-ba48-4152587fbf44))
(pad "3" thru_hole circle locked (at 0 17.78 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 23 "Net-(U1-Pad3)") (tstamp de505dee-02aa-4b8c-897d-3671e205f146))
(pad "4" thru_hole circle locked (at 0 20.32 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 22 "Net-(U1-Pad4)") (tstamp 9c6270cf-694d-4da7-84d2-bbd0e15a8e50))
(pad "5" thru_hole circle locked (at 0 22.86 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 21 "Net-(U1-Pad5)") (tstamp 409731f3-1daa-435c-9468-e8db9b71d381))
(pad "6" thru_hole circle locked (at 0 25.4 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 20 "Net-(U1-Pad6)") (tstamp 8c1e2e9a-b12e-4ff3-93ab-62b08c0d81f6))
(pad "7" thru_hole circle locked (at 0 27.94 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 19 "Net-(U1-Pad7)") (tstamp 4159cf41-0b57-4192-9b61-da54e4c25cb9))
(pad "8" thru_hole circle locked (at 0 30.48 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 18 "Net-(U1-Pad8)") (tstamp 180546b1-e57b-4061-ad24-ff7b7386e3b6))
(pad "9" thru_hole circle locked (at 0 33.02 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp 3384c68a-59c2-4aa8-a1af-dade1049281d))
(pad "10" thru_hole circle locked (at 15.24 33.02 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 "RX") (tstamp deb8d814-55df-4b47-aad3-218d172d92c4))
(pad "11" thru_hole circle locked (at 15.24 30.48 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 26 "/DTR") (tstamp 12abd41b-6040-44a9-a18d-93bf1b987d58))
(pad "12" thru_hole circle locked (at 15.24 27.94 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 28 "/RTS") (tstamp c10f669b-9111-4e9c-9c61-d6006527ee21))
(pad "13" thru_hole circle locked (at 15.24 25.4 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 30 "VCC") (tstamp e91ba45b-d05b-4668-8cdd-49a7c4b321d7))
(pad "14" thru_hole circle locked (at 15.24 22.86 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 1 "TX") (tstamp f92058fe-a00e-4f89-a7c1-7c4c7c721027))
(pad "15" thru_hole circle locked (at 15.24 20.32 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 17 "Net-(U1-Pad15)") (tstamp bceea4e1-127b-4b4c-a4b4-586221bd829c))
(pad "16" thru_hole circle locked (at 15.24 17.78 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp aadbd683-9b62-4d83-9800-712db7ceb87c))
(pad "17" thru_hole circle locked (at 15.24 15.24 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 16 "Net-(U1-Pad17)") (tstamp c5317549-9353-405a-a7f8-a104168244ab))
(pad "18" thru_hole circle locked (at 15.24 12.7 90) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 15 "Net-(U1-Pad18)") (tstamp ed3a2047-7d8f-4657-b03e-9eda9c2dbe6e))
)
(footprint "Capacitor_THT:C_Rect_L7.0mm_W2.0mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005f3e6cd0)
(at 74.041 89.281)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor")
(path "/00000000-0000-0000-0000-00005f409dae")
(attr through_hole)
(fp_text reference "C2" (at 2.5 -2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05a25b13-d215-486b-97e6-d729c2272851)
)
(fp_text value "100nF" (at 2.5 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7209840e-8768-4b40-92dd-c0c8aec0deaa)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 249c167e-e642-4c16-802e-2fe1e882532e)
)
(fp_line (start -1.12 -1.12) (end 6.12 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 25be84a0-0e46-4313-9351-2a3309201b8a))
(fp_line (start -1.12 1.12) (end 6.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp 92fbcdbb-8852-485c-9a66-be7e183a4297))
(fp_line (start 6.12 -1.12) (end 6.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp d66d0bb0-8b48-4a5c-8a64-cd567214017d))
(fp_line (start -1.12 -1.12) (end -1.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp f3ec6d63-2ed4-4b09-a214-43a451d02e99))
(fp_line (start -1.25 1.25) (end 6.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 06b3b4a0-81d2-4b0c-b812-42d7d7059d27))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 67fde133-d8bb-4074-91a9-9834bb149302))
(fp_line (start 6.25 1.25) (end 6.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp ee468c68-507e-4519-b9d7-d7033a7bbb03))
(fp_line (start 6.25 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp f5f1686d-1b3f-41da-a0e0-15b5446ad612))
(fp_line (start 6 -1) (end -1 -1) (layer "F.Fab") (width 0.1) (tstamp 5234f547-9c9e-4ab8-815d-bd566072919a))
(fp_line (start -1 -1) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp aaf56fe7-c9f5-419d-93e9-69a3e1e07679))
(fp_line (start 6 1) (end 6 -1) (layer "F.Fab") (width 0.1) (tstamp e906eded-656c-4a57-9cf6-c034524f846f))
(fp_line (start -1 1) (end 6 1) (layer "F.Fab") (width 0.1) (tstamp ea40c260-cd49-4e86-8466-68a1131e2bb2))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "VCC") (tstamp 6a494305-f2a5-4d3f-b5d8-0d82d846717b))
(pad "2" thru_hole circle locked (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp d54ef3f4-535b-4d9e-aa50-0577f71837d8))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.0mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005f441607)
(at 47.244 119.126 90)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f401e1d-cf0b-4a1b-883c-3d9a423af987)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cac22f4a-c3db-4708-b0e1-0126976b231b)
)
(fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 619c8463-a0dd-4bd7-a7f4-208600044129)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp de479b2d-8a64-48fe-9f4d-959d576e81b8))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5b8e5844-7c35-42fb-a1bf-ccc56159ba10))
(pad "" np_thru_hole circle locked (at 0 0 90) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 7a853557-ea29-4f29-a2f5-55f5f1c1e332))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005f44162b)
(at 89.154 119.126 90)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb2b08df-74a4-4044-a3e8-529b19e0b78c)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e023a446-ec6f-47dd-8f86-71f71b9155fc)
)
(fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d30e6d6-1c35-490e-a307-a17174eb367f)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 71ccbe78-c30b-4cb9-bfcf-319540e6a2d4))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3c8122bb-64bf-43df-bd8a-aebc03e7b34d))
(pad "" np_thru_hole circle locked (at 0 0 90) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp cf978d77-5891-48ba-9095-880e96d1a30e))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005f441673)
(at 47.244 40.386 90)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d3b0e03-9b36-4ca2-94ef-35117d9a0ad5)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7431e36-31d9-4821-a187-e9f8da189407)
)
(fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bacf600d-92bf-48f5-b1c2-bc6d62bce9aa)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp bb3a1a01-46b3-4e8c-b9bf-1a3117df2a41))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6c7dd9be-76a3-40ce-adb5-4923b36658cb))
(pad "" np_thru_hole circle locked (at 0 0 90) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 4e011452-acd5-4eec-86a7-86e3e3aa452e))
)
(footprint "fiducial-lpkf-kicad-footprint-master:LPKF_Passermarke_Pad_D1.5mm" (layer "F.Cu")
(tedit 5BDDCA56) (tstamp 00000000-0000-0000-0000-00005f44188c)
(at 89.154 119.126 90)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -1.648 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00a6ae97-6b8c-46ed-9a49-3a56263c2e2b)
)
(fp_text value "LPKF_Passermarke_Pad_D1.5mm" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f0d622c-34d3-45c2-b18a-8d4307b9e4e8)
)
(fp_text user "${REFERENCE}" (at 0 -1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b59abc5-b794-4a00-a075-a5e9a6eeb8f0)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 81e76898-e44d-4930-a1c8-72966ad3728a))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6e8da87b-eeac-4d45-bee3-0f8a63067321))
(pad "1" smd circle locked (at 0 0 90) (size 1.5 1.5) (layers "F.Cu" "F.Mask" "Eco1.User") (tstamp 966562fe-1d8b-47f3-9e11-b2d41f6d087b))
)
(footprint "fiducial-lpkf-kicad-footprint-master:LPKF_Passermarke_Pad_D1.5mm" (layer "F.Cu")
(tedit 5BDDCA56) (tstamp 00000000-0000-0000-0000-00005f4418b0)
(at 89.154 40.386 90)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -1.648 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b3c64b6-2265-40ac-95ff-b6f9e9b89ff8)
)
(fp_text value "LPKF_Passermarke_Pad_D1.5mm" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de89d8b8-eac8-43af-985e-17536fc10f5f)
)
(fp_text user "${REFERENCE}" (at 0 -1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3881e328-6e9a-41e7-8b65-a8fdfa6d3871)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 7ad260e4-51a5-4d40-8d19-ceb37ca756ab))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ffebc7cb-636a-4a50-92db-72bd81cc6b55))
(pad "1" smd circle locked (at 0 0 90) (size 1.5 1.5) (layers "F.Cu" "F.Mask" "Eco1.User") (tstamp 57f480e3-ece3-44d2-89a9-d424f8edb2e5))
)
(footprint "fiducial-lpkf-kicad-footprint-master:LPKF_Passermarke_Pad_D1.5mm" (layer "F.Cu")
(tedit 5BDDCA56) (tstamp 00000000-0000-0000-0000-00005f462ca1)
(at 47.244 119.126 90)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -1.648 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bf99a54-db29-4c40-8938-e10910559b7d)
)
(fp_text value "LPKF_Passermarke_Pad_D1.5mm" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61f9ebeb-2469-4b05-b496-6de99bffd585)
)
(fp_text user "${REFERENCE}" (at 0 -1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ad2266e-0380-433c-ab8d-8c78c4eefb7a)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c83da201-080c-4528-94f0-df0a9cddf370))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp de3c6cff-ab44-49af-ab4d-ab3cb44a90c5))
(pad "1" smd circle locked (at 0 0 90) (size 1.5 1.5) (layers "F.Cu" "F.Mask" "Eco1.User") (tstamp 760d5fb1-d77c-49c3-962e-d9e2e9095ddc))
)
(footprint "Capacitor_THT:CP_Radial_D10.0mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF1) (tstamp 00000000-0000-0000-0000-000061b2b9f0)
(at 74.93 95.758)
(descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor")
(path "/00000000-0000-0000-0000-000061b64953")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -6.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 450aad9e-d24a-42f8-aa57-69b38c5c935a)
)
(fp_text value "100µ" (at 2.5 6.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e76c30b4-c390-4db9-89e3-79e5abec4592)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 966ed410-c712-40b4-b809-04de4b57b60a)
)
(fp_line (start 6.941 -2.51) (end 6.941 2.51) (layer "F.SilkS") (width 0.12) (tstamp 029e2817-2eb1-48e5-bd19-fce8c8ae8a79))
(fp_line (start 6.101 -3.601) (end 6.101 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 02d8d9f9-d168-449b-9e26-0c61628a8fbf))
(fp_line (start 3.621 -4.956) (end 3.621 4.956) (layer "F.SilkS") (width 0.12) (tstamp 03e58678-fc0c-4bad-9809-082bee744486))
(fp_line (start 6.061 1.241) (end 6.061 3.64) (layer "F.SilkS") (width 0.12) (tstamp 043e1313-b567-4d98-a79a-6c7e5ae38c56))
(fp_line (start 4.141 -4.811) (end 4.141 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 04c8032a-6403-4104-a4d8-7f28fdb3aa68))
(fp_line (start 5.701 -3.957) (end 5.701 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 05e635c2-41ba-4be1-aeee-d59b928b8a09))
(fp_line (start 5.541 -4.08) (end 5.541 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 06a34a01-e213-470c-8880-39d42de73633))
(fp_line (start 6.981 -2.439) (end 6.981 2.439) (layer "F.SilkS") (width 0.12) (tstamp 0713aa4e-7625-48c6-9307-20bce831117b))
(fp_line (start 6.181 1.241) (end 6.181 3.52) (layer "F.SilkS") (width 0.12) (tstamp 0744be63-3ed2-4b6b-a60b-730608b1e512))
(fp_line (start 4.421 -4.707) (end 4.421 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 09f234f1-44d4-4864-842c-eefca76850bc))
(fp_line (start 4.901 -4.483) (end 4.901 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 0a2de9db-5565-4325-ab1b-82795745d42c))
(fp_line (start 5.061 1.241) (end 5.061 4.395) (layer "F.SilkS") (width 0.12) (tstamp 0b9d57d7-f0a7-403e-aa61-fa344483a276))
(fp_line (start 3.301 -5.018) (end 3.301 5.018) (layer "F.SilkS") (width 0.12) (tstamp 0cd5bbf7-7650-4f95-b1b8-943487d9e772))
(fp_line (start 3.461 -4.99) (end 3.461 4.99) (layer "F.SilkS") (width 0.12) (tstamp 0d7949d8-802b-404e-877f-60435fa67a20))
(fp_line (start 6.021 1.241) (end 6.021 3.679) (layer "F.SilkS") (width 0.12) (tstamp 0ed91261-cddc-4297-8135-6185f58b8574))
(fp_line (start 3.821 1.241) (end 3.821 4.907) (layer "F.SilkS") (width 0.12) (tstamp 13caf24d-d10d-4f99-80c1-7ebd632371e6))
(fp_line (start 6.461 -3.206) (end 6.461 3.206) (layer "F.SilkS") (width 0.12) (tstamp 142afca4-f114-4d0c-be56-af2a970203d7))
(fp_line (start 5.461 -4.138) (end 5.461 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 17145d6d-28d3-4129-91c7-a9df5b67cc32))
(fp_line (start 6.021 -3.679) (end 6.021 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 17309a6f-8e6c-4eb5-911c-f602defd6f32))
(fp_line (start 5.621 -4.02) (end 5.621 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 196d1be7-da4e-4fce-aa22-0ffa192a0b85))
(fp_line (start 6.421 -3.254) (end 6.421 3.254) (layer "F.SilkS") (width 0.12) (tstamp 1b8f9969-2d4b-448e-95d6-56087199e5a8))
(fp_line (start 5.221 1.241) (end 5.221 4.298) (layer "F.SilkS") (width 0.12) (tstamp 1c9d5521-be75-47d6-8707-4bb753efc781))
(fp_line (start 4.301 1.241) (end 4.301 4.754) (layer "F.SilkS") (width 0.12) (tstamp 1dd35c23-5aea-4b04-8dcb-825ab5ab0b64))
(fp_line (start 6.341 -3.347) (end 6.341 3.347) (layer "F.SilkS") (width 0.12) (tstamp 1de51906-f66b-4f90-92ef-fa891a7d70a9))
(fp_line (start 7.301 -1.742) (end 7.301 1.742) (layer "F.SilkS") (width 0.12) (tstamp 1fe2d87a-8b12-47fa-abb5-46a7ed4c5b0a))
(fp_line (start 2.86 -5.068) (end 2.86 5.068) (layer "F.SilkS") (width 0.12) (tstamp 202ec7a9-537a-4488-a466-6e85c3bb7064))
(fp_line (start 4.261 -4.768) (end 4.261 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 213d9570-1a22-4651-b223-7c44675c7580))
(fp_line (start 4.781 1.241) (end 4.781 4.545) (layer "F.SilkS") (width 0.12) (tstamp 2154c1aa-90b6-4f20-a1b9-0576aa6881e0))
(fp_line (start 2.78 -5.073) (end 2.78 5.073) (layer "F.SilkS") (width 0.12) (tstamp 223c9954-954d-4548-a6aa-dcf4ff08285c))
(fp_line (start 7.461 -1.23) (end 7.461 1.23) (layer "F.SilkS") (width 0.12) (tstamp 22da3ca4-a4ff-4b89-acde-9de99460feea))
(fp_line (start 4.221 1.241) (end 4.221 4.783) (layer "F.SilkS") (width 0.12) (tstamp 24626a2b-a809-4373-9ba6-576c3387e0f7))
(fp_line (start 4.701 -4.584) (end 4.701 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 24e61385-b11f-4126-8cd0-2ac724a8195d))
(fp_line (start 7.541 -0.862) (end 7.541 0.862) (layer "F.SilkS") (width 0.12) (tstamp 2508431a-fa33-4cd7-953e-4d09f93860c0))
(fp_line (start 6.821 -2.709) (end 6.821 2.709) (layer "F.SilkS") (width 0.12) (tstamp 2783b2c6-7524-42d4-833f-e064750b0a23))
(fp_line (start 7.221 -1.944) (end 7.221 1.944) (layer "F.SilkS") (width 0.12) (tstamp 27896d47-db7f-4ae4-a983-55e805c7681b))
(fp_line (start 5.141 -4.347) (end 5.141 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 28a480a7-b403-4cc6-bb10-7becd4df53d1))
(fp_line (start 7.381 -1.51) (end 7.381 1.51) (layer "F.SilkS") (width 0.12) (tstamp 29830f38-157c-41e8-bb8d-1b05e0af37e3))
(fp_line (start 4.141 1.241) (end 4.141 4.811) (layer "F.SilkS") (width 0.12) (tstamp 2a07c9b5-2041-44f8-a729-cc53314c6c76))
(fp_line (start 3.941 1.241) (end 3.941 4.874) (layer "F.SilkS") (width 0.12) (tstamp 2b7d2462-8019-4b69-828c-83767d4a367d))
(fp_line (start 3.541 -4.974) (end 3.541 4.974) (layer "F.SilkS") (width 0.12) (tstamp 2df963a8-9360-46a8-a614-eeeea6701b22))
(fp_line (start 4.541 1.241) (end 4.541 4.657) (layer "F.SilkS") (width 0.12) (tstamp 2fe3139a-f90f-4b79-b74d-fa98253eea7b))
(fp_line (start 5.381 -4.194) (end 5.381 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 31d39436-a000-42d4-a80d-b8c27465e013))
(fp_line (start 4.101 -4.824) (end 4.101 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 342283ae-2d3a-45d2-88dd-490669bb2032))
(fp_line (start 3.701 -4.938) (end 3.701 4.938) (layer "F.SilkS") (width 0.12) (tstamp 35a1f610-ef10-4311-8f50-13526b6fcaf1))
(fp_line (start 4.941 -4.462) (end 4.941 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 36312a45-7b7f-432d-a665-d5ed1cadc6e8))
(fp_line (start 2.54 -5.08) (end 2.54 5.08) (layer "F.SilkS") (width 0.12) (tstamp 36b81866-0272-4693-b92a-2ed49e49dc58))
(fp_line (start 3.781 1.241) (end 3.781 4.918) (layer "F.SilkS") (width 0.12) (tstamp 378180fd-fea1-4174-9b0a-17380bbc7622))
(fp_line (start 3.381 -5.004) (end 3.381 5.004) (layer "F.SilkS") (width 0.12) (tstamp 39c0dde7-f700-41b0-a7b6-0f6629691215))
(fp_line (start 4.741 1.241) (end 4.741 4.564) (layer "F.SilkS") (width 0.12) (tstamp 3ab2dca6-fe4a-4612-9585-fd7ea156753c))
(fp_line (start 5.861 -3.824) (end 5.861 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 3f6c667a-629d-472d-b1ad-770a63b3ce78))
(fp_line (start 5.501 -4.11) (end 5.501 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 4587bd80-619f-493e-b3e3-075c676b522c))
(fp_line (start 3.501 -4.982) (end 3.501 4.982) (layer "F.SilkS") (width 0.12) (tstamp 465b5449-0419-4131-afd6-7d6ee0e84384))
(fp_line (start 3.781 -4.918) (end 3.781 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 473b9dac-d4ed-4e85-a9f7-188e70f33823))
(fp_line (start 2.66 -5.078) (end 2.66 5.078) (layer "F.SilkS") (width 0.12) (tstamp 4c158ca6-db8e-45ed-b681-91818c21f49b))
(fp_line (start 6.541 -3.106) (end 6.541 3.106) (layer "F.SilkS") (width 0.12) (tstamp 4ca1a57a-4267-4300-ad76-91fd77a65bed))
(fp_line (start 5.701 1.241) (end 5.701 3.957) (layer "F.SilkS") (width 0.12) (tstamp 4d3d0252-2f76-443a-bfa9-958f78b5fc72))
(fp_line (start 3.741 -4.928) (end 3.741 4.928) (layer "F.SilkS") (width 0.12) (tstamp 4d7e7f91-8e71-4f38-bd78-c75b725bf13d))
(fp_line (start 3.941 -4.874) (end 3.941 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 51019848-4e26-4a55-99a6-1622ca1b6a32))
(fp_line (start 6.581 -3.054) (end 6.581 3.054) (layer "F.SilkS") (width 0.12) (tstamp 51dc6c88-59cd-4293-8b32-7c95cf503578))
(fp_line (start 4.941 1.241) (end 4.941 4.462) (layer "F.SilkS") (width 0.12) (tstamp 52078978-ea60-44ee-b03d-f84c545346bf))
(fp_line (start 3.861 -4.897) (end 3.861 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 52d28046-934e-4adc-9ad0-abcb971bd764))
(fp_line (start 4.181 -4.797) (end 4.181 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 5558e584-d118-44fe-a416-b5b94e37331c))
(fp_line (start 6.261 -3.436) (end 6.261 3.436) (layer "F.SilkS") (width 0.12) (tstamp 558043cb-88ec-4a0e-b1af-cabf5a400f90))
(fp_line (start 4.501 -4.674) (end 4.501 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 55b9a9ce-0db1-4b4a-b169-a06ea7231664))
(fp_line (start 6.661 -2.945) (end 6.661 2.945) (layer "F.SilkS") (width 0.12) (tstamp 55df068d-76c2-4e8c-9c81-9f952a29f245))
(fp_line (start 3.821 -4.907) (end 3.821 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 58144db2-ace6-420f-a5e9-20b4a7ed70b6))
(fp_line (start 2.7 -5.077) (end 2.7 5.077) (layer "F.SilkS") (width 0.12) (tstamp 588563de-6c15-47d6-9cdf-7e93e10fe3fd))
(fp_line (start 7.581 -0.599) (end 7.581 0.599) (layer "F.SilkS") (width 0.12) (tstamp 59123bd4-d635-421a-9347-7ee22e9a7420))
(fp_line (start 5.941 -3.753) (end 5.941 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 598ef947-5550-4318-adbd-a52d1b5a4234))
(fp_line (start 5.341 1.241) (end 5.341 4.221) (layer "F.SilkS") (width 0.12) (tstamp 5cc84ef1-b9d8-4883-b614-d65625e54eb7))
(fp_line (start 5.101 1.241) (end 5.101 4.371) (layer "F.SilkS") (width 0.12) (tstamp 605acf9e-99d9-4169-875e-cc28cbe4fee1))
(fp_line (start -2.479646 -3.375) (end -2.479646 -2.375) (layer "F.SilkS") (width 0.12) (tstamp 63832506-0280-4a8e-b1de-de3cf5099dee))
(fp_line (start 4.821 -4.525) (end 4.821 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 6746d53d-c225-40f9-a308-19d8677dab44))
(fp_line (start 5.901 1.241) (end 5.901 3.789) (layer "F.SilkS") (width 0.12) (tstamp 67bc4b1e-1714-4b22-897f-6e2657df0bf6))
(fp_line (start 4.661 -4.603) (end 4.661 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 68fdfe94-8ae1-4f7c-bcae-a71e7e921a34))
(fp_line (start 4.061 1.241) (end 4.061 4.837) (layer "F.SilkS") (width 0.12) (tstamp 6a7a78dd-1fa7-404e-a979-cfeed12dd6f2))
(fp_line (start 5.301 1.241) (end 5.301 4.247) (layer "F.SilkS") (width 0.12) (tstamp 6bcf30c9-5eac-4c9c-824c-34ce1b950974))
(fp_line (start 5.581 -4.05) (end 5.581 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 6f6de47e-8141-4ead-9db5-e2873aefebdd))
(fp_line (start 5.381 1.241) (end 5.381 4.194) (layer "F.SilkS") (width 0.12) (tstamp 703c44c2-e783-4c77-97fe-d2e51e037102))
(fp_line (start 3.18 -5.035) (end 3.18 5.035) (layer "F.SilkS") (width 0.12) (tstamp 733ae82c-8630-4eb4-91a8-3ccab54ec95b))
(fp_line (start 5.501 1.241) (end 5.501 4.11) (layer "F.SilkS") (width 0.12) (tstamp 7375be23-808e-4e71-95dc-91735070a167))
(fp_line (start 7.061 -2.289) (end 7.061 2.289) (layer "F.SilkS") (width 0.12) (tstamp 74afcaf8-8412-49a2-8232-b0849d48391c))
(fp_line (start 7.421 -1.378) (end 7.421 1.378) (layer "F.SilkS") (width 0.12) (tstamp 78072213-efbb-43b3-bd63-ac4d13c84e98))
(fp_line (start 3.981 1.241) (end 3.981 4.862) (layer "F.SilkS") (width 0.12) (tstamp 7861cdc6-860a-4948-bbcd-ab55239f5e1c))
(fp_line (start 4.181 1.241) (end 4.181 4.797) (layer "F.SilkS") (width 0.12) (tstamp 78994119-d08e-44e8-8548-506fb2357377))
(fp_line (start 6.621 -3) (end 6.621 3) (layer "F.SilkS") (width 0.12) (tstamp 7968bdca-f271-4f24-84a7-cf3e1aa64e47))
(fp_line (start 5.221 -4.298) (end 5.221 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 797a4481-4abc-47dd-abe8-779f091d6523))
(fp_line (start 5.301 -4.247) (end 5.301 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 7af54237-865f-45c7-b1da-1a2698342535))
(fp_line (start 5.861 1.241) (end 5.861 3.824) (layer "F.SilkS") (width 0.12) (tstamp 7bf93999-a145-4736-b0f7-bb307eebdba5))
(fp_line (start 7.341 -1.63) (end 7.341 1.63) (layer "F.SilkS") (width 0.12) (tstamp 7c19e62d-8780-434b-8555-2e8baeaaeafd))
(fp_line (start 6.781 -2.77) (end 6.781 2.77) (layer "F.SilkS") (width 0.12) (tstamp 7d5818ce-3fc1-47a6-938a-3ab1670fca4a))
(fp_line (start 5.661 1.241) (end 5.661 3.989) (layer "F.SilkS") (width 0.12) (tstamp 7f44ccc7-694e-43c4-a8c8-a6ba5df17ca8))
(fp_line (start -2.979646 -2.875) (end -1.979646 -2.875) (layer "F.SilkS") (width 0.12) (tstamp 8038ebfe-f713-4505-b000-318ce02ff48a))
(fp_line (start 4.981 1.241) (end 4.981 4.44) (layer "F.SilkS") (width 0.12) (tstamp 81182fad-6d4b-434f-9ad2-7dff6bf8cf8e))
(fp_line (start 5.181 1.241) (end 5.181 4.323) (layer "F.SilkS") (width 0.12) (tstamp 81af2bc1-a02a-4a32-8f18-0f0656b5b878))
(fp_line (start 4.341 1.241) (end 4.341 4.738) (layer "F.SilkS") (width 0.12) (tstamp 825d07af-956f-4e89-b79d-0b3fc6329f97))
(fp_line (start 4.221 -4.783) (end 4.221 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 83ab5942-ed73-4208-9976-28bc59dbd878))
(fp_line (start 3.421 -4.997) (end 3.421 4.997) (layer "F.SilkS") (width 0.12) (tstamp 8516e947-1e70-4c74-bc48-72ce88c3b6f7))
(fp_line (start 5.741 -3.925) (end 5.741 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 85fa9f24-3e37-4e6e-b60f-bc1f70f083dd))
(fp_line (start 4.261 1.241) (end 4.261 4.768) (layer "F.SilkS") (width 0.12) (tstamp 87939afb-517d-4fa9-871c-10c504081964))
(fp_line (start 4.781 -4.545) (end 4.781 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 883b8789-5218-4437-ac7e-41ff793b8956))
(fp_line (start 7.181 -2.037) (end 7.181 2.037) (layer "F.SilkS") (width 0.12) (tstamp 8d333e2e-870d-4e67-94b2-9bb27452887f))
(fp_line (start 4.021 -4.85) (end 4.021 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 8d85682c-656f-4fc8-b88b-9aab8724f423))
(fp_line (start 6.861 -2.645) (end 6.861 2.645) (layer "F.SilkS") (width 0.12) (tstamp 8e37a67f-818e-417f-a819-c2f75df1e84a))
(fp_line (start 4.421 1.241) (end 4.421 4.707) (layer "F.SilkS") (width 0.12) (tstamp 8ecf948a-465a-4d02-953a-0b4a8c0d4025))
(fp_line (start 3.341 -5.011) (end 3.341 5.011) (layer "F.SilkS") (width 0.12) (tstamp 8f95013e-8dde-451a-a075-bf23d4988858))
(fp_line (start 3.06 -5.05) (end 3.06 5.05) (layer "F.SilkS") (width 0.12) (tstamp 9150ab87-7a68-466a-9703-0b136b932d0e))
(fp_line (start 6.221 -3.478) (end 6.221 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 93f766fb-a40a-4d52-ad7f-25d844734c11))
(fp_line (start 5.781 1.241) (end 5.781 3.892) (layer "F.SilkS") (width 0.12) (tstamp 982038f8-ba17-4bcc-a36e-cc5c786a6516))
(fp_line (start 6.101 1.241) (end 6.101 3.601) (layer "F.SilkS") (width 0.12) (tstamp 9a173e0c-200f-404a-a5d9-9d2cee7d47d8))
(fp_line (start 3.02 -5.054) (end 3.02 5.054) (layer "F.SilkS") (width 0.12) (tstamp 9aa1dbf9-4967-4ec2-855d-fc965537962d))
(fp_line (start 4.981 -4.44) (end 4.981 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 9e4ba205-8b07-4f67-b2d1-8ab66981d9ad))
(fp_line (start 4.621 -4.621) (end 4.621 -1.241) (layer "F.SilkS") (width 0.12) (tstamp 9eef68c5-ffb3-40b3-83e5-a601303d4ee6))
(fp_line (start 3.261 -5.024) (end 3.261 5.024) (layer "F.SilkS") (width 0.12) (tstamp a12cfc76-5106-40e9-9fa8-b17107a3ebfb))
(fp_line (start 7.021 -2.365) (end 7.021 2.365) (layer "F.SilkS") (width 0.12) (tstamp a1786c2d-6fc2-4454-87ed-287905b7a119))
(fp_line (start 5.101 -4.371) (end 5.101 -1.241) (layer "F.SilkS") (width 0.12) (tstamp a1a23866-07c0-4629-9104-468dca5e74e7))
(fp_line (start 5.821 1.241) (end 5.821 3.858) (layer "F.SilkS") (width 0.12) (tstamp a3dc069b-9ecc-402f-87f0-c1cb4f8d9f6b))
(fp_line (start 3.581 -4.965) (end 3.581 4.965) (layer "F.SilkS") (width 0.12) (tstamp a616e552-c12f-4144-b2d5-6edcd13386fd))
(fp_line (start 5.541 1.241) (end 5.541 4.08) (layer "F.SilkS") (width 0.12) (tstamp a796d9ce-f36b-40c0-9b8a-1ab4849bdfe1))
(fp_line (start 4.621 1.241) (end 4.621 4.621) (layer "F.SilkS") (width 0.12) (tstamp a92567bd-8062-4280-8819-f049fdd84495))
(fp_line (start 4.381 1.241) (end 4.381 4.723) (layer "F.SilkS") (width 0.12) (tstamp abaf2b2b-f417-402a-ad5e-2fb8884c4b05))
(fp_line (start 5.341 -4.221) (end 5.341 -1.241) (layer "F.SilkS") (width 0.12) (tstamp adeddbc9-59b6-4c13-8012-340cd1d10c66))
(fp_line (start 4.461 -4.69) (end 4.461 -1.241) (layer "F.SilkS") (width 0.12) (tstamp aea18a94-9f03-4805-9c7a-e061e454da16))
(fp_line (start 5.421 -4.166) (end 5.421 -1.241) (layer "F.SilkS") (width 0.12) (tstamp b0b70fbb-4e48-4dc2-85a2-357d895cee6e))
(fp_line (start 4.061 -4.837) (end 4.061 -1.241) (layer "F.SilkS") (width 0.12) (tstamp b25c863b-d650-418d-953c-3f91befa2003))
(fp_line (start 6.381 -3.301) (end 6.381 3.301) (layer "F.SilkS") (width 0.12) (tstamp b3ed35f6-b1af-488c-a48c-fe67d16391bb))
(fp_line (start 2.9 -5.065) (end 2.9 5.065) (layer "F.SilkS") (width 0.12) (tstamp b468a25d-145a-475a-acc9-a35b7cf2adaa))
(fp_line (start 4.021 1.241) (end 4.021 4.85) (layer "F.SilkS") (width 0.12) (tstamp b5413f4a-d4d3-464c-a01b-8729d13203e0))
(fp_line (start 2.98 -5.058) (end 2.98 5.058) (layer "F.SilkS") (width 0.12) (tstamp b7941c11-ec9f-4217-acf8-2db8c101ead9))
(fp_line (start 2.58 -5.08) (end 2.58 5.08) (layer "F.SilkS") (width 0.12) (tstamp b824ae29-8d8a-49ca-954a-68481bd415e3))
(fp_line (start 2.5 -5.08) (end 2.5 5.08) (layer "F.SilkS") (width 0.12) (tstamp b8c8005d-15a7-44d7-9519-83563aaa190d))
(fp_line (start 2.62 -5.079) (end 2.62 5.079) (layer "F.SilkS") (width 0.12) (tstamp b9aee9cc-0e3b-46bb-a9ad-076a924baa0f))
(fp_line (start 6.141 1.241) (end 6.141 3.561) (layer "F.SilkS") (width 0.12) (tstamp bf5a93e5-1dd0-4f28-99e6-c35c1800dbb0))
(fp_line (start 4.581 -4.639) (end 4.581 -1.241) (layer "F.SilkS") (width 0.12) (tstamp bf82c033-20c6-4b66-8206-32890c8a38eb))
(fp_line (start 3.221 -5.03) (end 3.221 5.03) (layer "F.SilkS") (width 0.12) (tstamp c3345fc4-fbe8-48da-b5ae-b1428e5bc8b7))
(fp_line (start 7.101 -2.209) (end 7.101 2.209) (layer "F.SilkS") (width 0.12) (tstamp c432b86d-289a-4216-9291-250085e1eb72))
(fp_line (start 4.821 1.241) (end 4.821 4.525) (layer "F.SilkS") (width 0.12) (tstamp c57d869a-1b5a-494f-af8c-39a211eb54bc))
(fp_line (start 5.461 1.241) (end 5.461 4.138) (layer "F.SilkS") (width 0.12) (tstamp c67a18f6-334c-487f-830a-a941bfec4edc))
(fp_line (start 4.901 1.241) (end 4.901 4.483) (layer "F.SilkS") (width 0.12) (tstamp c720ee78-4c50-424f-a5a4-3ebbdb90b718))
(fp_line (start 5.021 1.241) (end 5.021 4.417) (layer "F.SilkS") (width 0.12) (tstamp c723cf8f-b97b-4613-aa5d-fe127a80f764))
(fp_line (start 3.901 -4.885) (end 3.901 -1.241) (layer "F.SilkS") (width 0.12) (tstamp c8e3862a-41c7-4c03-9e33-6a03a172bd31))
(fp_line (start 2.74 -5.075) (end 2.74 5.075) (layer "F.SilkS") (width 0.12) (tstamp c94cd349-4849-4278-9c17-601089123d07))
(fp_line (start 6.741 -2.83) (end 6.741 2.83) (layer "F.SilkS") (width 0.12) (tstamp cb649433-f62d-4eaf-9258-c048b4bb7d1a))
(fp_line (start 5.581 1.241) (end 5.581 4.05) (layer "F.SilkS") (width 0.12) (tstamp cd787489-495d-4013-85e4-ea95061f4d51))
(fp_line (start 4.301 -4.754) (end 4.301 -1.241) (layer "F.SilkS") (width 0.12) (tstamp cdc88488-472c-4574-bcb9-2b56e8e63b20))
(fp_line (start 4.661 1.241) (end 4.661 4.603) (layer "F.SilkS") (width 0.12) (tstamp cfe82c3f-f9a3-4414-855f-62ae70ccbcea))
(fp_line (start 4.341 -4.738) (end 4.341 -1.241) (layer "F.SilkS") (width 0.12) (tstamp d0965693-ebf3-4f06-8634-1d745573b925))
(fp_line (start 3.661 -4.947) (end 3.661 4.947) (layer "F.SilkS") (width 0.12) (tstamp d0db2368-fa62-4ae4-8345-882b07de2f39))
(fp_line (start 5.021 -4.417) (end 5.021 -1.241) (layer "F.SilkS") (width 0.12) (tstamp d109dfc2-a0bd-4636-a8b8-c53d3efe3c58))
(fp_line (start 3.14 -5.04) (end 3.14 5.04) (layer "F.SilkS") (width 0.12) (tstamp d15e93b8-dc94-4114-8989-5b43cbbd40c4))
(fp_line (start 4.461 1.241) (end 4.461 4.69) (layer "F.SilkS") (width 0.12) (tstamp d1bf97ae-1f78-47a5-bba7-7e1578287780))
(fp_line (start 5.261 1.241) (end 5.261 4.273) (layer "F.SilkS") (width 0.12) (tstamp d5c94568-012b-46dd-86bc-f67f6ffc87e0))
(fp_line (start 5.181 -4.323) (end 5.181 -1.241) (layer "F.SilkS") (width 0.12) (tstamp d6c2466e-8e96-4652-af08-b31d664922c4))
(fp_line (start 7.501 -1.062) (end 7.501 1.062) (layer "F.SilkS") (width 0.12) (tstamp d6ccff4f-2e6c-43dd-b1b6-bd3e9b3a2b88))
(fp_line (start 5.421 1.241) (end 5.421 4.166) (layer "F.SilkS") (width 0.12) (tstamp d8531454-a699-4c07-bdaa-89570355bf1f))
(fp_line (start 3.1 -5.045) (end 3.1 5.045) (layer "F.SilkS") (width 0.12) (tstamp dbcf4beb-3c7a-4f09-a580-9ce5a77b81d5))
(fp_line (start 6.701 -2.889) (end 6.701 2.889) (layer "F.SilkS") (width 0.12) (tstamp ddf0cc3b-6424-4501-9233-3503ae43435a))
(fp_line (start 3.861 1.241) (end 3.861 4.897) (layer "F.SilkS") (width 0.12) (tstamp de77336b-3537-40e0-b161-2a4f5c85f0b0))
(fp_line (start 2.82 -5.07) (end 2.82 5.07) (layer "F.SilkS") (width 0.12) (tstamp debf1f80-6bce-4b82-93c3-71785fc8a9d1))
(fp_line (start 6.061 -3.64) (end 6.061 -1.241) (layer "F.SilkS") (width 0.12) (tstamp df064878-80da-4562-8271-f8283c2c8e2d))
(fp_line (start 5.141 1.241) (end 5.141 4.347) (layer "F.SilkS") (width 0.12) (tstamp dff87a59-aad9-4442-8278-a0284e01373f))
(fp_line (start 4.701 1.241) (end 4.701 4.584) (layer "F.SilkS") (width 0.12) (tstamp e187efc1-cc1a-4eea-9f17-b05068ba436f))
(fp_line (start 5.981 -3.716) (end 5.981 -1.241) (layer "F.SilkS") (width 0.12) (tstamp e1f6e90e-ad34-4a06-93b5-e5f27429f425))
(fp_line (start 4.581 1.241) (end 4.581 4.639) (layer "F.SilkS") (width 0.12) (tstamp e370dedf-b8e0-4219-8505-dbcc4e531c80))
(fp_line (start 5.261 -4.273) (end 5.261 -1.241) (layer "F.SilkS") (width 0.12) (tstamp e397e609-0d72-483c-beb5-d623f7ca3510))
(fp_line (start 6.901 -2.579) (end 6.901 2.579) (layer "F.SilkS") (width 0.12) (tstamp e3db2f88-4acc-4c3e-b52c-d1b32a64390e))
(fp_line (start 6.301 -3.392) (end 6.301 3.392) (layer "F.SilkS") (width 0.12) (tstamp e4f2cca8-98a9-4510-978e-0f0a9400d4e3))
(fp_line (start 5.621 1.241) (end 5.621 4.02) (layer "F.SilkS") (width 0.12) (tstamp e5e5464c-edff-4c2e-b347-9fe4f2f84617))
(fp_line (start 6.141 -3.561) (end 6.141 -1.241) (layer "F.SilkS") (width 0.12) (tstamp e75745a1-4b00-4656-a132-93067851f56b))
(fp_line (start 4.861 -4.504) (end 4.861 -1.241) (layer "F.SilkS") (width 0.12) (tstamp e7981db3-a223-4b9f-ab93-f569ce7cd3aa))
(fp_line (start 4.501 1.241) (end 4.501 4.674) (layer "F.SilkS") (width 0.12) (tstamp e7b53651-03b9-41df-b71d-4ee9b9d232eb))
(fp_line (start 3.901 1.241) (end 3.901 4.885) (layer "F.SilkS") (width 0.12) (tstamp e945aa45-a726-437f-af74-e445e8330fb4))
(fp_line (start 5.661 -3.989) (end 5.661 -1.241) (layer "F.SilkS") (width 0.12) (tstamp e9f77475-7a78-42e4-b4e1-9ca980655be1))
(fp_line (start 5.941 1.241) (end 5.941 3.753) (layer "F.SilkS") (width 0.12) (tstamp ec2ec1b4-2270-445e-a7a5-574173340e82))
(fp_line (start 5.981 1.241) (end 5.981 3.716) (layer "F.SilkS") (width 0.12) (tstamp ee80f587-0ca7-45f8-a26d-128f08719b9e))
(fp_line (start 5.061 -4.395) (end 5.061 -1.241) (layer "F.SilkS") (width 0.12) (tstamp eef0c078-3eed-4e48-a2da-6d70bf780939))
(fp_line (start 4.381 -4.723) (end 4.381 -1.241) (layer "F.SilkS") (width 0.12) (tstamp ef083ba9-2214-4f0f-8fee-0921ae24e5ca))
(fp_line (start 2.94 -5.062) (end 2.94 5.062) (layer "F.SilkS") (width 0.12) (tstamp f0caab33-a14f-4f35-a921-8d82fd129fb5))
(fp_line (start 4.101 1.241) (end 4.101 4.824) (layer "F.SilkS") (width 0.12) (tstamp f2e089c9-f9c8-4b71-a1ed-a7a893467596))
(fp_line (start 5.901 -3.789) (end 5.901 -1.241) (layer "F.SilkS") (width 0.12) (tstamp f340a21c-7018-4f36-b4dc-3db5cafa1225))
(fp_line (start 7.261 -1.846) (end 7.261 1.846) (layer "F.SilkS") (width 0.12) (tstamp f5734d11-f08c-47eb-a477-3bc49a6dd27e))
(fp_line (start 4.861 1.241) (end 4.861 4.504) (layer "F.SilkS") (width 0.12) (tstamp f69a5615-f735-4665-a460-a6815f4ea105))
(fp_line (start 4.741 -4.564) (end 4.741 -1.241) (layer "F.SilkS") (width 0.12) (tstamp f6e1daa9-7878-4cbe-bbb8-43c002af7751))
(fp_line (start 3.981 -4.862) (end 3.981 -1.241) (layer "F.SilkS") (width 0.12) (tstamp f7555305-35ac-423a-8631-2c75ffada851))
(fp_line (start 5.741 1.241) (end 5.741 3.925) (layer "F.SilkS") (width 0.12) (tstamp faad6d95-bb4b-478a-ba70-71573c209630))
(fp_line (start 4.541 -4.657) (end 4.541 -1.241) (layer "F.SilkS") (width 0.12) (tstamp fc1aac16-4491-4810-80da-08edaee1372f))
(fp_line (start 6.501 -3.156) (end 6.501 3.156) (layer "F.SilkS") (width 0.12) (tstamp fc1ebe95-e557-4a15-872d-18ebdc983636))
(fp_line (start 6.221 1.241) (end 6.221 3.478) (layer "F.SilkS") (width 0.12) (tstamp fd49586c-1ee6-475a-af37-3c3fbf78415a))
(fp_line (start 6.181 -3.52) (end 6.181 -1.241) (layer "F.SilkS") (width 0.12) (tstamp fd4d561c-f28f-44e7-81ed-276375eb03bb))
(fp_line (start 5.821 -3.858) (end 5.821 -1.241) (layer "F.SilkS") (width 0.12) (tstamp fdc2793e-367f-4d36-b7c0-92055b408905))
(fp_line (start 7.141 -2.125) (end 7.141 2.125) (layer "F.SilkS") (width 0.12) (tstamp ff3881f3-2efb-411d-b0b2-d5793ab54de6))
(fp_line (start 5.781 -3.892) (end 5.781 -1.241) (layer "F.SilkS") (width 0.12) (tstamp ff4cd7bb-31e3-44be-a884-64c0232f90be))
(fp_circle (center 2.5 0) (end 7.62 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4a16b5dd-16ca-48e4-ae87-efcc99d21a00))
(fp_circle (center 2.5 0) (end 7.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 26c48f6b-e578-46f6-b389-8f5fe58be549))
(fp_line (start -1.288861 -2.6875) (end -1.288861 -1.6875) (layer "F.Fab") (width 0.1) (tstamp 62d8066c-fa7f-4a30-9503-a2f78457e1e5))
(fp_line (start -1.788861 -2.1875) (end -0.788861 -2.1875) (layer "F.Fab") (width 0.1) (tstamp 65eeeefe-34a2-4987-b282-30f091070782))
(fp_circle (center 2.5 0) (end 7.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp bb96f641-8238-425b-8002-5e4c8826e232))
(pad "1" thru_hole rect locked (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 30 "VCC") (tstamp bd954f2a-3368-483b-b473-6efcfb62873e))
(pad "2" thru_hole circle locked (at 5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp bfc2b1fd-3493-4624-87a4-9c1735edd0fb))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061b2ba9a)
(at 58.928 41.656 90)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(path "/00000000-0000-0000-0000-000061b8657e")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ea67a15-7e66-4d4b-b69a-f06a0bedc916)
)
(fp_text value "Conn_01x06_Female" (at 0 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee99d746-c476-4798-849f-dbf126eeeb11)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c67bb64-aaa1-42a7-93d2-3763ee2bff25)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 27b171c6-18a1-4010-a64c-7b30d22b292d))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 3c2af175-226a-4c10-9a35-161f4fe81fe1))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 4bb9b3dd-6c61-4047-a292-b89752a78789))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 8768a9ff-e72b-4590-b037-8f36a8e16630))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp b3fd896a-b821-47ea-a56d-cdec36188305))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c50a5aba-dba6-433b-b40f-b12199528c64))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 200ee477-9fa0-4f5c-9b81-c15fbfe4d380))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 2c237a84-3429-4644-80cb-06ee2102c59f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3f2425d7-6989-47b8-bcb0-178f8d75db6a))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 72a64a41-3446-4219-bccb-d099fbe64433))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 18b42810-ea27-4010-9468-82ffe84dd92a))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 1a9f6101-867b-4b08-8864-406398a34f84))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 33d7a25d-626d-40f2-b1b7-d4ce07f3e3a9))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp c76bdeb9-d487-479f-8aac-e6c301bec99f))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp d5237dc7-2a08-4f6a-a86b-e7fadb664a36))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "VCC") (tstamp 54be1bfc-5bc5-4cfd-828c-b9d3a43639f6))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "0") (tstamp 7c10547f-bfc4-4bdc-a994-3eb9130f38fb))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "RST") (tstamp 9abda660-d953-4006-ac3f-4ff4f77f27d8))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "RX") (tstamp 6d599185-b733-47e9-83e4-c1e2c4a1639d))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "TX") (tstamp 3811d99b-6038-45f9-87d9-300e93ce02da))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp 6c9f9eb7-0aa4-48dc-80d3-e6ffedcfc4ff))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000061b2ca24)
(at 89.154 40.386 90)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb97df03-9d6d-44df-b7b3-1e78eff10696)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eee0b0d6-cb82-48dd-a754-8096ba92e4aa)
)
(fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fef4a05b-a7fd-4089-997a-a1e772f91d2d)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 426fd648-8501-4ba3-bc50-ef875070865d))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5ecba916-492a-417b-895c-c005722a2bb0))
(pad "" np_thru_hole circle locked (at 0 0 90) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 288835c3-af3e-4a7c-bc52-c68f267badd2))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061b2ca48)
(at 55.118 38.354 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path "/00000000-0000-0000-0000-00005f925c72")
(attr through_hole)
(fp_text reference "R4" (at 5.08 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a68586db-4599-45dd-9a7b-279e78d1517e)
)
(fp_text value "12k" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 412a815e-6933-424b-b1ad-5763082e8a9f)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a52b60de-fdb1-4a3d-9591-2423a9630c9e)
)
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 0a286788-922b-43cf-9beb-259dba893c57))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 34887976-2f92-4ce9-8faa-02384bf5dce0))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp d0f4ecc1-9a1f-42b3-8f00-f6e82dbd13f9))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e68a2a8a-7b84-468d-bcbe-e8435624abc6))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp f632886a-a259-4c12-9e5d-7156a70132c3))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp fac9ab46-04fb-4834-8a9d-4bc6408e856b))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2862f61a-037f-423b-a8f1-03b504cf4513))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 35d769f1-bcee-4890-b3b2-b8c777b02f60))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b3e19e08-effe-416d-9abb-2dfa0991c92c))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp eb47768d-5c7b-4d72-90ea-0a72af386250))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 36b47cb9-3392-453f-b832-a3e6d187f206))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 403cee0f-3eac-4999-acfb-943b14f78625))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 71592b76-cdee-4303-9ab7-fb53f1f7edb3))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp bd46ca69-2ef6-4152-8d86-426771c4afeb))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp f773be08-8043-40af-9188-7b2254082927))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp fc2bdb2a-34a8-4012-9b05-f5982f7fe331))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "0") (tstamp 3f5a3819-38cf-4c5d-9509-90b98ecd44b6))
(pad "2" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "VCC") (tstamp f0f98b92-a78c-46a8-8fbf-eab6aa2493e0))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_TH_Tactile_Omron_B3F-10xx" (layer "F.Cu")
(tedit 5D84F0EF) (tstamp 00000000-0000-0000-0000-000061b2ca89)
(at 84.455 49.403 180)
(descr "SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "Omron B3F-10xx")
(path "/00000000-0000-0000-0000-00005f4799ec")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 -2.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18a1b1e9-e084-4878-bd75-6c19de2c16b0)
)
(fp_text value "PROGRAM" (at 3.2 6.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b147b9d0-048c-460f-bd2d-67f153df5c0b)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1086a088-92ee-47ff-86bc-42a092256db4)
)
(fp_line (start 6.37 0.91) (end 6.37 3.59) (layer "F.SilkS") (width 0.12) (tstamp 73641d83-6e0a-4e26-aca8-cd239a4b5b75))
(fp_line (start 0.28 -0.87) (end 6.22 -0.87) (layer "F.SilkS") (width 0.12) (tstamp 8fb5e329-f6d5-4666-b83d-7b6955929883))
(fp_line (start 0.28 5.37) (end 6.22 5.37) (layer "F.SilkS") (width 0.12) (tstamp 93e27e55-c3b7-4382-83fb-7e8a68f86998))
(fp_line (start 0.13 3.59) (end 0.13 0.91) (layer "F.SilkS") (width 0.12) (tstamp fb2bc3a2-787f-4bec-8cb4-c7e42561db69))
(fp_circle (center 3.25 2.25) (end 4.25 3.25) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2e49aec8-c3e7-49d2-a2df-bca6d79f8113))
(fp_line (start -1.1 5.6) (end 7.6 5.6) (layer "F.CrtYd") (width 0.05) (tstamp 43cbef92-2afe-4adc-9ba8-658b833bec4d))
(fp_line (start -1.1 -1.1) (end 7.6 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 5ee9e8a6-184d-4239-8db9-caba0cef8fde))
(fp_line (start -1.1 -1.1) (end -1.1 5.6) (layer "F.CrtYd") (width 0.05) (tstamp 86731a62-9e79-4fe4-b0ba-fba6cdd2a084))
(fp_line (start 7.6 5.6) (end 7.6 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp e752a2d8-ec90-4ff0-891f-97385d26908d))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 5917d516-bbcc-48c0-b05e-537049e9b10b))
(fp_line (start 0.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 7f2eb8b2-b85c-4dd7-9bb2-c6522bb7d7fa))
(fp_line (start 0.25 -0.75) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 96604dc5-d415-476a-8d57-39e196e34f5a))
(fp_line (start 0.25 5.25) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp c441e0d1-5c12-4ec6-93ba-9f83cc13e43e))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "0") (tstamp c05dc24e-f97e-4206-b4d7-e22a1758979c))
(pad "2" thru_hole circle locked (at 6.5 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "0") (tstamp cd7794b2-e482-4d53-aa2e-76147ba2be96))
(pad "3" thru_hole circle locked (at 0 4.5 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp 44d39492-f66b-4004-9ca8-e2f1637cfade))
(pad "4" thru_hole circle locked (at 6.5 4.5 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (tstamp 0d858894-b35d-4b30-850b-9851dc5d469e))
(model "${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_TH_Tactile_Omron_B3F-10xx.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_TH_Tactile_Omron_B3F-10xx" (layer "F.Cu")
(tedit 5D84F0EF) (tstamp 00000000-0000-0000-0000-000061b2cac8)
(at 84.455 57.658 180)
(descr "SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "Omron B3F-10xx")
(path "/00000000-0000-0000-0000-00005f47a68d")
(attr through_hole)
(fp_text reference "SW2" (at 3.25 -2.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4862ec38-73f6-4e84-809c-5eb996550ba1)
)
(fp_text value "RESET" (at 3.2 6.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3caf647d-1fe7-4573-b324-3104562d4956)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))