-
Notifications
You must be signed in to change notification settings - Fork 1
/
mic_pcb.kicad_sch
1577 lines (1538 loc) · 58.9 KB
/
mic_pcb.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid 0ccef099-7400-4352-8904-c6ca3c29c6d3)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized_US" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized_US" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_US_0_1"
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.778)
(xy -1.27 2.794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Polarized_US_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 3.302)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Switching:NMA0515SC" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NMA0515SC" (id 1) (at 0 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Converter_DCDC:Converter_DCDC_Murata_NMAxxxxSC_THT" (id 2) (at 0 -8.89 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://power.murata.com/data/power/ncl/kdc_nma.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Murata isolated isolation dc-dc converter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "+/-33mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-15V Output Voltage, SIP3" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Converter*DCDC*Murata*NMAxxxxSC*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NMA0515SC_0_1"
(rectangle (start -10.16 7.62) (end 10.16 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -1.27 -6.35)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -1.27 -3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 5.08)
(xy -1.27 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 7.62)
(xy -1.27 6.35)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -7.62)
(xy 0 -6.35)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -5.08)
(xy 0 -3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 0 6.35)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "NMA0515SC_1_1"
(pin power_in line (at -12.7 5.08 0) (length 2.54)
(name "VIN+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.7 -5.08 0) (length 2.54)
(name "VIN-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 -5.08 180) (length 2.54)
(name "VOUT-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 0 180) (length 2.54)
(name "0V" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 5.08 180) (length 2.54)
(name "VOUT+" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "mic:2N4416" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at -5.08 8.382 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "2N4416" (id 1) (at -5.08 -8.382 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "mic:TO127P584H533-4" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "STANDARD" "IPC 7351B" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "5.33 mm" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "InterFET" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PARTREV" "December, 2018" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "ki_keywords" "transistor" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "JFET N-Channel -30V Low Ciss" (id 9) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "2N4416_0_0"
(rectangle (start -5.08 -7.62) (end 5.08 7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy -5.08 2.54)
(xy -1.27 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -2.54 1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -2.54 3.175)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy 0 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 0 6.35)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 5.08 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.08 0)
(xy 0 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "D" (at 2.54 1.905 0)
(effects (font (size 1.524 1.524)) (justify right top mirror))
)
(text "G" (at -4.445 4.445 0)
(effects (font (size 1.524 1.524)) (justify right top mirror))
)
(text "S" (at 2.54 6.985 0)
(effects (font (size 1.524 1.524)) (justify right top mirror))
)
(pin passive line (at 7.62 5.08 180) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -7.62 -5.08 0) (length 2.54)
(name "CASE" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "mic:THAT1512P08-U" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 7.62 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "THAT1512P08-U" (id 1) (at 7.62 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DIP:DIP-8_W7.62mm_Socket" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.thatcorp.com/datashts/THAT_1510-1512_Datasheet.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "audio preamplifier" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Low-Noise, High Performance Audio Preamplifier IC" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SIP*19x3mm*P2.54mm* SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "THAT1512P08-U_0_0"
(pin power_in line (at -1.27 -7.62 90) (length 4.45)
(name "V-" (effects (font (size 0.635 0.635))))
(number "4" (effects (font (size 0.635 0.635))))
)
)
(symbol "THAT1512P08-U_0_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "THAT1512P08-U_1_1"
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "RG1" (effects (font (size 0.635 0.635))))
(number "1" (effects (font (size 0.635 0.635))))
)
(pin input line (at -7.62 3.81 0) (length 2.54)
(name "IN-" (effects (font (size 0.635 0.635))))
(number "2" (effects (font (size 0.635 0.635))))
)
(pin input line (at -7.62 -3.81 0) (length 2.54)
(name "IN+" (effects (font (size 0.635 0.635))))
(number "3" (effects (font (size 0.635 0.635))))
)
(pin power_in line (at 1.27 -7.62 90) (length 5.72)
(name "REF" (effects (font (size 0.635 0.635))))
(number "5" (effects (font (size 0.635 0.635))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 0.635 0.635))))
(number "6" (effects (font (size 0.635 0.635))))
)
(pin power_in line (at -1.27 7.62 270) (length 4.45)
(name "V+" (effects (font (size 0.635 0.635))))
(number "7" (effects (font (size 0.635 0.635))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "RG2" (effects (font (size 0.635 0.635))))
(number "8" (effects (font (size 0.635 0.635))))
)
)
)
(symbol "power:GNDREF" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GNDREF" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GNDREF\" , reference supply ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDREF_0_1"
(polyline
(pts
(xy -0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.127 -2.54)
(xy 0.127 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy -1.27 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDREF_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDREF" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 213.995 91.44) (diameter 0) (color 0 0 0 0)
(uuid 05b603fe-4299-4dd9-af60-7155cadec891)
)
(junction (at 67.31 85.09) (diameter 0) (color 0 0 0 0)
(uuid 53321a2b-4194-43a4-801a-4dc9d8c363b4)
)
(junction (at 67.31 90.17) (diameter 0) (color 0 0 0 0)
(uuid 542d61ec-3850-42fe-8899-7f951942aace)
)
(junction (at 139.065 59.69) (diameter 0) (color 0 0 0 0)
(uuid 566a5d90-055a-453d-bf64-6166a7bdabe3)
)
(junction (at 90.17 96.52) (diameter 0) (color 0 0 0 0)
(uuid 59e50b5e-97d7-41a3-8612-bcd5e579cab7)
)
(junction (at 101.6 59.69) (diameter 0) (color 0 0 0 0)
(uuid 5dfa9b1e-4067-4812-ac7d-a4bed3d62ea5)
)
(junction (at 101.6 115.57) (diameter 0) (color 0 0 0 0)
(uuid 66e234da-c272-426a-9558-ce6284e1b678)
)
(junction (at 235.585 91.44) (diameter 0) (color 0 0 0 0)
(uuid 76cade87-2e1c-4e11-b26e-ce2336cda83b)
)
(junction (at 235.585 83.82) (diameter 0) (color 0 0 0 0)
(uuid 77913af9-961e-4e60-84bc-af704f8324f3)
)
(junction (at 149.225 115.57) (diameter 0) (color 0 0 0 0)
(uuid 894d2af7-3596-42ec-a976-86f4040e41e5)
)
(junction (at 138.938 115.57) (diameter 0) (color 0 0 0 0)
(uuid b268f424-5c32-4316-8f13-9c645433aa3a)
)
(junction (at 90.17 78.74) (diameter 0) (color 0 0 0 0)
(uuid b3a15c68-f5f7-47b1-8aa7-f82eaebafc9d)
)
(junction (at 149.225 59.69) (diameter 0) (color 0 0 0 0)
(uuid c5850842-2b0a-4a54-9bef-7a69a46d6e35)
)
(junction (at 213.995 83.82) (diameter 0) (color 0 0 0 0)
(uuid d17fb8c0-f1e8-4557-8104-d90721438939)
)
(wire (pts (xy 90.17 83.82) (xy 90.17 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09194944-5620-455e-92f9-367f97194057)
)
(wire (pts (xy 74.422 90.17) (xy 67.31 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 159da013-8995-4ed5-acaf-a9eb669e315a)
)
(wire (pts (xy 74.676 78.74) (xy 74.676 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16495b96-c83a-4f16-b973-5c3c0b8882e9)
)
(wire (pts (xy 95.25 91.44) (xy 90.17 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18331a71-9d22-47ee-8773-01feccd507d6)
)
(wire (pts (xy 95.25 83.82) (xy 90.17 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1963b5b9-23f7-4c0d-8bfb-9c6a1b074e29)
)
(wire (pts (xy 183.515 92.71) (xy 183.515 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ce5490e-6bfc-4174-9435-6221877f1d97)
)
(wire (pts (xy 90.17 96.52) (xy 82.042 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d8ef177-fdcd-44f4-841e-9e3fe2ab317e)
)
(wire (pts (xy 101.6 115.57) (xy 138.938 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 301e1721-1cd6-4f9f-ae81-87fc383ed77a)
)
(wire (pts (xy 74.676 85.09) (xy 67.31 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 368581c2-8fc1-4b1f-bb2d-0ecf63e232fd)
)
(wire (pts (xy 213.995 92.71) (xy 213.995 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37298b40-e53d-4fd9-842d-71b5235a8bac)
)
(wire (pts (xy 67.31 115.57) (xy 72.898 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b64e4c0-e71e-4681-9232-c5f984f47068)
)
(wire (pts (xy 80.518 59.69) (xy 101.6 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4390a7e6-2268-49da-8acf-04af1a83240d)
)
(wire (pts (xy 90.17 78.74) (xy 82.296 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43d6a3bf-a5db-4df4-971f-5a734db3e986)
)
(wire (pts (xy 90.17 88.9) (xy 90.17 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4780b5e7-ea68-46c7-8b90-f492b5e392e7)
)
(wire (pts (xy 90.17 86.36) (xy 90.17 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 513d1c5a-5011-4ab8-939b-2ca62aabef9a)
)
(wire (pts (xy 149.225 115.57) (xy 170.815 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54f37403-0b6b-4e30-8609-d1d7b10c9fff)
)
(wire (pts (xy 67.31 59.69) (xy 72.898 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55246151-4e9e-46fb-8b4e-b50c1c847b93)
)
(wire (pts (xy 183.515 82.55) (xy 183.515 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5675d692-0c6b-4978-898f-3c2dddfb2388)
)
(wire (pts (xy 149.225 59.69) (xy 170.815 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5feb6deb-f68f-416a-8c9f-49c22bd3a2d2)
)
(wire (pts (xy 90.17 91.44) (xy 90.17 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61937551-cd1d-49b0-814f-cd789369f57b)
)
(wire (pts (xy 101.6 59.69) (xy 101.6 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f34aba1-1009-4329-869f-9c82b1c7bbb1)
)
(wire (pts (xy 208.915 92.71) (xy 213.995 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c8d586f-9fe8-468a-9eba-bf90a2106924)
)
(wire (pts (xy 101.6 95.25) (xy 101.6 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82e13e28-cd9e-4007-81fe-9525603d0a71)
)
(wire (pts (xy 110.49 87.63) (xy 119.888 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89786f4c-1b58-4f86-a73f-329a9369f221)
)
(wire (pts (xy 67.31 90.17) (xy 67.31 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b3b76c6-3b72-403f-937b-7c7b5128ff89)
)
(wire (pts (xy 178.435 87.63) (xy 183.515 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a39955a7-f06c-4756-aa4e-28e68ec094c7)
)
(wire (pts (xy 40.64 87.63) (xy 52.07 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3f63513-43d1-4bfb-9dbb-5b6e53857ef0)
)
(wire (pts (xy 80.518 115.57) (xy 101.6 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7292886-4aea-4702-b2be-95d03eb8bde4)
)
(wire (pts (xy 254.635 86.36) (xy 254.635 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a84bfb8a-f019-4ced-899f-f0cf3079deb7)
)
(wire (pts (xy 138.938 115.57) (xy 149.225 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9d7518e-84ef-46e1-b0c6-48bd86f9371c)
)
(wire (pts (xy 213.995 91.44) (xy 235.585 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab4146b3-56dd-4978-a1d4-1b30d630e8ad)
)
(wire (pts (xy 90.17 90.17) (xy 95.25 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad595049-7818-4154-9def-ea359a049278)
)
(wire (pts (xy 213.995 82.55) (xy 213.995 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b0af8cd4-7afb-412d-a880-d502f403055b)
)
(wire (pts (xy 139.065 59.69) (xy 149.225 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b0ccd109-2133-4668-9f24-476bf752d1f9)
)
(wire (pts (xy 127.508 87.63) (xy 142.748 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3d89e26-0966-4a40-96c7-fcb2b20a3ff6)
)
(wire (pts (xy 101.6 59.69) (xy 139.065 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b52141c0-06f1-4196-a7fd-4264c6ab0cb6)
)
(wire (pts (xy 254.635 83.82) (xy 235.585 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7e8c521-e8ef-4770-be5d-e8c575ffa2a3)
)
(wire (pts (xy 67.31 85.09) (xy 67.31 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d31473b1-5e0c-491a-9d54-b2ff4c2df35a)
)
(wire (pts (xy 90.17 85.09) (xy 95.25 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dba7a5d2-4538-4ade-a299-9ce366ffeca5)
)
(wire (pts (xy 254.635 91.44) (xy 235.585 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e3308bb4-1760-4d7c-a186-acaa1c4cba3d)
)
(wire (pts (xy 183.515 59.69) (xy 178.435 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e395af3f-9456-4bac-ae26-8dbf4be2fb19)
)
(wire (pts (xy 213.995 83.82) (xy 235.585 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ece47842-3589-4f6c-b82a-9baca7e5e55d)
)
(wire (pts (xy 208.915 82.55) (xy 213.995 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee8cc326-979f-4d9f-a4b3-df9671234f88)
)
(wire (pts (xy 183.515 115.57) (xy 178.435 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1ff5621-3d7a-471e-b3c3-2fb84c792e47)
)
(wire (pts (xy 74.422 90.17) (xy 74.422 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3cc88a1-4ae5-46c8-a9cb-6e55062f64f6)
)
(wire (pts (xy 254.635 88.9) (xy 254.635 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f834a7d8-86a3-4300-95bd-29f34139b295)
)
(symbol (lib_id "Device:C") (at 123.698 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 02cb05cc-32a1-47f0-9f43-a0c543f505a1)
(property "Reference" "C3" (id 0) (at 123.698 81.788 90))
(property "Value" "22uf 35v" (id 1) (at 123.698 83.82 90))
(property "Footprint" "Capacitor_THT:C_Radial_D8.0mm_H11.5mm_P3.50mm" (id 2) (at 119.888 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 123.698 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 095a2675-6e31-4621-bebb-ab0bbce9aaca))
(pin "2" (uuid e2302a84-6808-44eb-9863-b5c941988a76))
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 35.56 85.09 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 03b77249-0179-46fe-94db-505511f3c96a)
(property "Reference" "J1" (id 0) (at 30.48 85.09 0))
(property "Value" "MIC_IN" (id 1) (at 30.48 87.63 0))
(property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (id 2) (at 35.56 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 35.56 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 085f8904-10f6-4977-bb92-15d7be3ffad4))
(pin "2" (uuid bf29228a-fa71-40cc-9e94-4a7c1fac3003))
)
(symbol (lib_id "mic:2N4416") (at 59.69 85.09 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1af4f12f-7b66-4e1b-89c2-e97cfc1312fa)
(property "Reference" "Q1" (id 0) (at 59.69 72.39 0))
(property "Value" "2N4416" (id 1) (at 59.69 74.93 0))
(property "Footprint" "mic:TO127P584H533-4" (id 2) (at 59.69 85.09 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 59.69 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "STANDARD" "IPC 7351B" (id 4) (at 59.69 85.09 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "5.33 mm" (id 5) (at 59.69 85.09 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "InterFET" (id 6) (at 59.69 85.09 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PARTREV" "December, 2018" (id 7) (at 59.69 85.09 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(pin "1" (uuid 7c5319e7-9249-470e-8bff-a4fb88b6ad05))
(pin "2" (uuid fa5d84ea-7093-48d9-bc5a-2f49421e74d5))
(pin "3" (uuid 5643c44e-910a-4ec6-8a12-3cbf64bda682))
(pin "4" (uuid e891c15f-6081-40ad-bd43-cb4e3acfbc54))
)
(symbol (lib_id "Regulator_Switching:NMA0515SC") (at 196.215 87.63 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1cc96a8e-45d4-455e-9048-774f450fe0a8)
(property "Reference" "U2" (id 0) (at 196.215 74.93 0))
(property "Value" "NMA0515SC" (id 1) (at 196.215 77.47 0))
(property "Footprint" "Converter_DCDC:Converter_DCDC_Murata_NMAxxxxSC_THT" (id 2) (at 196.215 96.52 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://power.murata.com/data/power/ncl/kdc_nma.pdf" (id 3) (at 196.215 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 25a29089-8dac-41c4-ad3a-5c5ddee9e013))
(pin "2" (uuid 9baf8d9c-bd5b-42f9-884c-e5503ea75fc4))
(pin "4" (uuid 4f1eee20-1839-4cd3-9bf3-1b3f0b0f66c4))
(pin "5" (uuid 8826d434-d4cc-4ed0-b8b5-6012201ef3ec))
(pin "6" (uuid 00e977d7-d590-4008-bcf3-ddd9d41ce330))
)
(symbol (lib_id "Device:R_US") (at 76.708 59.69 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 28d6e924-1ed5-4668-b848-d27483cc2dc6)
(property "Reference" "R1" (id 0) (at 76.708 53.086 90))
(property "Value" "2.2k" (id 1) (at 76.708 55.626 90))
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (id 2) (at 76.454 60.706 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 76.708 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a88093b6-7848-44e7-8a2a-6e6f7a4ef0fc))
(pin "2" (uuid bd438e4d-0560-4c2e-a6bc-8695ca3338cb))
)
(symbol (lib_id "Device:R_US") (at 90.17 100.33 180) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2cc5a7b9-b31c-4ac8-95a4-4467b7df5e51)
(property "Reference" "R4" (id 0) (at 92.71 99.0599 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "3.9k" (id 1) (at 92.71 101.5999 0)