-
Notifications
You must be signed in to change notification settings - Fork 0
/
FONA_pi.kicad_pcb
4679 lines (4631 loc) · 347 KB
/
FONA_pi.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers")
)
)
(net 0 "")
(net 1 "Net-(J1-Pin_2)")
(net 2 "Net-(J1-Pin_1)")
(net 3 "Net-(J1-Pin_4)")
(net 4 "Net-(J1-Pin_6)")
(net 5 "Net-(J1-Pin_8)")
(net 6 "Net-(J1-Pin_10)")
(net 7 "Net-(J1-Pin_12)")
(net 8 "Net-(J1-Pin_14)")
(net 9 "Net-(J1-Pin_16)")
(net 10 "Net-(J1-Pin_18)")
(net 11 "Net-(J1-Pin_3)")
(net 12 "Net-(J1-Pin_5)")
(net 13 "Net-(J1-Pin_7)")
(net 14 "Net-(J1-Pin_9)")
(net 15 "Net-(J1-Pin_11)")
(net 16 "Net-(J1-Pin_13)")
(net 17 "Net-(J1-Pin_17)")
(net 18 "Net-(J1-Pin_19)")
(net 19 "Net-(J1-Pin_20)")
(net 20 "Net-(J2-Pin_38)")
(net 21 "Net-(J2-Pin_30)")
(net 22 "Net-(J2-Pin_28)")
(net 23 "Net-(J2-Pin_26)")
(net 24 "Net-(J2-Pin_24)")
(net 25 "Net-(J2-Pin_16)")
(net 26 "Net-(D1-A)")
(net 27 "Net-(D2-A)")
(net 28 "Net-(D3-A)")
(net 29 "Net-(J10-Pin_2)")
(net 30 "Net-(J10-Pin_1)")
(net 31 "Net-(J18-Pin_1)")
(net 32 "Net-(J5-Pin_1)")
(net 33 "Net-(J5-Pin_2)")
(net 34 "Net-(J5-Pin_5)")
(net 35 "Net-(J5-Pin_8)")
(net 36 "Net-(J5-Pin_9)")
(net 37 "Net-(J5-Pin_10)")
(net 38 "Net-(J5-Pin_12)")
(net 39 "Net-(J5-Pin_13)")
(net 40 "Net-(J5-Pin_14)")
(net 41 "Net-(J2-Pin_14)")
(net 42 "Net-(J2-Pin_40)")
(net 43 "Net-(J2-Pin_36)")
(net 44 "Net-(J2-Pin_32)")
(net 45 "Net-(J2-Pin_20)")
(net 46 "Net-(J2-Pin_18)")
(net 47 "Net-(J2-Pin_22)")
(net 48 "Net-(J13-Pin_2)")
(net 49 "Net-(J13-Pin_3)")
(net 50 "Net-(J13-Pin_4)")
(net 51 "Net-(J13-Pin_5)")
(net 52 "Net-(J13-Pin_6)")
(net 53 "Net-(J2-Pin_12)")
(net 54 "Net-(J2-Pin_10)")
(net 55 "Net-(J2-Pin_6)")
(net 56 "Net-(J2-Pin_4)")
(net 57 "Net-(J18-Pin_4)")
(net 58 "Net-(J18-Pin_3)")
(net 59 "Net-(J18-Pin_2)")
(net 60 "Net-(J10-Pin_3)")
(net 61 "Net-(J13-Pin_1)")
(net 62 "Net-(D1-K)")
(net 63 "Net-(G5-A)")
(net 64 "Net-(G5-B)")
(net 65 "unconnected-(J19-Pin_1-Pad1)")
(net 66 "unconnected-(J19-Pin_2-Pad2)")
(net 67 "unconnected-(J19-Pin_3-Pad3)")
(net 68 "unconnected-(J19-Pin_4-Pad4)")
(net 69 "unconnected-(J19-Pin_5-Pad5)")
(net 70 "unconnected-(J19-Pin_6-Pad6)")
(net 71 "unconnected-(J19-Pin_7-Pad7)")
(net 72 "unconnected-(J19-Pin_8-Pad8)")
(net 73 "unconnected-(J20-Pin_1-Pad1)")
(net 74 "unconnected-(J20-Pin_2-Pad2)")
(net 75 "unconnected-(J20-Pin_3-Pad3)")
(net 76 "unconnected-(J20-Pin_4-Pad4)")
(net 77 "unconnected-(J20-Pin_5-Pad5)")
(net 78 "unconnected-(J20-Pin_6-Pad6)")
(net 79 "unconnected-(J20-Pin_7-Pad7)")
(net 80 "unconnected-(J20-Pin_8-Pad8)")
(net 81 "Net-(J2-Pin_8)")
(net 82 "Net-(J10-Pin_4)")
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x18_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 004133f3-2a4f-4d6e-bdb4-afbc65d44793)
(at 147.955 60.96)
(descr "Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x18 2.54mm single row")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x18, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/4985ca34-fb65-4a46-a508-52f342cd355d")
(attr through_hole)
(fp_text reference "J5" (at -0.12 -2.48) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54a9d85c-a4a8-4f0d-b39f-023f5ceba2cb)
)
(fp_text value "Conn_01x18" (at -1.4986 -4.3942) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19bc41a0-b138-4372-bb2f-590a28284b8a)
)
(fp_text user "${REFERENCE}" (at 0 21.59 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 036b5aec-3225-4e03-bd4f-fc4369f8cb61)
)
(fp_line (start -1.33 1.27) (end -1.33 44.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fed3df04-e401-4c40-81ae-38bb8e33652b))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c67d1702-e1fe-46eb-9231-d7ec60d2f9c2))
(fp_line (start -1.33 44.51) (end 1.33 44.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e656194e-0fc0-4464-ad82-0445eaa62a72))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f8ed36f-167f-4e36-a6d9-9df78ebe2a10))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00fe5925-eeb1-41b4-825c-22a94d984d36))
(fp_line (start 1.33 1.27) (end 1.33 44.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d92d29f-ffac-41a4-a0b4-78dda86b994a))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f99436e1-a015-42f7-bc68-c6c218bddcfe))
(fp_line (start -1.8 44.95) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87807925-8c2d-401c-9010-921898e90f57))
(fp_line (start 1.75 -1.8) (end 1.75 44.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2da5771c-b72a-43a6-a134-053004b620ba))
(fp_line (start 1.75 44.95) (end -1.8 44.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55e7c3f1-4da8-4a48-b8d7-a89e9f56f553))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6068d053-d4a9-4d15-81ea-c1a259b7b45f))
(fp_line (start -1.27 44.45) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4569531-e137-4c72-a2a0-2fe4b86a6bfa))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b04ef761-c8f6-4408-8af7-472187fd9cb6))
(fp_line (start 1.27 -0.635) (end 1.27 44.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b09c173a-9057-4b1f-ad78-8974d3927b56))
(fp_line (start 1.27 44.45) (end -1.27 44.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6ac3a54-944f-490a-a94b-768917d5c28d))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "Net-(J5-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp cbf062c2-323a-4c9b-838e-a86666e5d815))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "Net-(J5-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp edbe7da2-e505-4221-98a8-da2f24ecb46e))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 62 "Net-(D1-K)") (pinfunction "Pin_3") (pintype "passive") (tstamp 00935743-a614-46a5-875d-1f4f595c304e))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 82 "Net-(J10-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 8d68f7dd-7d36-4882-8ee3-b92058208075))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "Net-(J5-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 15e59c7e-a386-43fa-a7a5-3587fc3f2fa3))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 81 "Net-(J2-Pin_8)") (pinfunction "Pin_6") (pintype "passive") (tstamp 1d863603-3a5f-49d7-ae9f-bb303c4ffdeb))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 54 "Net-(J2-Pin_10)") (pinfunction "Pin_7") (pintype "passive") (tstamp 9261ad8c-b351-4ac5-94fe-3f4d27d99790))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "Net-(J5-Pin_8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 1ecd56e1-e1b3-4567-afb0-1b287835c936))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "Net-(J5-Pin_9)") (pinfunction "Pin_9") (pintype "passive") (tstamp a2b96407-b567-4f8f-bf56-d20362d6193d))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "Net-(J5-Pin_10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 7ff3dd74-8fd8-4a9c-b707-c04cb70b966f))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 63 "Net-(G5-A)") (pinfunction "Pin_11") (pintype "passive") (tstamp eaeb3fac-f611-45b7-89e0-247442db8f3b))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "Net-(J5-Pin_12)") (pinfunction "Pin_12") (pintype "passive") (tstamp ed5e73d9-ea92-4333-98d9-bd7598f28cb3))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "Net-(J5-Pin_13)") (pinfunction "Pin_13") (pintype "passive") (tstamp 5294322f-5b1a-4f92-8330-70ba645a9aae))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "Net-(J5-Pin_14)") (pinfunction "Pin_14") (pintype "passive") (tstamp 7a73f536-1335-472e-84d9-9ccde1c20f8c))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 57 "Net-(J18-Pin_4)") (pinfunction "Pin_15") (pintype "passive") (tstamp fb162edb-d3eb-48d1-b933-960f268bd3c6))
(pad "16" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 58 "Net-(J18-Pin_3)") (pinfunction "Pin_16") (pintype "passive") (tstamp a50d027b-18b9-4fd4-ad75-cb548f640463))
(pad "17" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 59 "Net-(J18-Pin_2)") (pinfunction "Pin_17") (pintype "passive") (tstamp fb6ae20c-fcd2-4d7f-b8b6-12c8d665f8db))
(pad "18" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "Net-(J18-Pin_1)") (pinfunction "Pin_18") (pintype "passive") (tstamp e8d43f18-a407-451b-82e4-3dba9ec965f2))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x18_P2.54mm_Vertical.wrl" hide
(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_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 13710929-c7b7-453c-bd49-37f9bb2d8d22)
(at 124.1044 69.7738)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/ba8324b4-385f-4af4-9a60-d8d167c8735e")
(attr through_hole)
(fp_text reference "R1" (at 1.3956 2.2262) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e13c8626-7214-4c01-962f-58711bb40f49)
)
(fp_text value "R" (at 5.715 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86fb5499-5cc3-415c-9c80-b03a027122c9)
)
(fp_text user "${REFERENCE}" (at 1.8956 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72ef3546-d839-4a8b-bdf3-4b35c7a79f3b)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5840741-819d-4180-9703-c696888d6a9a))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2c860da-b068-429c-b7af-e1152c975c70))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53e0e7dc-ff79-4735-a471-ac0fc32de3ba))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55c0aab0-61e6-495a-ae3f-723ffe265461))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170fd54a-7b56-4f25-9a7a-3ccdd8368aed))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f38f4298-7e54-4354-b26d-260513745549))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9445f94-9433-44d6-b0c7-02c0c26942f0))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 315c675b-80ea-4049-ad04-c98465f7079b))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42bccd4d-dc02-4363-a177-3fac89e121a4))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1322a231-bedf-4fc4-93c6-9221cbe76f4f))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4e7e333-feb0-4b4a-b6c5-714ff09abf46))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39181922-2739-461a-9630-3f8bfe3e0d78))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20834a4e-0199-4edc-a056-59a2ebbc9ebe))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 386b2217-e149-4e7f-be11-95408a2b6fc6))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 010b9154-1f71-4147-b0d6-bf7b972cdb45))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6b7cf25-8987-4858-b929-985990233232))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "Net-(J1-Pin_16)") (pintype "passive") (tstamp be807a06-d65a-4711-b4cf-158f7483fc6b))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 28 "Net-(D3-A)") (pintype "passive") (tstamp 2eac9066-3b1b-47a7-a62c-af1c15fbc292))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 21abfb23-8d74-4b52-b4c2-b2380c607d23)
(at 124.3838 96.4184)
(descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x06 2.54mm single row")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated")
(property "ki_keywords" "connector")
(path "/4b503f1f-1427-4167-a815-bc6539268b7f")
(attr through_hole)
(fp_text reference "J13" (at -1.7018 -2.4638) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03977919-cf48-4aa1-8d79-3c24d9200a2b)
)
(fp_text value "Conn_01x06_Socket" (at 1.3208 22.1488) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68d2846d-b7a3-4a65-81ad-9178298702e8)
)
(fp_text user "${REFERENCE}" (at 1.4224 -2.3114 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e0b5e3b-8d57-4a68-928d-9c68bda6e9de)
)
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3be6a9d-9fa8-4a24-811a-eb5c3275a367))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5708981d-2547-42a8-b7b9-e7334a5d9692))
(fp_line (start -1.33 14.03) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4dda9bb8-0a6b-4831-94ab-3becd7fc30b5))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42c34322-9472-4376-8231-917a0c25c530))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e76542a-167b-45e8-8736-8e08b78af353))
(fp_line (start 1.33 1.27) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af61ca94-e3b4-4ebf-9fa7-0d2627af1551))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 472fc143-66be-43ed-955b-30af2ccc4bbc))
(fp_line (start -1.8 14.45) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33d31cf1-dc83-4b32-ba60-24b000f3759e))
(fp_line (start 1.75 -1.8) (end 1.75 14.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17b184c8-c027-4a00-9ba1-3d3d03cb78ce))
(fp_line (start 1.75 14.45) (end -1.8 14.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1cf804d-f285-404c-8c61-e56e88f35e7f))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66ff2a89-ae58-4716-8b36-ad279fcbe715))
(fp_line (start -1.27 13.97) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9f59724-a893-4dd6-af4f-8cc87a141ecc))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 606c3b60-54ba-4c05-ba58-3212b1f4f191))
(fp_line (start 1.27 -0.635) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 890c1665-fc00-42f1-8139-42a96740cf2c))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e713dd5-2a33-4ed0-ac95-d9b30dcf4e66))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 61 "Net-(J13-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp e14e15a1-253c-4794-8290-2732f6cce7c6))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 48 "Net-(J13-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 9b614362-72ed-471b-8d11-bcca23cab767))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 49 "Net-(J13-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp c9e94f3d-1f63-4d05-94d2-962a8d564b66))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 50 "Net-(J13-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp b9e623be-1f2f-4445-92b4-4549a13e7736))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 51 "Net-(J13-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 60a8c8c5-1612-44ce-845a-45a764e1d0b4))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 52 "Net-(J13-Pin_6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 3d11ef66-a71d-4aa9-962e-d1eb4988a5a4))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x06_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tstamp 2837cbbb-1e9f-4a78-bc70-e4f8b6895b17)
(at 144.1092 88.764533 180)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "net tie solder jumper bridged")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Jumper, 2-pole, closed/bridged")
(property "ki_keywords" "Jumper SPST")
(path "/97fe8795-b3da-4573-9b09-23782f1220c1")
(attr exclude_from_pos_files)
(net_tie_pad_groups "1, 2")
(fp_text reference "JP2" (at 1.666 6.35 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efcf128d-037b-4d54-ba0c-b288b5863874)
)
(fp_text value "J2B" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edd9e0b2-e3c4-4a39-bcb3-fa1c01b39b9c)
)
(fp_poly
(pts
(xy 0.25 -0.3)
(xy -0.25 -0.3)
(xy -0.25 0.3)
(xy 0.25 0.3)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp 0f7dc640-62aa-47bd-aaa8-c91db0d365cc))
(fp_line (start -1.4 0.3) (end -1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b228f400-baea-4ef2-99a8-ffc863d3845e))
(fp_line (start -0.7 -1) (end 0.7 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f876575a-64ad-4f88-abef-c069234e5607))
(fp_line (start 0.7 1) (end -0.7 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e47a1e4f-196d-4d1d-b47f-87af4c09d19e))
(fp_line (start 1.4 -0.3) (end 1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e094abfd-ca1b-47bb-9261-a0670fa677cc))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c6a1d09-1ffe-430f-894b-bc503d4d8c55))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 917491b5-5ca4-4c02-97d5-5c50e95fbcae))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a47ee809-7344-40c9-b679-4ab54178dcd0))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32c3cc1b-619e-43e5-b82b-54f956dafaf4))
(fp_line (start -1.65 -1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78b48dcb-6c83-4cef-8035-025e8a08144a))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ca2a60b-7768-4214-9ed2-439c7fd5bc36))
(fp_line (start 1.65 1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a4c1f4e-ec7c-49f0-b41c-59ce289e9377))
(fp_line (start 1.65 1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e3a8850-9b02-4d84-9283-4959dd02a97c))
(pad "1" smd custom (at -0.65 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 38 "Net-(J5-Pin_12)") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp 4e5e5b79-0f01-4c4c-a3a5-2be0e81185cc))
(pad "2" smd custom (at 0.65 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 5 "Net-(J1-Pin_8)") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
)
(width 0) (fill yes))
) (tstamp 1f5dc867-0abe-4fe9-99df-32deaa3299cb))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x18_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2fb4fb9b-972f-4875-8f50-4d1827048e2f)
(at 153.24 60.96)
(descr "Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x18 2.54mm single row")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x18, script generated")
(property "ki_keywords" "connector")
(path "/68d07b06-43dd-4fd4-bf59-237ebca2f6a4")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.46) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b192652-2784-45f2-9efa-3f311ffb7d1b)
)
(fp_text value "Conn_01x18_Socket" (at 0 45.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1355970a-86bd-47b7-b746-61706e45b253)
)
(fp_text user "${REFERENCE}" (at 0 21.59 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5166f196-5ab4-4b2f-ad9d-2c725da7d865)
)
(fp_line (start -1.33 1.27) (end -1.33 44.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cddc9846-4eff-4906-ae25-a897cd96b80f))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49b634b0-26d8-4dc3-8ca4-3614e0bdd39d))
(fp_line (start -1.33 44.51) (end 1.33 44.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8a67b0d-9fec-4b66-bd8f-f9bb4b1acd7b))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9f50db7-1e07-4535-b4e0-83aef28e4bb6))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3581830f-8894-4ccc-b715-b8b7e1e9c31a))
(fp_line (start 1.33 1.27) (end 1.33 44.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 129505a5-9d69-4202-873a-8fb4c310f2ab))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74f8ebbf-99a1-4852-bfc1-0829179a6043))
(fp_line (start -1.8 44.95) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30005a0d-5b7d-4ded-8591-642c3e658578))
(fp_line (start 1.75 -1.8) (end 1.75 44.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e7f52a7-42db-42f9-aeda-be5a7e3eca58))
(fp_line (start 1.75 44.95) (end -1.8 44.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b93b17e-9ddd-40a8-8c24-b177da610bdf))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee824bff-48de-44e1-a4b1-ed62aef60f2c))
(fp_line (start -1.27 44.45) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec9ca4a4-1e6e-41ad-a77d-d94f32005904))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26d6a6ff-5e3a-4c13-944c-f257ce9b29d0))
(fp_line (start 1.27 -0.635) (end 1.27 44.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ca58a59-986a-4244-b71b-6b3df5ae6b8e))
(fp_line (start 1.27 44.45) (end -1.27 44.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4d422ce-9074-4756-ba15-e456366415b1))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "Net-(J5-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 9cfa7cd3-34f6-47fb-9b20-30a48ef272a1))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "Net-(J5-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 5de30a24-fec3-435b-8c5e-611c52231c10))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 62 "Net-(D1-K)") (pinfunction "Pin_3") (pintype "passive") (tstamp 2d1aa86f-5dc5-4910-a8e6-e1fef0ffea9a))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 82 "Net-(J10-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 798fccaa-ccf9-477b-be56-7814879932dd))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "Net-(J5-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 3afdfa05-f125-442c-8cdb-64ef9f16ca82))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 81 "Net-(J2-Pin_8)") (pinfunction "Pin_6") (pintype "passive") (tstamp 318feb99-26cc-4c67-a820-646fbc2d2f2f))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 54 "Net-(J2-Pin_10)") (pinfunction "Pin_7") (pintype "passive") (tstamp df4bf418-3122-4b0d-8c82-b0b2fd46985b))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "Net-(J5-Pin_8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 1cfeeb59-598e-440a-82da-2d9d372b6af6))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "Net-(J5-Pin_9)") (pinfunction "Pin_9") (pintype "passive") (tstamp 1f53e568-9e34-4421-b9f5-97713f959cf5))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "Net-(J5-Pin_10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 3f432e45-dee2-49e4-87fa-e90f6ef24a75))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 63 "Net-(G5-A)") (pinfunction "Pin_11") (pintype "passive") (tstamp d52baab3-e574-4bca-a173-5384065e0fa4))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "Net-(J5-Pin_12)") (pinfunction "Pin_12") (pintype "passive") (tstamp 7204a789-ebd5-4347-b140-dafc8b390f23))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "Net-(J5-Pin_13)") (pinfunction "Pin_13") (pintype "passive") (tstamp 08ac66c5-76a2-47cb-b4b8-b3357550200a))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "Net-(J5-Pin_14)") (pinfunction "Pin_14") (pintype "passive") (tstamp 3fd41db5-f765-441d-b22b-1612f9f24c42))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 57 "Net-(J18-Pin_4)") (pinfunction "Pin_15") (pintype "passive") (tstamp 946540c2-1e11-4efe-a93f-8b157715ac76))
(pad "16" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 58 "Net-(J18-Pin_3)") (pinfunction "Pin_16") (pintype "passive") (tstamp 9c2549da-830b-4eec-82ff-08ddb8b802d8))
(pad "17" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 59 "Net-(J18-Pin_2)") (pinfunction "Pin_17") (pintype "passive") (tstamp 2872c4e3-20c6-4775-8429-3d3b930d1c05))
(pad "18" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "Net-(J18-Pin_1)") (pinfunction "Pin_18") (pintype "passive") (tstamp 7a8ad23a-cc85-4196-b2bd-1cbec37a15ae))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x18_P2.54mm_Vertical.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_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 32ce98b8-4d5b-4e2d-9dab-8fa0da9d91b9)
(at 124.0536 91.9226)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/757ee66e-6806-4ae2-a33b-fb1e55c17926")
(attr through_hole)
(fp_text reference "R6" (at -1.3208 -1.9304) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b8a253e-8ef2-4251-86ea-5e8ac03ff696)
)
(fp_text value "R" (at -1.7526 0.3556) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 154bdb22-9bec-49f4-a942-732ad79ba06f)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8e13bfb-3157-4b48-a33f-d4fedf0e9c8f)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1949ec62-976f-4e52-a2b1-20e6c189d7e8))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a11b491f-b169-44f8-a080-bad46a6de677))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7f71f4d-de27-4a05-8976-5c791a340c5d))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d5ea1f1-0bd2-4aa0-894f-e4566dd80408))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3aa80048-fb9a-4507-8194-7f77fc2d7ccc))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a9e6a4a-c279-4d74-8657-c7918e8ec0f3))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a803e41-67f8-4fd0-ac80-0736ad22a42f))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86d69c79-c7f1-41e0-94e0-6bff8d60d75c))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d9a02ac-fca3-4aba-b7d4-45bb7f6ec833))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6f55272-891d-4429-b6f0-0f97cd1e62a5))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 974f57b2-ec93-4082-955d-b8e58ae79d71))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04db40cf-d863-4563-b5ec-0b2f38edfa28))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d53b52b-9cc6-4cb9-8c99-692793ac3cb0))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3b31f4d-1528-4cbe-9b42-95ac9715ea7e))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b344b52f-44c6-48b4-9585-10751d636271))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87e3c499-51d2-4ba7-9925-a3b4d71ffcf8))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "Net-(J2-Pin_16)") (pintype "passive") (tstamp 9b2cd3cb-94be-4f12-892a-cdf6640cbf6d))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 30 "Net-(J10-Pin_1)") (pintype "passive") (tstamp bb8fb730-a533-4377-a110-85df77b62f26))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tstamp 343e0d42-af6e-4f51-b385-b4560915b89b)
(at 137.4394 72.9488 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/b96ff9c9-fb0e-41bf-ad7b-fdf5d6c7680b")
(attr through_hole)
(fp_text reference "D3" (at 4.4394 -0.5512) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9f3a70c-651c-4acd-a1b2-0aeec65104fa)
)
(fp_text value "LED" (at 3.429 2.8194) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eaf908ef-4eea-483a-820b-f4ded9ce45cf)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d6b18ac-53a7-49c5-8b0c-442e6777777f))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9abd2688-16af-4fb2-88a7-6ae5eb12918e))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5433e3a5-dd0e-4bd7-af8d-675f21591821))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 324d1055-0c44-4ff2-afbe-d1697e4c9ed9))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73952757-6dab-4026-b646-63e9a6aea68b))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f36caec-9ea1-40bb-b7c6-30ecb5a102cc))
(fp_line (start -1.15 -2.25) (end -1.15 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43e47d32-b99f-44e0-ace2-a5b0f3efeec2))
(fp_line (start -1.15 2.25) (end 3.7 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa837e6d-9284-433e-8d76-98b7ead53b90))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b384a4e5-decf-41e4-bb0a-38dcac448aca))
(fp_line (start 3.7 2.25) (end 3.7 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6931163-1ecc-448b-b43e-353ec239460e))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d02fc3d-7044-48d0-b3f8-9373674e17f5))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca04c205-7b1e-466d-91ae-935fa2ae0005))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 8a6ecf92-f044-47b1-a3fd-1273d70baf44))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 62 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp c1cfcf8e-b33f-402a-b1f8-f4070c8e2331))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 28 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp 8843026a-2e35-4de4-a384-5704f3db8e2a))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tstamp 38c12bfc-42f4-4818-96ed-3616478b32a1)
(at 144.1092 86.106 180)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "net tie solder jumper bridged")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Jumper, 2-pole, closed/bridged")
(property "ki_keywords" "Jumper SPST")
(path "/063ded33-9414-4ac9-ad3b-c19356620d6f")
(attr exclude_from_pos_files)
(net_tie_pad_groups "1, 2")
(fp_text reference "G5" (at 3.7967 -0.11194 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24f10b6d-62c1-4401-8c8d-9dac01e700f3)
)
(fp_text value "J2B" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 180d56c4-8bc5-415d-b275-bc9e731f4a60)
)
(fp_poly
(pts
(xy 0.25 -0.3)
(xy -0.25 -0.3)
(xy -0.25 0.3)
(xy 0.25 0.3)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp 0526cf1a-48e2-4aa5-a04e-be998e95c0dd))
(fp_line (start -1.4 0.3) (end -1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5ba72b3-5431-4324-b859-673ee0941339))
(fp_line (start -0.7 -1) (end 0.7 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f1a308d-8ca2-4980-a184-1d561e2cd360))
(fp_line (start 0.7 1) (end -0.7 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11b572ce-195f-46aa-b13f-1e9e78e68f4f))
(fp_line (start 1.4 -0.3) (end 1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14ca1618-aab4-4930-8ad6-326cdab4a84d))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67aa1bd1-7863-4cd0-914f-b54db2ebb752))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddb6a5af-708f-48be-9573-8b3bba6ed779))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dbe3791-9a2d-4da5-b332-efd2739fb61d))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d31459f0-7f7b-4b0a-91b5-594d97be4be7))
(fp_line (start -1.65 -1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91039b77-09fc-4ae4-be61-1a95387bdda4))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd149690-744c-4ed4-8c9e-78b123bfe000))
(fp_line (start 1.65 1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d46a946-35f5-4bf2-9c51-753e6f879c42))
(fp_line (start 1.65 1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp afbe1a91-2155-426d-8ebc-bbbb71d4c903))
(pad "1" smd custom (at -0.65 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 63 "Net-(G5-A)") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp d85343a9-fc19-4e0f-9ae3-1d23744625f1))
(pad "2" smd custom (at 0.65 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 64 "Net-(G5-B)") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
)
(width 0) (fill yes))
) (tstamp f1920adf-fb5f-4956-b4f5-cb9f777a3cf5))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 3b7b0629-b746-48da-8c5b-daf772dbf4ad)
(at 124.1044 60.8838)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/47f3d2d6-1096-48f0-b1d7-da52afc4eba4")
(attr through_hole)
(fp_text reference "R3" (at 1.3956 2.1162) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1267c06-c0a5-44f1-b745-b1d764ea4838)
)
(fp_text value "R" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65711dd2-04d8-4c03-95de-d49cf08336e3)
)
(fp_text user "${REFERENCE}" (at 1.8956 0.1162) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd29de48-7b34-4acd-bb91-b20424f0d4dc)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd0cd491-380c-4472-a5d4-fe66b65fd5a6))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a92de4d9-d9e6-49ff-9df2-b668f2308297))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0103a2d8-78df-45cf-8138-e4777d27a637))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9d1a0ac-de5b-4c29-bc99-d11507d97caf))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16dec2c8-afe4-4969-bccb-d4ae9e134993))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9daf1320-a3f5-4aea-aed5-1f4327e4c345))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b8ac602-1d3e-4d0f-971a-bcb6bb10cb83))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27835fb8-7626-4023-81e4-a17340eac1ef))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43ba5602-422d-4427-9df2-15f18422c95a))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41d9fc1b-b9ca-4653-ad67-c15ee5dcdd0d))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03d9ca08-1b0a-4e5d-8d8d-7c8e52b78887))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b497357-6007-4e4e-87a7-e904cac5654a))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a7aca75-d8d7-477f-af1f-56f6b4fca80c))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17aa5e40-dbea-496c-a113-2e1f55959025))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e10ba718-abe9-4fd1-97da-2ddb212b309c))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e816cff8-ccd2-4189-89da-315722cc17f2))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "Net-(J1-Pin_19)") (pintype "passive") (tstamp 1d814e5b-283b-4b9c-a0bf-43619d1b978c))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 26 "Net-(D1-A)") (pintype "passive") (tstamp a06fda58-7fa0-4c44-80aa-d863e2336b89))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical" (layer "F.Cu")
(tstamp 3d67327c-596f-4d8a-995b-dd96e5744d5b)
(at 136.3472 106.6292 90)
(descr "JST XH series connector, B4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/70678b74-0ee7-47ab-a036-25019deaf482")
(attr through_hole)
(fp_text reference "J9" (at -3.8608 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34e0ffa6-2992-4691-a102-bee8fff6972e)
)
(fp_text value "Conn_01x04_Pin" (at 3.75 4.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcf7e19a-fb15-40db-81a3-06373ef2d9a9)
)
(fp_text user "${REFERENCE}" (at 3.75 2.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f22780f-2738-439e-9aac-714f09b384cf)
)
(fp_line (start -2.85 -2.75) (end -2.85 -1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f075eb82-e500-4dee-812b-c75399ea9a93))
(fp_line (start -2.56 -2.46) (end -2.56 3.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c708748-f520-4d4e-b89c-cf2e313c2fc1))
(fp_line (start -2.56 3.51) (end 10.06 3.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7eb2a2de-f603-47e8-9e2d-0356c63333be))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18e2299c-9bc9-4787-aef3-258ba1634684))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83842c19-fddd-47b1-8759-80b5d7fb9f67))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5328022b-5e36-4b9d-9c95-bfb20f1d24a3))
(fp_line (start -1.8 -0.2) (end -1.8 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e322200-d885-4812-ab77-bb9c84f67188))
(fp_line (start -1.8 2.75) (end 3.75 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d3b7c3d-d5d7-4a62-a467-24bb0044b402))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57eafb2a-c3e9-407b-8298-13015808e83b))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 208ffddf-cc38-48c5-a152-8b67765339e3))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77b64fd7-e167-4aa5-8097-93ed553af2f4))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7915c2e0-090a-4172-b6fb-b7ab5b194840))
(fp_line (start 0.75 -1.7) (end 6.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15915053-c76f-4477-8a0d-2c840d610667))
(fp_line (start 6.75 -2.45) (end 0.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca0662dc-2fbe-4a3a-b0f7-72e747604eec))
(fp_line (start 6.75 -1.7) (end 6.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa2c894c-fade-46a7-9142-47d5ff3ffd93))
(fp_line (start 8.25 -2.45) (end 8.25 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6d42971-359e-4c28-83bc-585dbb100862))
(fp_line (start 8.25 -1.7) (end 10.05 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8145ec3-50e0-48b5-91f0-6a7258e1bafb))
(fp_line (start 9.3 -0.2) (end 9.3 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6e7d714-b8e0-43c7-b74c-8e05c2b0bd0b))
(fp_line (start 9.3 2.75) (end 3.75 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c7b11b9-6da1-4588-8bc7-86cf321a3d03))
(fp_line (start 10.05 -2.45) (end 8.25 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3cb4d43-ef85-4405-b6d1-2c44061e16b0))
(fp_line (start 10.05 -1.7) (end 10.05 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f188c006-c5dd-4468-9387-cc95897d055d))
(fp_line (start 10.05 -0.2) (end 9.3 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c93111a-855b-4be5-a014-d09f6963ab62))
(fp_line (start 10.06 -2.46) (end -2.56 -2.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 844bb7eb-3ae5-4121-a737-aae40b73a03a))
(fp_line (start 10.06 3.51) (end 10.06 -2.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a2c2478-b9fc-4079-acda-97ef44a99c90))
(fp_line (start -2.95 -2.85) (end -2.95 3.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3621797e-f464-4d53-b939-52d8ff4ed07e))
(fp_line (start -2.95 3.9) (end 10.45 3.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 859d99c7-5624-4544-9a2d-0e3e30675e19))
(fp_line (start 10.45 -2.85) (end -2.95 -2.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e18e1fa-18cb-486f-9831-fb2a3b2f5c02))
(fp_line (start 10.45 3.9) (end 10.45 -2.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 999b2da8-3a8b-43a7-a14d-f144f07585c5))
(fp_line (start -2.45 -2.35) (end -2.45 3.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08f9e041-7063-48b5-bb11-02c8b48aee3a))
(fp_line (start -2.45 3.4) (end 9.95 3.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbc7f9be-1ee9-487d-be74-7a357b834a07))
(fp_line (start -0.625 -2.35) (end 0 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b588d12-d62f-414d-bef3-ac81a1f73d29))
(fp_line (start 0 -1.35) (end 0.625 -2.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92eafaec-7f03-40eb-908c-2c24f006dc41))
(fp_line (start 9.95 -2.35) (end -2.45 -2.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a23d4ad5-31c7-4b49-8c4f-436560d30aca))
(fp_line (start 9.95 3.4) (end 9.95 -2.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9118a6e1-5d92-48fc-aac9-c5a41a11b4a9))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 31 "Net-(J18-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp ae728bf2-eb09-4dfc-80e4-99f5844d48a2))
(pad "2" thru_hole oval (at 2.5 0 90) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 59 "Net-(J18-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 113b8340-2fd0-42df-ad41-6ce92e776741))
(pad "3" thru_hole oval (at 5 0 90) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 58 "Net-(J18-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 75dd4dae-482a-44c0-b861-62fd75c42f63))
(pad "4" thru_hole oval (at 7.5 0 90) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 57 "Net-(J18-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 9ae23343-26fd-4128-9608-aba41f7ca455))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical.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_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 4057240e-d6fe-4516-bd02-f652d6180ec3)
(at 124 65.3288)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "FONA_pi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1786b2c2-7045-4bfc-ad45-fc450f9f653d")
(attr through_hole)
(fp_text reference "R2" (at 1.5 2.1712) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe9ab264-9553-4576-a32b-21d2e35e74f6)
)
(fp_text value "R" (at 0 -1.905) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16de47b3-8aab-4100-8c15-5cb931097b07)
)
(fp_text user "${REFERENCE}" (at 2 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 339755d5-8bb5-4767-bc59-53a1c521f433)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d30f5405-4774-4fdd-8225-ac2fc9dd4169))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 840c00b3-84fa-4563-8588-cd4e4e5b1dc2))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d644251c-9ebe-44b0-bf65-52f29b805d3d))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b8c3f89-5367-4325-95b3-1e3fa0671061))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)