-
Notifications
You must be signed in to change notification settings - Fork 0
/
db37kx.kicad_pcb
4882 lines (4864 loc) · 524 KB
/
db37kx.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.64592)
)
(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") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.0254))
(layer "F.Cu" (type "copper") (thickness 0.03556))
(layer "dielectric 1" (type "core") (color "FR4 natural") (thickness 1.524) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.03556))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (thickness 0.0254))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 80 80)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "/RS232CTS")
(net 3 "/IF IN")
(net 4 "/RS-TTL OUT")
(net 5 "/CI-V OUT")
(net 6 "/FIF OUT")
(net 7 "/FILTER IN")
(net 8 "/PULL UP")
(net 9 "/FSW IN")
(net 10 "/MIC #6")
(net 11 "/MIC #8")
(net 12 "/MIC")
(net 13 "/RADIO MIC IN")
(net 14 "/RADIO AF IN")
(net 15 "/RADIO AF OUT")
(net 16 "/IF-FIF")
(net 17 "/FIF IN")
(net 18 "/RS232 IN")
(net 19 "/RS232 OUT")
(net 20 "/IF OUT")
(net 21 "/CW OUT")
(net 22 "/FSK OUT")
(net 23 "/MIC #5")
(net 24 "/MIC #7")
(net 25 "/MIC GND")
(net 26 "/RADIO MIC IN GND")
(net 27 "/RADIO AF IN GND")
(net 28 "/RADIO AF OUT GND")
(net 29 "GND")
(net 30 "/RADIO_R_PASSTHRU")
(net 31 "/PTT")
(net 32 "unconnected-(J5-NC-Pad4)")
(net 33 "unconnected-(J5-NC-Pad5)")
(net 34 "unconnected-(J2-NC-Pad4)")
(net 35 "unconnected-(J2-NC-Pad5)")
(net 36 "unconnected-(J3-R-Pad2)")
(net 37 "unconnected-(J3-NC-Pad4)")
(net 38 "unconnected-(J3-NC-Pad5)")
(net 39 "unconnected-(J6-NC-Pad4)")
(net 40 "unconnected-(J6-NC-Pad5)")
(net 41 "unconnected-(J7-NC-Pad4)")
(net 42 "unconnected-(J7-NC-Pad5)")
(net 43 "unconnected-(J4-NC-Pad5)")
(net 44 "unconnected-(J4-NC-Pad6)")
(footprint "Connector_Audio_Tensility:54-00299" (layer "F.Cu")
(tstamp 083e5055-2643-4ff2-942a-1a621e21b80c)
(at 154 80 -90)
(descr "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder")
(property "Digi-KeyPN" "839-54-00299CT-ND")
(property "MPN" "54-00299")
(property "Manufacturer" "Tensility")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder, no switch")
(property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector")
(path "/1da7704a-1ad7-4798-bb39-72695314f43b")
(attr through_hole)
(fp_text reference "J3" (at 13 -2.5 -180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 88e4756d-10ff-4fbd-b8e2-e9952ed110c3)
)
(fp_text value "54-00299" (at 5.5 -1.25 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 67d75106-547a-4c85-86bd-10230d253fbc)
)
(fp_text user "${REFERENCE}" (at 5.5 1.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 4b9f063d-fa5c-46ae-a8f0-49d4eac93a64)
)
(fp_line (start -2.25 2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 63cf7c9c-cb0f-474f-8e4c-d90d175c31b8))
(fp_line (start -0.25 -3.75) (end 12.75 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp baf8a449-de5f-4358-b136-acd6c7bcfcb0))
(fp_line (start -0.25 -2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 6e4f8a27-ab90-420c-8e30-717658c00b0d))
(fp_line (start -0.25 -2.75) (end -0.25 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 50bb3199-cced-4c85-af69-abe548ac9671))
(fp_line (start -0.25 2.75) (end -2.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 2b9a16ad-807b-4424-a782-63eecf4a7e85))
(fp_line (start -0.25 3.75) (end -0.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 3896c61c-f835-42c9-b80f-12c8195e31ce))
(fp_line (start 12.75 -3.75) (end 12.75 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp d51c61d3-517b-4fc0-87ac-f22123a78b8f))
(fp_line (start 12.75 3.75) (end -0.25 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp a8814aec-0c5a-453e-b30f-eabf8c1e5c5a))
(fp_line (start -2 -2.5) (end 0 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 837185fb-cc9b-431b-ae65-49e181a18c71))
(fp_line (start -2 2.5) (end -2 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 669863a4-42b2-4511-ad94-88e5d6cf2992))
(fp_line (start 0 -3.5) (end 12.25 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp ae75ee85-4488-4631-83f6-3009b12681ff))
(fp_line (start 0 -1.65) (end 0 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 8d408504-0f4a-4f9d-99ea-6ac91e0b91a8))
(fp_line (start 0 2.5) (end -2 2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 03e272c1-96cd-435b-a3f7-053f33e601f7))
(fp_line (start 0 3.5) (end 0 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 78584b3d-c692-4e8c-9743-fb4e73707afa))
(fp_line (start 12.25 -3.5) (end 12.25 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 7a4b357f-5a9c-4c8a-8212-2da43c7c98ce))
(fp_line (start 12.25 3.5) (end 0 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 73871b63-8717-42bf-8d3d-f6d3c4821e90))
(fp_rect (start 0 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp d5e25c7c-00e1-41ec-89db-fbcc6d22455a))
(pad "" np_thru_hole circle (at 9 0 270) (size 1.4 1.4) (drill 1.4) (layers "F&B.Cu" "*.Mask") (tstamp 4d5cd103-049f-4688-8146-0231813ccde7))
(pad "1" thru_hole oval (at 2.9 2.9 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "S") (pintype "passive") (tstamp 6b5c74d3-c482-476f-b677-0b7a35ae52dd))
(pad "2" thru_hole oval (at 5.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 36 "unconnected-(J3-R-Pad2)") (pinfunction "R") (pintype "passive+no_connect") (tstamp 11189a28-4ae1-4518-bb9f-d82fd503b2be))
(pad "3" thru_hole oval (at 9.3 -2.55 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 21 "/CW OUT") (pinfunction "T") (pintype "passive") (tstamp 9a53145f-c80c-4535-ba49-a7ca1a9188d8))
(pad "4" thru_hole oval (at 11.5 -1.8 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 37 "unconnected-(J3-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 07a3ee34-551b-413f-9db0-97f51bbd3df2))
(pad "5" thru_hole oval (at 10.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(J3-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp e909ba48-fa4c-4159-b508-14e8c11bb6e6))
(model "${KICAD_USER_LIBRARY_DIR}/Connector_Audio_Tensility/Connector_Audio_Tensility.3dshapes/54-00299.STEP"
(offset (xyz 12 0 2.05))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Connector_Audio_Tensility:54-00299" (layer "F.Cu")
(tstamp 1918769f-9610-4eba-93b9-64a4d35b476b)
(at 94 80 -90)
(descr "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder")
(property "Digi-KeyPN" "839-54-00299CT-ND")
(property "MPN" "54-00299")
(property "Manufacturer" "Tensility")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder, no switch")
(property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector")
(path "/deecd1c8-7028-4b02-b7b9-c67b9455c2af")
(attr through_hole)
(fp_text reference "J6" (at 13 -2.5 -180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 98de5c97-24d0-4d32-9d8f-bfa800a68844)
)
(fp_text value "54-00299" (at 5.5 -1.25 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp e8f62e74-9065-417c-aa85-2accd871ab7e)
)
(fp_text user "${REFERENCE}" (at 5.5 1.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp e614244a-9eb8-42d5-85de-7d315fef6480)
)
(fp_line (start -2.25 2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp bf3f3db5-4222-4d45-a70c-a086fc251f6e))
(fp_line (start -0.25 -3.75) (end 12.75 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 47b68d03-2f5e-4bba-9048-16e7756b466f))
(fp_line (start -0.25 -2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 1e415573-5ba0-4e73-9882-1bbe162b594c))
(fp_line (start -0.25 -2.75) (end -0.25 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp ab267a96-1428-450d-b9d6-7879b01f0d6e))
(fp_line (start -0.25 2.75) (end -2.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp ba1cc622-bd3d-4c2a-ab79-6e2c62c67061))
(fp_line (start -0.25 3.75) (end -0.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 9dc81157-483d-4218-95ae-a09ba288fb69))
(fp_line (start 12.75 -3.75) (end 12.75 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp eb2d83a9-9593-47e5-9b6b-6c53adb2e5f9))
(fp_line (start 12.75 3.75) (end -0.25 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 3352b801-0156-4a2f-baf7-a63602ad297b))
(fp_line (start -2 -2.5) (end 0 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp bc9931ce-f1d0-4c5b-825f-5b40efcd54ac))
(fp_line (start -2 2.5) (end -2 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 4eb26e67-0ad5-4efe-8e55-63c824163205))
(fp_line (start 0 -3.5) (end 12.25 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 41461b49-f0f7-4f7b-87f1-05f924a43a17))
(fp_line (start 0 -1.65) (end 0 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 5539fb79-40c6-4dcf-bb71-c2de2a56ac77))
(fp_line (start 0 2.5) (end -2 2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp bf9e96cb-111d-4938-bc6b-fd127a36053a))
(fp_line (start 0 3.5) (end 0 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 1128ab01-1806-4988-9d90-31bdbf247f4d))
(fp_line (start 12.25 -3.5) (end 12.25 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 6fd84d8c-c55c-4d9a-85da-9ac6237426a7))
(fp_line (start 12.25 3.5) (end 0 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 047c0fd2-795c-4d53-a18d-93eb02c6ebfe))
(fp_rect (start 0 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp a9e3a1d3-f059-46fb-954c-16ea04301c08))
(pad "" np_thru_hole circle (at 9 0 270) (size 1.4 1.4) (drill 1.4) (layers "F&B.Cu" "*.Mask") (tstamp 3bbcd676-6f2f-4d64-aaed-271ae123cea6))
(pad "1" thru_hole oval (at 2.9 2.9 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 28 "/RADIO AF OUT GND") (pinfunction "S") (pintype "passive") (tstamp 380b971d-ee82-485d-bd8e-023f511f8a23))
(pad "2" thru_hole oval (at 5.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 30 "/RADIO_R_PASSTHRU") (pinfunction "R") (pintype "passive") (tstamp 6f66636f-32d0-4933-84c5-7c56f7f875d5))
(pad "3" thru_hole oval (at 9.3 -2.55 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 15 "/RADIO AF OUT") (pinfunction "T") (pintype "passive") (tstamp 1fc906cc-a088-45d5-ac60-41aa5c715265))
(pad "4" thru_hole oval (at 11.5 -1.8 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 39 "unconnected-(J6-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp e7388c75-7f71-4e03-be8f-60e650cd8b8d))
(pad "5" thru_hole oval (at 10.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 40 "unconnected-(J6-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp 7198422e-01fa-4353-906c-3c633ba36bdb))
(model "${KICAD_USER_LIBRARY_DIR}/Connector_Audio_Tensility/Connector_Audio_Tensility.3dshapes/54-00299.STEP"
(offset (xyz 12 0 2.05))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Connector_Dsub_Kycon:K85X-CD-37S" (layer "F.Cu")
(tstamp 6a1d557f-fd8e-46f1-9d5b-4a85d84f9e24)
(at 124 115.58 180)
(descr "37 Position D-Sub Receptacle, Female Sockets Connector")
(property "Digi-KeyPN" "2092-K85X-CD-37S-ND")
(property "MPN" "K85X-CD-37S")
(property "Manufacturer" "Kycon")
(property "MouserPN" "806-K85X-CD-37S")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "37 Position D-Sub Receptacle, Female Sockets Connector")
(property "ki_keywords" "db-37")
(path "/db5f5fb4-20b7-4629-aca9-72cc53fd11e8")
(attr through_hole)
(fp_text reference "J8" (at -31.75 -2.75 180 unlocked) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125) bold))
(tstamp bf0d8e9f-7fc3-4d1a-849f-7cf4241c5d64)
)
(fp_text value "K85X-CD-37S" (at -26.4 0 180 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp ace41d93-3e25-43d5-88b6-b183a63dc823)
)
(fp_text user "${REFERENCE}" (at 26.8 0 180 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 4cc74c00-ef47-48c5-aa87-62ceb8ceee17)
)
(fp_poly
(pts
(xy -1.6 -0.3)
(xy 1.6 -0.3)
(xy 1.3 0.2)
(xy -1.3 0.2)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 6f381695-49bb-4cea-8c9b-5c9e3871fcbf))
(fp_rect (start -35.16 -6.9) (end 35.16 6.9)
(stroke (width 0.1) (type default)) (fill none) (layer "F.CrtYd") (tstamp 15d61307-5f56-4146-bcce-946c01133dbf))
(fp_rect (start -34.66 -6.4) (end 34.66 6.4)
(stroke (width 0.1) (type default)) (fill none) (layer "F.Fab") (tstamp e120b10e-b5fa-4a76-bccc-aa3ec24bf4fe))
(pad "1" thru_hole circle (at -24.93 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pinfunction "Pin_1") (pintype "passive") (tstamp 2a6e5114-a1d2-4485-be9d-5a39318a08aa))
(pad "2" thru_hole circle (at -22.16 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 2 "/RS232CTS") (pinfunction "Pin_2") (pintype "passive") (tstamp c2c3355c-093c-488d-bced-0075b5106c4c))
(pad "3" thru_hole circle (at -19.39 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 3 "/IF IN") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 6a10ba45-2d4e-461b-bf46-995bf63516be))
(pad "4" thru_hole circle (at -16.62 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 4 "/RS-TTL OUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 7cfcc327-4b0d-4432-a3d6-7f8241b33b4b))
(pad "5" thru_hole circle (at -13.85 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 4 "/RS-TTL OUT") (pinfunction "Pin_5") (pintype "passive") (tstamp 33cc8599-50c6-4c2d-9ecc-66f25dd917e7))
(pad "6" thru_hole circle (at -11.08 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 5 "/CI-V OUT") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 3f8d050b-ad41-4192-8f4b-b5323adf3346))
(pad "7" thru_hole circle (at -8.31 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 6 "/FIF OUT") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 26c93aa8-ea6e-41e6-9c50-011a6b6f6d25))
(pad "8" thru_hole circle (at -5.54 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 7 "/FILTER IN") (pinfunction "Pin_8") (pintype "passive") (tstamp f862b55e-f809-4c5c-b003-1c6ff9afec62))
(pad "9" thru_hole circle (at -2.77 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 31 "/PTT") (pinfunction "Pin_9") (pintype "passive") (tstamp 001d29a8-4772-467b-9750-e5bd1ce842f9))
(pad "10" thru_hole circle (at 0 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 8 "/PULL UP") (pinfunction "Pin_10") (pintype "passive+no_connect") (tstamp e40eb3dc-eb99-4f97-8cd6-5b3dee87eb62))
(pad "11" thru_hole circle (at 2.77 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 9 "/FSW IN") (pinfunction "Pin_11") (pintype "passive") (tstamp 916ea903-df34-4c54-b75f-a42b6e2854dd))
(pad "12" thru_hole circle (at 5.54 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 9 "/FSW IN") (pinfunction "Pin_12") (pintype "passive") (tstamp 904f00e7-b2b1-468a-95d6-50b2e49d78ba))
(pad "13" thru_hole circle (at 8.31 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 25 "/MIC GND") (pinfunction "Pin_13") (pintype "passive") (tstamp 264801a9-9de3-4070-bddb-a47a0e4ea496))
(pad "14" thru_hole circle (at 11.08 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 10 "/MIC #6") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp 3c65de68-32d3-4c60-bcef-dafc761d5120))
(pad "15" thru_hole circle (at 13.85 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 11 "/MIC #8") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp 3fe3a35d-be3c-4fa9-be62-5cfea60732e9))
(pad "16" thru_hole circle (at 16.62 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 12 "/MIC") (pinfunction "Pin_16") (pintype "passive") (tstamp 02a99f87-d06f-4ca9-bfc1-d7f7b5bb6f61))
(pad "17" thru_hole circle (at 19.39 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 13 "/RADIO MIC IN") (pinfunction "Pin_17") (pintype "passive") (tstamp a6224568-87e4-4a66-b2e1-7687d857fe33))
(pad "18" thru_hole circle (at 22.16 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 14 "/RADIO AF IN") (pinfunction "Pin_18") (pintype "passive+no_connect") (tstamp 4ab37193-cfb4-466a-8dbc-16964002138f))
(pad "19" thru_hole circle (at 24.93 -1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 15 "/RADIO AF OUT") (pinfunction "Pin_19") (pintype "passive") (tstamp f1716385-5ea9-4500-8333-3006f18f9e97))
(pad "20" thru_hole circle (at -23.545 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 2 "/RS232CTS") (pinfunction "Pin_20") (pintype "passive") (tstamp 3a99b14e-06e0-44a0-aa4a-d537acb980fc))
(pad "21" thru_hole circle (at -20.775 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 16 "/IF-FIF") (pinfunction "Pin_21") (pintype "passive+no_connect") (tstamp 6769b295-6ab4-4cdb-b1f4-e2d529a49fbe))
(pad "22" thru_hole circle (at -18.005 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 17 "/FIF IN") (pinfunction "Pin_22") (pintype "passive") (tstamp a4e031ed-9370-4883-ad16-e3c38d2e6886))
(pad "23" thru_hole circle (at -15.235 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 17 "/FIF IN") (pinfunction "Pin_23") (pintype "passive") (tstamp 1a60287f-75a5-424a-ac78-172804112bc3))
(pad "24" thru_hole circle (at -12.465 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 18 "/RS232 IN") (pinfunction "Pin_24") (pintype "passive+no_connect") (tstamp 6a1637a4-46d3-48e4-91a7-7ed99fbcf3ba))
(pad "25" thru_hole circle (at -9.695 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 19 "/RS232 OUT") (pinfunction "Pin_25") (pintype "passive") (tstamp 7a0cc967-58d3-4bfb-ad14-8f5964610a22))
(pad "26" thru_hole circle (at -6.925 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 20 "/IF OUT") (pinfunction "Pin_26") (pintype "passive+no_connect") (tstamp b6d288b6-2abf-4c02-868d-e4efae7c6f1a))
(pad "27" thru_hole circle (at -4.155 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 31 "/PTT") (pinfunction "Pin_27") (pintype "passive") (tstamp cd5f1394-9a26-4c9a-97f4-666757e4d6fe))
(pad "28" thru_hole circle (at -1.385 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 21 "/CW OUT") (pinfunction "Pin_28") (pintype "passive") (tstamp 8eefa951-3f8e-4804-8ba8-e8ae6c178e11))
(pad "29" thru_hole circle (at 1.385 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 22 "/FSK OUT") (pinfunction "Pin_29") (pintype "passive+no_connect") (tstamp d441d218-7295-4dde-93c5-4eae8e571786))
(pad "30" thru_hole circle (at 4.155 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 12 "/MIC") (pinfunction "Pin_30") (pintype "passive") (tstamp f6643117-a539-4b7e-b9a9-4cc45d1a73bb))
(pad "31" thru_hole circle (at 6.925 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "Pin_31") (pintype "passive") (tstamp c01f7150-9362-4bd0-8c2e-b6d6fea78cf9))
(pad "32" thru_hole circle (at 9.695 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 23 "/MIC #5") (pinfunction "Pin_32") (pintype "passive+no_connect") (tstamp 84b743f5-81f8-4710-b07e-af9430cf7db8))
(pad "33" thru_hole circle (at 12.465 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 24 "/MIC #7") (pinfunction "Pin_33") (pintype "passive+no_connect") (tstamp de3028fd-85f4-4587-aa46-ddf87f32742e))
(pad "34" thru_hole circle (at 15.235 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 25 "/MIC GND") (pinfunction "Pin_34") (pintype "passive") (tstamp a3608e92-df67-4b3b-83bc-e580b4c68c82))
(pad "35" thru_hole circle (at 18.005 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 26 "/RADIO MIC IN GND") (pinfunction "Pin_35") (pintype "passive") (tstamp 053e1917-33e6-4234-a0c0-cf823f9ee5fc))
(pad "36" thru_hole circle (at 20.775 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 27 "/RADIO AF IN GND") (pinfunction "Pin_36") (pintype "passive+no_connect") (tstamp beccad6b-b76b-4944-9839-56e60eb99bc8))
(pad "37" thru_hole circle (at 23.545 1.42) (size 1.7 1.7) (drill 1.09) (layers "*.Cu" "*.Mask")
(net 28 "/RADIO AF OUT GND") (pinfunction "Pin_37") (pintype "passive") (tstamp cb64589b-1c23-4dc6-a539-469a2c1f0a94))
(pad "SH" thru_hole circle (at -31.75 0 180) (size 4 4) (drill 3.175) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "SH") (pintype "power_in") (tstamp dd4183a2-18b5-48db-acce-69e0233a7ef0))
(pad "SH" thru_hole circle (at 31.75 0 180) (size 4 4) (drill 3.175) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "SH") (pintype "power_in") (tstamp 0e38924a-af5f-4f67-a2d4-518ec3bb7df5))
(model ":KICAD_USER_LIBRARY_DIR:Connector_Dsub_Kycon/Connector_Dsub_Kycon.3dshapes/K85X-CD-37S_rA3.IGS"
(offset (xyz 0 0 6))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Spacer_Wuerth:9774030360R" (layer "F.Cu")
(tstamp 8c99fba6-cefc-45ec-974b-c219cdefe19e)
(at 109 90)
(descr "ROUND STANDOFF M3X0.5 STEEL 3MM")
(property "Digi-KeyPN" "732-5270-1-ND")
(property "MPN" "9774030360R")
(property "Manufacturer" "Wuerth")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "ROUND STANDOFF M3X0.5 STEEL 3MM")
(property "ki_keywords" "standoff")
(path "/1797bc3c-8cad-4082-8dc2-8c5f141de512")
(attr smd)
(fp_text reference "S1" (at 0 -11 unlocked) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 79dd4bf1-c7a1-4e61-8e2e-500af9ef20ee)
)
(fp_text value "9774030360R" (at 0 9 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 7f60b628-75d8-4ac6-8bcd-f5030903611c)
)
(fp_text user "${REFERENCE}" (at 5 -11 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp a857ab67-45cb-401d-bd49-0e1869b7f183)
)
(pad "1" thru_hole circle (at 0 0) (size 7.4 7.4) (drill 4.4) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 70014326-f8f1-4f36-a7c7-653d8e1b616d))
(model "${KICAD_USER_LIB_DIR}/Spacer_Wuerth/Spacer_Wuerth.3dshapes/9774100151 (rev1).stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ":KICAD_USER_LIBRARY_DIR:Spacer_Wuerth/Spacer_Wuerth.3dshapes/9774030360R (rev1).igs"
(offset (xyz 0 0 3.2))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "Connector_Audio_Tensility:54-00176" (layer "F.Cu")
(tstamp b8878d8c-3536-4e44-a28e-3a46ee4aabbf)
(at 124 80 -90)
(descr "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder")
(property "Digi-KeyPN" "839-54-00176CT-ND")
(property "MPN" "54-00176")
(property "Manufacturer" "Tensility")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (4 Conductor, TRRS) Connector Solder")
(property "ki_keywords" "audio jack receptacle stereo headphones TRRS connector")
(path "/c4050f50-e0b4-4a83-b589-f9bc3141dafa")
(attr through_hole)
(fp_text reference "J4" (at 13 -2.5 -180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp f406ceef-84b6-458f-af0f-b45cdd0fc56b)
)
(fp_text value "54-00176" (at 5.5 -1.25 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp db5a5722-9fe4-4e98-b06f-bf9085735f42)
)
(fp_text user "${REFERENCE}" (at 5.525 1.525 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 70196a63-590a-4934-8c08-44a66fdbc804)
)
(fp_line (start -2.25 2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 0c055b93-e0c7-4c95-b364-7e8788a631c6))
(fp_line (start -0.25 -3.75) (end 12.75 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 16b408c8-967a-45cb-b89a-ac954ea4b743))
(fp_line (start -0.25 -2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp b8ee16fe-161c-407c-be81-00ba63b839c9))
(fp_line (start -0.25 -2.75) (end -0.25 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp b531a63c-15b9-434e-94ff-1c63d5258ed8))
(fp_line (start -0.25 2.75) (end -2.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 145ff84d-6b94-49f8-a181-f2d11257da88))
(fp_line (start -0.25 3.75) (end -0.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp e254aac0-f7c6-4367-9d16-24409ea4d4b2))
(fp_line (start 12.75 -3.75) (end 12.75 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 97896d91-c3e2-4fe6-836b-6b2bf24798b4))
(fp_line (start 12.75 3.75) (end -0.25 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp cf0796b4-2fff-4e7e-9694-2377bf8133db))
(fp_line (start -2 -2.5) (end 0 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 26b0c31b-f229-408d-8693-57edd4bda893))
(fp_line (start -2 2.5) (end -2 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 779e5ef0-8978-48d1-a6b3-41440ba7f2fd))
(fp_line (start 0 -3.5) (end 12.25 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp b5c7720f-4481-4e89-8739-c4a74a655b6a))
(fp_line (start 0 -1.65) (end 0 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 0d949ca1-e761-46ce-bff9-f96af463ab75))
(fp_line (start 0 -1.65) (end 1.2 -1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 0e5bf5ba-23a4-4af5-89cf-dcf498106c59))
(fp_line (start 0 1.65) (end 1.2 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 9155da54-96d0-4578-b93d-ef12d145b5c3))
(fp_line (start 0 2.5) (end -2 2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 86264ce9-5d56-4035-9e03-5861e352d566))
(fp_line (start 0 3.5) (end 0 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp c1bc7125-73da-4636-a1e3-3b33e225ec5e))
(fp_line (start 1.2 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 86be2568-2dea-42b8-b0ea-f6c68f0fcb43))
(fp_line (start 1.2 2.5) (end 1.2 3.5)
(stroke (width 0.1) (type dot)) (layer "F.Fab") (tstamp 25611a78-0f4e-4643-b9aa-d9a416c2f937))
(fp_line (start 12.25 -3.5) (end 12.25 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp edd5f96a-d599-40d4-a14f-d79e47bfd546))
(fp_line (start 12.25 3.5) (end 0 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp b1ff89bd-f8a0-406d-b897-f8d1dbc1cbc1))
(fp_rect (start 0 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 42f9d4c3-89e3-4a79-8a25-68e105927a46))
(pad "" np_thru_hole circle (at 10.5 0 270) (size 1.4 1.4) (drill 1.4) (layers "F&B.Cu" "*.Mask") (tstamp b8bcfe18-2655-40a3-a62c-3826ce25aada))
(pad "1" thru_hole oval (at 1.3 2.9 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 26 "/RADIO MIC IN GND") (pinfunction "S") (pintype "passive") (tstamp cabcf634-7196-4fdc-8b27-c237b31227f1))
(pad "2" thru_hole oval (at 1.4 -2.2 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "R2") (pintype "passive") (tstamp 60dc2f9c-2ddd-49c9-a22f-515d6021a5f0))
(pad "3" thru_hole oval (at 5.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 31 "/PTT") (pinfunction "R1") (pintype "passive") (tstamp 55c5458b-ffd6-44d1-bf6b-10503a1e21ef))
(pad "4" thru_hole oval (at 9.3 -2.55 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 13 "/RADIO MIC IN") (pinfunction "T") (pintype "passive") (tstamp 38493078-bc52-414f-beba-84f09c5f633f))
(pad "5" thru_hole oval (at 11.5 -1.8 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(J4-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp 121c0798-a721-4e19-b50a-7f904eef4139))
(pad "6" thru_hole oval (at 10.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(J4-NC-Pad6)") (pinfunction "NC") (pintype "no_connect") (tstamp a5bce052-2b8c-48bc-9b09-f7adeca9dc06))
(model "${KICAD_USER_LIBRARY_DIR}/Connector_Audio_Tensility/Connector_Audio_Tensility.3dshapes/54-00176.STEP"
(offset (xyz 12 0 2.05))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Connector_Audio_Tensility:54-00299" (layer "F.Cu")
(tstamp bd5c262d-5a64-4cba-9f46-188006a63858)
(at 79 80 -90)
(descr "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder")
(property "Digi-KeyPN" "839-54-00299CT-ND")
(property "MPN" "54-00299")
(property "Manufacturer" "Tensility")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder, no switch")
(property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector")
(path "/fa1174bb-b0c3-497f-a6c9-80835b9cbf04")
(attr through_hole)
(fp_text reference "J5" (at 13 -2.5 -180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 830daba7-9e8d-40cb-83fb-4e087ab42424)
)
(fp_text value "54-00299" (at 5.5 -1.25 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 33a2aa7a-b1fe-4cee-a51c-9613fba7e7ef)
)
(fp_text user "${REFERENCE}" (at 5.5 1.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 9ad01c47-c072-41ba-9279-9aa186e8c601)
)
(fp_line (start -2.25 2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 64dab1e6-9a8f-4d98-9ccf-0507c919ac2a))
(fp_line (start -0.25 -3.75) (end 12.75 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 8b72bb1a-e8d9-47df-a3ec-0e4d54967962))
(fp_line (start -0.25 -2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 6c6e76a6-393b-4eed-9a13-8631f51b6832))
(fp_line (start -0.25 -2.75) (end -0.25 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp a155bc6c-37dd-4fb7-8029-4e41a26c7522))
(fp_line (start -0.25 2.75) (end -2.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 994847a9-8ae8-46c1-ad50-b21f14bed7d6))
(fp_line (start -0.25 3.75) (end -0.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp cb4c4c1b-90fd-4fbc-b049-26b416cc5326))
(fp_line (start 12.75 -3.75) (end 12.75 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 3b634bbb-b281-443e-b1f4-c0e58ce80ac6))
(fp_line (start 12.75 3.75) (end -0.25 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 8c0d78f2-0bc4-4775-8b8a-f11d2848cc69))
(fp_line (start -2 -2.5) (end 0 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp f2a500a8-c6c5-447c-a32e-f3893737a0ea))
(fp_line (start -2 2.5) (end -2 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 3ac2a027-74b1-4b41-8349-a189e65def53))
(fp_line (start 0 -3.5) (end 12.25 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp d7645946-6e66-4366-85eb-755428cfd303))
(fp_line (start 0 -1.65) (end 0 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 01eb360b-a174-40ed-a3e8-06ae43680de2))
(fp_line (start 0 2.5) (end -2 2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp cfa1af3c-3519-4f34-972f-e1dca837d6d4))
(fp_line (start 0 3.5) (end 0 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp ef7c99fd-0d3e-494c-9f44-983546111b05))
(fp_line (start 12.25 -3.5) (end 12.25 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp de35abbd-8f2b-4a67-a773-ccdb37a68481))
(fp_line (start 12.25 3.5) (end 0 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 4a2c7556-baa3-4ec9-8a67-b9c229e8d36f))
(fp_rect (start 0 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp cb6ea12c-3e61-4072-a00f-ffd25cf05e2e))
(pad "" np_thru_hole circle (at 9 0 270) (size 1.4 1.4) (drill 1.4) (layers "F&B.Cu" "*.Mask") (tstamp a379532d-d742-4429-8f32-fd154b93758f))
(pad "1" thru_hole oval (at 2.9 2.9 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 28 "/RADIO AF OUT GND") (pinfunction "S") (pintype "passive") (tstamp 5ba4cbeb-b2df-4e90-9459-fcfcdabf8b30))
(pad "2" thru_hole oval (at 5.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 30 "/RADIO_R_PASSTHRU") (pinfunction "R") (pintype "passive") (tstamp 46632279-5de2-44c6-b04e-c35d120b4e38))
(pad "3" thru_hole oval (at 9.3 -2.55 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 15 "/RADIO AF OUT") (pinfunction "T") (pintype "passive") (tstamp dd9853d4-4515-4547-9469-2bdedc65afe3))
(pad "4" thru_hole oval (at 11.5 -1.8 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J5-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 10afeca5-9e8f-43f3-b5c6-4debffbe56ba))
(pad "5" thru_hole oval (at 10.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(J5-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp 14dd7694-0ee8-4026-8a5e-5c374121e344))
(model "${KICAD_USER_LIBRARY_DIR}/Connector_Audio_Tensility/Connector_Audio_Tensility.3dshapes/54-00299.STEP"
(offset (xyz 12 0 2.05))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Connector_Audio_Tensility:54-00299" (layer "F.Cu")
(tstamp e767b9c1-d3d5-4dda-8f43-fd67d1aeacc7)
(at 169 80 -90)
(descr "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder")
(property "Digi-KeyPN" "839-54-00299CT-ND")
(property "MPN" "54-00299")
(property "Manufacturer" "Tensility")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder, no switch")
(property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector")
(path "/b2575722-9c63-4982-b251-a1b39b8802fc")
(attr through_hole)
(fp_text reference "J2" (at 13 -2.5 -180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp e6a16c1a-f9fd-4274-a8e9-4bf8371a1090)
)
(fp_text value "54-00299" (at 5.5 -1.25 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 1ad63271-4dc5-4d75-a0d0-ea5a6d56c72c)
)
(fp_text user "${REFERENCE}" (at 5.5 1.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 702ad285-4e06-4cad-9847-f362d6af94c6)
)
(fp_line (start -2.25 2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 16da48fa-5a6d-4197-a29b-3bda496f3571))
(fp_line (start -0.25 -3.75) (end 12.75 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 5e3a3088-8f2d-4fca-a792-9643cb497b96))
(fp_line (start -0.25 -2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp fe939627-3fb1-4172-b7f7-56b61217efe1))
(fp_line (start -0.25 -2.75) (end -0.25 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp b42a97ce-7a1e-404d-908f-f7e6f98c4600))
(fp_line (start -0.25 2.75) (end -2.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 3e07e966-96f7-4a4c-86d0-6041449d8816))
(fp_line (start -0.25 3.75) (end -0.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 48b1d7fb-a88b-4d68-bf52-039be78a657f))
(fp_line (start 12.75 -3.75) (end 12.75 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp ceadf218-9550-4b2b-a4e8-5a9cf80db460))
(fp_line (start 12.75 3.75) (end -0.25 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp e7a08daf-26bb-4eac-97e1-7aa660dc3b19))
(fp_line (start -2 -2.5) (end 0 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp da1d50d0-46b4-4f96-b638-c842d5d27922))
(fp_line (start -2 2.5) (end -2 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 9e3b6db1-a50c-4d63-bcd9-b4bca78d2369))
(fp_line (start 0 -3.5) (end 12.25 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp b8d6c2bd-2052-4d68-b0b3-2006c9b82e98))
(fp_line (start 0 -1.65) (end 0 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp bc895ef9-e97f-4525-96ae-8612db7831bb))
(fp_line (start 0 2.5) (end -2 2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 5cec5d6b-ecc3-4dff-8bc1-4f47059e2a66))
(fp_line (start 0 3.5) (end 0 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 8893228a-4b17-44f4-a105-28de47a3b90d))
(fp_line (start 12.25 -3.5) (end 12.25 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp b7c1f32d-5e3d-4315-bd0c-3e59b1b585cf))
(fp_line (start 12.25 3.5) (end 0 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp c8a48c59-fdbc-4763-9d5e-9555cab0fad9))
(fp_rect (start 0 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 5263b349-9776-461e-b5ec-ebebf58434ea))
(pad "" np_thru_hole circle (at 9 0 270) (size 1.4 1.4) (drill 1.4) (layers "F&B.Cu" "*.Mask") (tstamp 4b61ce7c-2733-47d4-a638-f8637b23b36b))
(pad "1" thru_hole oval (at 2.9 2.9 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "S") (pintype "passive") (tstamp 6015315a-51d2-4f4f-bfda-4e510106c6ff))
(pad "2" thru_hole oval (at 5.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 7 "/FILTER IN") (pinfunction "R") (pintype "passive") (tstamp c8d06ae8-5acb-4355-8c61-06ad50f94801))
(pad "3" thru_hole oval (at 9.3 -2.55 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 19 "/RS232 OUT") (pinfunction "T") (pintype "passive") (tstamp e075749e-43cb-4a4e-a1c1-8383489dcae0))
(pad "4" thru_hole oval (at 11.5 -1.8 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(J2-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 6c714337-d218-4d5b-90aa-42c5878b2a9b))
(pad "5" thru_hole oval (at 10.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(J2-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp fc2f9d39-a36e-4bcd-82ac-3b777f8a1e40))
(model "${KICAD_USER_LIBRARY_DIR}/Connector_Audio_Tensility/Connector_Audio_Tensility.3dshapes/54-00299.STEP"
(offset (xyz 12 0 2.05))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Connector_Audio_Tensility:54-00299" (layer "F.Cu")
(tstamp f0997194-e675-409b-84e3-0cec02f2402d)
(at 139 80 -90)
(descr "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder")
(property "Digi-KeyPN" "839-54-00299CT-ND")
(property "MPN" "54-00299")
(property "Manufacturer" "Tensility")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "3.50mm (0.141\", 1/8\", Mini Plug) - Headphone Phone Jack Stereo (3 Conductor, TRS) Connector Solder, no switch")
(property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector")
(path "/2309b212-2d71-4397-a015-32c8f19a79b9")
(attr through_hole)
(fp_text reference "J7" (at 13 -2.5 -180 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 7f4e8786-c0ac-415f-a063-5fa6ba253eb2)
)
(fp_text value "54-00299" (at 5.5 -1.25 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 3b85d33c-76c9-4667-9109-ce04f877869a)
)
(fp_text user "${REFERENCE}" (at 5.5 1.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1) bold))
(tstamp 1f921eb3-bf42-4772-9e7a-6c357e18af17)
)
(fp_line (start -2.25 2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 72138f2a-9ea3-4888-8b28-d35c1706ed18))
(fp_line (start -0.25 -3.75) (end 12.75 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 36725c65-92e0-40c4-97df-460b214a4606))
(fp_line (start -0.25 -2.75) (end -2.25 -2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 1861391e-44aa-4859-a792-2db2cd04658e))
(fp_line (start -0.25 -2.75) (end -0.25 -3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 683e8d8d-8b5d-4cef-963d-26bab4bc6155))
(fp_line (start -0.25 2.75) (end -2.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 8adebc0c-49b3-49bd-86be-1750dd2f9015))
(fp_line (start -0.25 3.75) (end -0.25 2.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp 497e7415-0f0a-4813-94e8-40b2a341b1ec))
(fp_line (start 12.75 -3.75) (end 12.75 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp fe8c1812-3fe1-44cf-9d49-a1994cef0fe8))
(fp_line (start 12.75 3.75) (end -0.25 3.75)
(stroke (width 0.1) (type default)) (layer "F.CrtYd") (tstamp a5553575-c759-4de0-898c-106026370a85))
(fp_line (start -2 -2.5) (end 0 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp aa66dafd-9552-4965-9162-3f37cb3534f8))
(fp_line (start -2 2.5) (end -2 -2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 678ba31f-30f4-4005-bcc7-35dfdce4b7dd))
(fp_line (start 0 -3.5) (end 12.25 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 10adef30-a16d-4579-99d6-75df4d31f7a8))
(fp_line (start 0 -1.65) (end 0 -3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 8f7c2219-111f-4c97-a321-a327c416d058))
(fp_line (start 0 2.5) (end -2 2.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp b657bc89-3525-4614-abf0-89ad38619958))
(fp_line (start 0 3.5) (end 0 1.65)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 71622e9b-ab21-4df0-bb2c-4df55567398e))
(fp_line (start 12.25 -3.5) (end 12.25 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 88b2a3f4-b573-4ac0-be5b-ebf201504895))
(fp_line (start 12.25 3.5) (end 0 3.5)
(stroke (width 0.1) (type default)) (layer "F.Fab") (tstamp 447b0557-1ef1-412e-ae0f-3827a2c523a2))
(fp_rect (start 0 -1.65) (end 1.2 1.65)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp d8f4ad23-1023-474d-b2b3-be6a79e86cb6))
(pad "" np_thru_hole circle (at 9 0 270) (size 1.4 1.4) (drill 1.4) (layers "F&B.Cu" "*.Mask") (tstamp ae79e6a6-225c-48f2-ab62-6bb425bc44e6))
(pad "1" thru_hole oval (at 2.9 2.9 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "S") (pintype "passive") (tstamp 5c77961c-d930-4766-a9f4-1fd27bac36e3))
(pad "2" thru_hole oval (at 5.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "R") (pintype "passive") (tstamp 8a00f9f2-7e22-4147-a616-5f24b60dbe6b))
(pad "3" thru_hole oval (at 9.3 -2.55 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 9 "/FSW IN") (pinfunction "T") (pintype "passive") (tstamp 4d65a986-c5dd-4224-86c6-fa3da0425d65))
(pad "4" thru_hole oval (at 11.5 -1.8 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 41 "unconnected-(J7-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp c1a355be-30a0-4a50-8cf9-7e5ba7fafc8c))
(pad "5" thru_hole oval (at 10.5 2.6 270) (size 1.8 0.9) (drill oval 1.5 0.6) (layers "*.Cu" "*.Mask")
(net 42 "unconnected-(J7-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp 101b36a9-db6c-4f8d-963c-a0a296327257))
(model "${KICAD_USER_LIBRARY_DIR}/Connector_Audio_Tensility/Connector_Audio_Tensility.3dshapes/54-00299.STEP"
(offset (xyz 12 0 2.05))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Connector_COMBICON_Phoenix:1989748" (layer "F.Cu")
(tstamp fa95a8e3-bd49-40d2-bc26-7d78ea88ff50)
(at 40.6 35.75 -90)
(descr "2 Position Wire to Board Terminal Block 45° (135°) Angle with Board 0.098\" (2.50mm) Through Hole")
(property "Digi-KeyPN" "277-6156-ND")
(property "MPN" "1989748")
(property "Manufacturer" "Phoenix")
(property "Sheetfile" "db37kx.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "2 Position Wire to Board Terminal Block 45° (135°) Angle with Board 0.098\" (2.50mm) Through Hole")
(property "ki_keywords" "connector")
(path "/71f97d07-d44d-45a6-93b5-97a49cb50dc2")
(attr through_hole)
(fp_text reference "J1" (at -2.25 -7 -90 unlocked) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125) bold))
(tstamp 31395c86-fd25-489d-8d7d-b9d981ea8243)
)
(fp_text value "1989748" (at 0.5 -3.75 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 11fcc2df-61d0-4041-9618-18fa068c55ac)
)
(fp_text user "${REFERENCE}" (at 0.5 4 -90 unlocked) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 31066e55-abf2-4254-a27c-386f4aa5d3ed)
)
(fp_line (start -3 -6.25) (end -3 -5.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e1ed9485-d95b-4c28-bb25-40bf78a45c0c))
(fp_line (start -3 -6.25) (end -2 -6.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e0caa81b-0948-4ba8-a367-1a67ff2d8d77))
(fp_line (start -3 6.25) (end -3 5.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp ac22b712-671b-4e48-bb68-19a1150a6833))
(fp_line (start -3 6.25) (end -2 6.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 772b50b1-6199-4c40-a282-ddaf5582cfb8))
(fp_line (start 4 -6.25) (end 3 -6.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e779c86d-bf27-4f95-91f4-bfac1439fffe))
(fp_line (start 4 -6.25) (end 4 -5.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 1a97ee06-ac9d-4f3d-b41e-aa0f9d20fcb2))
(fp_line (start 4 6.25) (end 3 6.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d9680d6d-2b79-4862-ab5f-e5b602513be2))
(fp_line (start 4 6.25) (end 4 5.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp fdb8143d-2c5d-4568-8999-39097f2d16a2))
(fp_rect (start -3.25 -6.5) (end 4.25 6.5)
(stroke (width 0.1) (type default)) (fill none) (layer "F.CrtYd") (tstamp f219fa18-9711-4b6c-94a6-f8c87cc505f3))
(fp_rect (start -2.75 -6) (end 3.75 6)
(stroke (width 0.1) (type default)) (fill none) (layer "F.Fab") (tstamp 88c52d0f-cf1e-4346-9c30-a865c4fb5f4f))
(pad "1" thru_hole circle (at 0 1.3 270) (size 2 2) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pinfunction "Pin_1") (pintype "passive") (tstamp 026040ac-0b9a-4707-89af-0f7ed31aae8b))
(pad "2" thru_hole circle (at 2.5 1.3 270) (size 2 2) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 29 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp eb32b460-ccef-47aa-845e-399fc0a685b1))
(model "${KICAD_USER_LIB_DIR}/Connector_COMBICON_Phoenix/Connector_COMBICON_Phoenix.3dshapes/1841513.stp"
(offset (xyz -4.25 8.99 0.5))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
(model ":KICAD_USER_LIBRARY_DIR:Connector_COMBICON_Phoenix/Connector_COMBICON_Phoenix.3dshapes/pxc_1989748_02_PTSA-0-5-2-2-5-F_3D.stp"
(offset (xyz -1.25 -6 0.1))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_rect (start 33.75 32.25) (end 47.25 40.25)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0a293974-546c-4ddd-99c4-d52dba197e61))
(gr_line (start 98 96.1) (end 98 94.1)
(stroke (width 0.5) (type default)) (layer "F.SilkS") (tstamp 1bf6df8f-b5c6-4fd5-becb-d4d5a5a888a2))
(gr_rect (start 47.25 39.25) (end 50.75 40.25)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 3787dfbf-b928-4089-8e85-9813887023c8))
(gr_line (start 75 96.1) (end 77 96.1)
(stroke (width 0.5) (type default)) (layer "F.SilkS") (tstamp 57de83df-1564-47f8-9f16-f92eb85c310e))
(gr_rect (start 50 36.75) (end 50.75 39.75)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 604b9a80-6f18-42c3-bd52-087cd45ba7e5))
(gr_poly
(pts
(xy 116 81.725)
(xy 116.35 82.075)
(xy 115.65 82.075)
(xy 116 81.725)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 64ee638e-dca5-4c9a-9ebd-9da93f0eb555))
(gr_rect (start 50.25 32.75) (end 50.75 39.25)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 79eb472c-f47a-45c0-b8a6-b4aac30db0b5))
(gr_rect (start 47.25 32.25) (end 50.75 32.75)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 9a1e529d-c7b9-4f76-b459-a52fb3d48e8a))
(gr_line (start 116 82.075) (end 116 82.825)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp b29fb450-0e4d-474f-85eb-841acacc56ca))
(gr_rect (start 47.75 35.375) (end 50.25 37.125)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp bbe13a56-6c3f-47e6-9051-1e84bb2c4c12))
(gr_line (start 98 96.1) (end 96 96.1)
(stroke (width 0.5) (type default)) (layer "F.SilkS") (tstamp c7668139-0ab4-4d7c-a409-cee49f1857c6))
(gr_rect (start 47.25 32.75) (end 47.75 39.25)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp f2650940-725e-42fa-9aea-c89c0404c7fb))
(gr_line (start 75 96.1) (end 75 94.1)
(stroke (width 0.5) (type default)) (layer "F.SilkS") (tstamp fb078217-7cf9-4672-8948-729da42ae00e))
(gr_rect (start 47.5 36.75) (end 48.25 39.75)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.SilkS") (tstamp fd15945e-df9b-454e-b26a-deacb0d8c705))
(gr_rect (start 134 46.5) (end 144 66.5)
(stroke (width 0.15) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 0efafc62-9412-442d-b4df-4fa1278b18db))
(gr_rect (start 74 46.5) (end 84 66.5)
(stroke (width 0.15) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 245ed784-088b-4d93-b9fd-2ba2e02987bb))
(gr_rect (start 164 46.5) (end 174 66.5)
(stroke (width 0.15) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 2eed3bc2-8b36-4756-bc40-8c3004894c26))
(gr_rect (start 119 46.5) (end 129 66.5)
(stroke (width 0.15) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp a92af428-0c5f-4763-9d18-12e610a58a83))
(gr_rect (start 149 46.5) (end 159 66.5)
(stroke (width 0.15) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp e53fca83-72fb-4bb5-b939-d7f10c32de01))
(gr_rect (start 89 46.5) (end 99 66.5)
(stroke (width 0.15) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp f0e3ec12-afd2-4d97-a9ee-c1486931345a))
(gr_line (start 182 56.5) (end 190 56.5)
(stroke (width 0.15) (type solid)) (layer "Cmts.User") (tstamp 5a193df1-561e-414e-bb7e-d78cd46ae5f4))
(gr_line (start 182 54.5) (end 182 58.5)
(stroke (width 0.15) (type solid)) (layer "Cmts.User") (tstamp 8e6cc2fd-cab9-454e-9ce6-c49770e905c9))
(gr_line (start 180 56.5) (end 182 54.5)
(stroke (width 0.15) (type solid)) (layer "Cmts.User") (tstamp b291635d-2d0a-4107-9a74-c2abf60702b1))
(gr_line (start 182 58.5) (end 180 56.5)
(stroke (width 0.15) (type solid)) (layer "Cmts.User") (tstamp dc3e530b-73bb-4103-a967-73ca5118d23f))
(gr_arc (start 152.35 81.35) (mid 152.243934 81.306066) (end 152.2 81.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 047fc6a6-fc9c-4aae-9aee-8501a76f7ad5))
(gr_arc (start 167.05 80) (mid 167.156066 80.043934) (end 167.2 80.15)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 0678a3ba-fdb8-445d-bf19-a92662145dd2))
(gr_line (start 77.2 81.2) (end 77.2 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0a24bf8e-316f-4891-b652-fbfadf3754dd))
(gr_arc (start 95.793934 80.15) (mid 95.837868 80.043934) (end 95.943934 80)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 12e6a542-06cf-4328-bf0a-24ae01ccfbc4))
(gr_arc (start 92.043934 80) (mid 92.15 80.043934) (end 92.193934 80.15)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 149155de-1f7a-4e86-9914-8bd899f99fd2))
(gr_arc (start 92.343934 81.35) (mid 92.237868 81.306066) (end 92.193934 81.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 1df2c615-3b1a-4485-b9cf-3ebf31797abf))
(gr_arc (start 80.8 80.15) (mid 80.843934 80.043934) (end 80.95 80)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 223bdb8e-0c6f-4e09-8b77-472e3e9eccdb))
(gr_arc (start 125.8 81.2) (mid 125.756066 81.306066) (end 125.65 81.35)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 27924da6-7bc1-469f-8bcf-bb8f0798cd08))
(gr_line (start 137.05 80) (end 125.95 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2d8fed0c-b0fb-4c9a-ad66-cfdb58e7efc7))
(gr_line (start 125.8 81.2) (end 125.8 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2eedd2bb-0a08-45d2-84cc-ceb84f858d77))
(gr_arc (start 155.8 80.15) (mid 155.843934 80.043934) (end 155.95 80)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 30d8e6ad-42cf-4750-9a3e-1cf26fa439f0))
(gr_arc (start 137.05 80) (mid 137.156066 80.043934) (end 137.2 80.15)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 3dc42038-dff6-4c77-b915-cea61a2e3ad1))
(gr_line (start 172 128) (end 76 128)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3ddb9b41-45d9-4e3e-a7c0-cf206023d530))
(gr_line (start 122.2 81.2) (end 122.2 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3fc38e1e-249f-40c6-bfd0-1786cb411d08))
(gr_line (start 92.193934 81.2) (end 92.193934 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4086fa49-5462-44e7-8f7c-490894a2efe4))
(gr_line (start 95.643934 81.35) (end 92.343934 81.35)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4146f452-f306-4712-af82-ef513b59c52e))
(gr_arc (start 170.8 80.15) (mid 170.843934 80.043934) (end 170.95 80)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 428f9bbe-7eb5-4574-9e6d-088ee46a15e6))
(gr_line (start 125.65 81.35) (end 122.35 81.35)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 448239ee-5047-4905-9967-27804d327099))
(gr_arc (start 76 128) (mid 73.878679 127.121321) (end 73 125)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4d6f52e5-889d-4db3-b460-b6f4a942330f))
(gr_arc (start 80.8 81.2) (mid 80.756066 81.306066) (end 80.65 81.35)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 4e27df4c-76f4-4760-9b06-fc6b79c5fee7))
(gr_arc (start 175 125) (mid 174.121321 127.121321) (end 172 128)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4e2b33d9-4900-4bf3-b12d-a32270ef2d5d))
(gr_line (start 152.05 80) (end 140.95 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 528519b4-ecfb-40d0-890e-a80d1056115a))
(gr_line (start 155.65 81.35) (end 152.35 81.35)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 54f969e5-ccf9-4846-8e29-46dea84f3c9a))
(gr_line (start 175 125) (end 175 83)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5d7da334-5320-4c4f-92f9-ac5e5e69fbf6))
(gr_arc (start 155.8 81.2) (mid 155.756066 81.306066) (end 155.65 81.35)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 64ad1031-8e1a-4a84-92d2-e24de4b4a196))
(gr_line (start 140.65 81.35) (end 137.35 81.35)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 65723b96-2e72-4089-9969-c05a9ad2c5c9))
(gr_line (start 122.05 80) (end 95.943934 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 66fbe67f-c79a-4af6-92e7-c466023494bc))
(gr_arc (start 77.35 81.35) (mid 77.243934 81.306066) (end 77.2 81.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 676dfc6c-2741-43a2-82c3-3e99e2482e0b))
(gr_line (start 167.2 81.2) (end 167.2 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6b8338e6-e8ff-4475-9848-8eacd4719be6))
(gr_line (start 73 125) (end 73 83)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6bb07ff3-fb6d-445a-a58f-cf600a8cca02))
(gr_arc (start 73 83) (mid 73.878679 80.878679) (end 76 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7587f412-a7b6-43e0-bfef-9efd661868e8))
(gr_arc (start 125.8 80.15) (mid 125.843934 80.043934) (end 125.95 80)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 791e9b18-579a-474f-ad0b-a7d2c2c027c8))
(gr_line (start 155.8 81.2) (end 155.8 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 818880c6-4798-4191-b508-800fe4582512))
(gr_line (start 95.793934 81.2) (end 95.793934 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 83eca364-43a2-4eba-99d6-e082f6b85394))
(gr_line (start 80.95 80) (end 92.043934 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8c4c8eef-b2a5-4b7c-a38b-14719fa194e0))
(gr_arc (start 137.35 81.35) (mid 137.243934 81.306066) (end 137.2 81.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 9374b27d-701d-4b8a-9a57-fa3dfed20c00))
(gr_line (start 170.8 81.2) (end 170.8 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 98c8a3c6-d9b3-44f7-821a-a4249e126ead))
(gr_arc (start 170.8 81.2) (mid 170.756066 81.306066) (end 170.65 81.35)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 98e25392-8a49-4c1f-a01b-b7f888771168))
(gr_line (start 76 80) (end 77.05 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9b43ebb3-8b2f-4c0f-812d-858e018d8eec))
(gr_arc (start 95.793934 81.2) (mid 95.75 81.306066) (end 95.643934 81.35)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp a706d2ac-a583-4287-90b5-fb89924e46a2))
(gr_line (start 167.05 80) (end 155.95 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a7d72335-e4cf-4c43-ab7e-7ff3ac08af02))
(gr_line (start 80.65 81.35) (end 77.35 81.35)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp afb1e82e-b0bb-464a-ba44-d386f26c8401))
(gr_line (start 140.8 81.2) (end 140.8 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp bc727d4d-70ca-47b3-98f8-177135d46450))
(gr_arc (start 122.35 81.35) (mid 122.243934 81.306066) (end 122.2 81.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp c857ead0-1632-450d-b51c-0d33a640bf7a))
(gr_arc (start 152.05 80) (mid 152.156066 80.043934) (end 152.2 80.15)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp cd0d3e18-61b6-4015-af15-ba23332a2d2b))
(gr_arc (start 140.8 81.2) (mid 140.756066 81.306066) (end 140.65 81.35)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp d02a6f52-2bc8-41cd-b5f7-5ec33425b16c))
(gr_line (start 172 80) (end 170.95 80)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d2a24afb-5f00-4b31-983c-c6e9bcdb2058))
(gr_arc (start 172 80) (mid 174.121321 80.878679) (end 175 83)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d3ea0592-bf83-4289-aed7-eb931b08f979))
(gr_line (start 137.2 81.2) (end 137.2 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d8c4111f-c308-4ac6-bb45-d5f07164ee80))
(gr_arc (start 167.35 81.35) (mid 167.243934 81.306066) (end 167.2 81.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp de3823fc-c183-4e29-9cdf-032ec645881b))
(gr_arc (start 77.05 80) (mid 77.156066 80.043934) (end 77.2 80.15)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp df300d25-c086-4ac4-bf7b-a4822a3e862f))
(gr_line (start 152.2 81.2) (end 152.2 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e0989bc6-0ad7-4519-a8f4-47d928a7211d))
(gr_line (start 170.65 81.35) (end 167.35 81.35)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e5c6d35d-6d46-4d08-8a6e-0cb0779ae5c9))
(gr_arc (start 140.8 80.15) (mid 140.843934 80.043934) (end 140.95 80)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp f08aedf2-98ca-4de2-8322-dc2b3cf22464))
(gr_line (start 80.8 81.2) (end 80.8 80.15)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f600511d-d018-431a-a407-994fb05de87d))
(gr_arc (start 122.05 80) (mid 122.156066 80.043934) (end 122.2 80.15)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp fd43ed65-8327-4580-a5ed-d34b17694991))