-
Notifications
You must be signed in to change notification settings - Fork 24
/
WifiBT.kicad_sch
executable file
·2317 lines (2266 loc) · 82.1 KB
/
WifiBT.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 20230121) (generator eeschema)
(uuid ccdce88e-24b7-4692-934b-22bb9b0763dc)
(paper "A4")
(title_block
(title "OtterCastAudioV2")
(rev "1.0")
)
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (mid 0.5058 -1.524) (end 0 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.016) (mid 0.5058 -0.508) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.5058 0.508) (end 0 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.016) (mid 0.5058 1.524) (end 0 2.032)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Oscillator:TXC-7C" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "X" (at -5.08 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TXC-7C" (at 1.27 -6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Oscillator:Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm" (at 17.78 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.txccorp.com/download/products/osc/7C_o.pdf" (at -2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "CMOS SMD Crystal Clock Oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "CMOS SMD Crystal Clock Oscillator, TXC" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Oscillator*SMD*TXC*7C*5.0x3.2mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TXC-7C_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -0.762)
(xy -1.016 -0.762)
(xy -1.016 0.762)
(xy -0.508 0.762)
(xy -0.508 -0.762)
(xy 0 -0.762)
(xy 0 0.762)
(xy 0.508 0.762)
(xy 0.508 -0.762)
(xy 0.762 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TXC-7C_1_1"
(pin input line (at -7.62 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "Vdd" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "otter:AP6236" (pin_names (offset 0.889)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 33.02 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "AP6236" (at 0 30.48 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 -5.08 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (at 0 -5.08 0)
(effects (font (size 1.524 1.524)))
)
(symbol "AP6236_0_1"
(rectangle (start -12.7 27.94) (end 12.7 -24.13)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "AP6236_1_1"
(pin power_in line (at -15.24 15.24 0) (length 2.4892) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -10.16 0) (length 2.4892)
(name "XTAL_IN" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -7.62 0) (length 2.4892)
(name "XTAL_OUT" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 26.67 180) (length 2.4892)
(name "WL_DSI#/GPIO9" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 24.13 180) (length 2.4892)
(name "WL_HOST_WAKE" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 11.43 180) (length 2.4892)
(name "SD_D2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 8.89 180) (length 2.4892)
(name "SD_D3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 19.05 180) (length 2.4892)
(name "SD_CMD" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 21.59 180) (length 2.4892)
(name "SD_CLK" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 16.51 180) (length 2.4892)
(name "SD_D0" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 13.97 180) (length 2.4892)
(name "SD_D1" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 0 0) (length 2.4892)
(name "WIFI/BT_ANT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 15.24 0) (length 2.4892)
(name "GND" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -15.24 -20.32 0) (length 2.4892)
(name "SW" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 22.86 0) (length 2.4892)
(name "VDD_IO" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -22.86 0) (length 2.4892)
(name "SW_IN" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -22.86 180) (length 2.4892)
(name "SUSCLK_IN/GPIO6" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -2.54 180) (length 2.4892)
(name "PCM_DOUT" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 2.54 180) (length 2.4892)
(name "PCM_CLK" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 0 180) (length 2.4892)
(name "PCM_DIN" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 5.08 180) (length 2.4892)
(name "PCM_SYNC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 0 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 20.32 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -2.54 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 15.24 0) (length 2.4892) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -5.08 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 15.24 0) (length 2.4892) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -20.32 180) (length 2.4892)
(name "BT_DIS#" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -7.62 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 15.24 0) (length 2.4892) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -10.16 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -12.7 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -15.24 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 17.78 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 -17.78 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -12.7 180) (length 2.4892)
(name "UART_RTS" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -5.08 180) (length 2.4892)
(name "UART_OUT" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -7.62 180) (length 2.4892)
(name "UART_IN" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -10.16 180) (length 2.4892)
(name "UART_CTS" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -1.27 15.24 180) (length 2.4892) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -15.24 180) (length 2.4892)
(name "BT_WAKE" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -17.78 180) (length 2.4892)
(name "BT_HOST_WAKE" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at -15.24 -12.7 0) (length 2.4892)
(name "CLK_REQ" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 26.67 0) (length 2.4892)
(name "VDD33" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "otter:KH-5220-A56_U.FL" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "AE" (at -1.905 4.445 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "KH-5220-A56_U.FL" (at -1.905 2.54 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "antenna" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Antenna with extra pin for shielding" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "KH-5220-A56_U.FL_0_1"
(arc (start -0.508 -1.143) (mid -0.8429 -2.1194) (end 0 -2.667)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -2.667) (mid 0.7989 -2.1052) (end 0.508 -1.143)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 0 -3.81)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.905)
(xy 2.54 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0 0)
(xy -1.27 5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 0.762 -1.905) (radius 0.1778)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "KH-5220-A56_U.FL_1_1"
(pin input line (at 0 -5.08 90) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -5.08 90) (length 2.54)
(name "Shield" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -5.08 90) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "NC" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 80.01 104.14) (diameter 0) (color 0 0 0 0)
(uuid 272d2299-18dd-4a3e-a196-6d15ba4f51c4)
)
(junction (at 182.88 92.71) (diameter 0) (color 0 0 0 0)
(uuid 28aab436-a04a-4f1d-a887-4f09513fdc8a)
)
(junction (at 185.42 63.5) (diameter 0) (color 0 0 0 0)
(uuid 310e28e7-f7b1-4197-b25d-4003c7dcabae)
)
(junction (at 97.79 85.09) (diameter 0) (color 0 0 0 0)
(uuid 334446cd-af18-48a8-bb73-a88f4d220620)
)
(junction (at 180.34 63.5) (diameter 0) (color 0 0 0 0)
(uuid 3520b9bf-2dfc-4868-a650-86ff98682e83)
)
(junction (at 106.68 77.47) (diameter 0) (color 0 0 0 0)
(uuid 3d774050-1f75-473e-bdf5-d052504e6a25)
)
(junction (at 212.09 121.92) (diameter 0) (color 0 0 0 0)
(uuid 3e82ba62-7189-4489-87d5-60db49657901)
)
(junction (at 134.62 127) (diameter 0) (color 0 0 0 0)
(uuid 40b12084-e9ea-4a47-a64f-d44ca516c9e8)
)
(junction (at 185.42 90.17) (diameter 0) (color 0 0 0 0)
(uuid 481d8c49-260f-40f8-9d7a-177fecb9140f)
)
(junction (at 190.5 63.5) (diameter 0) (color 0 0 0 0)
(uuid 494a6b97-f33e-4834-b724-0c3a3ff54317)
)
(junction (at 187.96 63.5) (diameter 0) (color 0 0 0 0)
(uuid 4dfbe524-132d-43d4-8ae0-9aa2f72df70b)
)
(junction (at 71.12 104.14) (diameter 0) (color 0 0 0 0)
(uuid 69e05192-f084-4bb3-aff6-f350c539f1a8)
)
(junction (at 137.16 81.28) (diameter 0) (color 0 0 0 0)
(uuid 6ccf7be9-8d30-475d-8941-1f167d5de7ec)
)
(junction (at 190.5 85.09) (diameter 0) (color 0 0 0 0)
(uuid 7112d2ae-7915-4f1a-aae6-e71244f669d8)
)
(junction (at 212.09 111.76) (diameter 0) (color 0 0 0 0)
(uuid 79fa940a-2b5a-472f-9a29-806c2daad595)
)
(junction (at 187.96 87.63) (diameter 0) (color 0 0 0 0)
(uuid 7ab8aff0-29e4-4be7-af1f-6a97b7752e20)
)
(junction (at 180.34 95.25) (diameter 0) (color 0 0 0 0)
(uuid a56d1fde-b4ad-42de-a848-9c94bc0cbe09)
)
(junction (at 128.27 81.28) (diameter 0) (color 0 0 0 0)
(uuid c027fa6b-8e6d-4e11-8804-979831dae8d5)
)
(junction (at 128.27 88.9) (diameter 0) (color 0 0 0 0)
(uuid c645efa1-5cf3-4d27-be7a-303fdbabecd8)
)
(junction (at 182.88 63.5) (diameter 0) (color 0 0 0 0)
(uuid d0f11060-bc65-49c7-b1f8-1ffca12c5c16)
)
(junction (at 97.79 77.47) (diameter 0) (color 0 0 0 0)
(uuid e085e529-431d-4fe9-aed9-287036ceabd6)
)
(junction (at 193.04 77.47) (diameter 0) (color 0 0 0 0)
(uuid ef996d8d-e885-4c54-b48b-e12cd0bd7e8e)
)
(junction (at 143.51 127) (diameter 0) (color 0 0 0 0)
(uuid fb7d0d2c-09e5-46e0-8091-1901472a84d1)
)
(no_connect (at 73.66 100.33) (uuid 20ac7a70-5cb9-4418-b061-8e4ee8d36b79))
(no_connect (at 99.06 119.38) (uuid 7de04273-7eda-4419-ad6c-938bfee9f2d2))
(no_connect (at 144.78 111.76) (uuid b67db6fb-e010-4837-9b46-419c0d446aba))
(no_connect (at 144.78 116.84) (uuid bb857b3f-cfd2-48ea-8ae4-988435afb17f))
(wire (pts (xy 193.04 77.47) (xy 193.04 72.39))
(stroke (width 0) (type default))
(uuid 03a79994-33b9-4df6-bdb0-d3807834d731)
)
(wire (pts (xy 106.68 85.09) (xy 97.79 85.09))
(stroke (width 0) (type default))
(uuid 0673bd15-bb27-42a3-b8dd-ff34de638161)
)
(wire (pts (xy 114.3 119.38) (xy 132.08 119.38))
(stroke (width 0) (type default))
(uuid 0739a502-7fa1-4e85-8cae-604fd21c9156)
)
(wire (pts (xy 175.26 85.09) (xy 190.5 85.09))
(stroke (width 0) (type default))
(uuid 09684b6c-5d15-4020-b96b-0b388e8ee3ea)
)
(wire (pts (xy 71.12 104.14) (xy 71.12 100.33))
(stroke (width 0) (type default))
(uuid 0f0d22b0-c2a7-436a-931c-fa4be6782d48)
)
(wire (pts (xy 182.88 63.5) (xy 180.34 63.5))
(stroke (width 0) (type default))
(uuid 1002411f-a485-468c-981b-cec2ce41d8bd)
)
(wire (pts (xy 220.98 119.38) (xy 217.17 119.38))
(stroke (width 0) (type default))
(uuid 12eac6d1-24b8-4ea7-b275-251ba8bf5245)
)
(wire (pts (xy 127 81.28) (xy 128.27 81.28))
(stroke (width 0) (type default))
(uuid 139dad75-0222-4e43-bc59-5c28bfe18b85)
)
(wire (pts (xy 106.68 77.47) (xy 97.79 77.47))
(stroke (width 0) (type default))
(uuid 15ddbae8-4879-44da-8c42-497366b84781)
)
(wire (pts (xy 180.34 101.6) (xy 175.26 101.6))
(stroke (width 0) (type default))
(uuid 17c7b03d-e4b9-4587-b2ce-0ee7a9d30575)
)
(wire (pts (xy 175.26 80.01) (xy 208.28 80.01))
(stroke (width 0) (type default))
(uuid 190829cf-8172-400f-bba0-21761cc942eb)
)
(wire (pts (xy 190.5 67.31) (xy 190.5 63.5))
(stroke (width 0) (type default))
(uuid 1a0c5194-0d7e-4fcc-a11d-049fac80c4dc)
)
(wire (pts (xy 134.62 124.46) (xy 135.89 124.46))
(stroke (width 0) (type default))
(uuid 1b73c962-e471-4ec3-ab97-9114c97a5609)
)
(wire (pts (xy 128.27 88.9) (xy 128.27 87.63))
(stroke (width 0) (type default))
(uuid 1e4121a8-838d-461e-bd87-c7b273513df5)
)
(wire (pts (xy 191.77 101.6) (xy 185.42 101.6))
(stroke (width 0) (type default))
(uuid 2009ab3a-f4bf-4c63-a0fe-9d170c762787)
)
(wire (pts (xy 182.88 92.71) (xy 208.28 92.71))
(stroke (width 0) (type default))
(uuid 226748a0-9c54-4438-a724-741c7846a7bf)
)
(wire (pts (xy 97.79 77.47) (xy 97.79 78.74))
(stroke (width 0) (type default))
(uuid 23a49e10-e7d0-41d9-a15a-25ac614cee99)
)
(wire (pts (xy 220.98 111.76) (xy 212.09 111.76))
(stroke (width 0) (type default))
(uuid 23e32b5c-4ca6-4614-a426-44d605a7d8fd)
)
(wire (pts (xy 134.62 127) (xy 134.62 124.46))
(stroke (width 0) (type default))
(uuid 24e41c56-597e-4023-adfa-f1d5bfd2a519)
)
(wire (pts (xy 80.01 104.14) (xy 80.01 105.41))
(stroke (width 0) (type default))
(uuid 25e5e3b2-c628-460f-8b34-28a2c7950e5f)
)
(wire (pts (xy 191.77 106.68) (xy 185.42 106.68))
(stroke (width 0) (type default))
(uuid 2926e945-d9e3-4a4e-9b51-aad244dc04f4)
)
(wire (pts (xy 175.26 95.25) (xy 180.34 95.25))
(stroke (width 0) (type default))
(uuid 29e27db0-3c69-4f62-9b26-37b540cf4f34)
)
(wire (pts (xy 175.26 127) (xy 212.09 127))
(stroke (width 0) (type default))
(uuid 2b7fcec9-f103-4c1e-8056-817283941746)
)
(wire (pts (xy 175.26 121.92) (xy 212.09 121.92))
(stroke (width 0) (type default))
(uuid 318b1c02-8f98-40e0-8672-6e5f766110ad)
)
(wire (pts (xy 137.16 82.55) (xy 137.16 81.28))
(stroke (width 0) (type default))
(uuid 367a0318-2a8d-4844-b1c5-a4b9f86a1709)
)
(wire (pts (xy 143.51 88.9) (xy 143.51 90.17))
(stroke (width 0) (type default))
(uuid 37c732a1-cf44-4113-843f-85a5910958ec)
)
(wire (pts (xy 191.77 99.06) (xy 185.42 99.06))
(stroke (width 0) (type default))
(uuid 381ea437-8589-413a-8d00-c27a465a3773)
)
(wire (pts (xy 193.04 77.47) (xy 208.28 77.47))
(stroke (width 0) (type default))
(uuid 3fe74e96-d630-4db9-83b3-437a4cba15b4)
)
(wire (pts (xy 190.5 63.5) (xy 187.96 63.5))
(stroke (width 0) (type default))
(uuid 415d6a7d-98b2-4d17-b46f-6f38749a3ba2)
)
(wire (pts (xy 180.34 106.68) (xy 175.26 106.68))
(stroke (width 0) (type default))
(uuid 432045b0-7589-468b-8659-999ac30c51fa)
)
(wire (pts (xy 187.96 87.63) (xy 208.28 87.63))
(stroke (width 0) (type default))
(uuid 443b842e-cdd6-495f-a7fb-0cef04c17274)
)
(wire (pts (xy 185.42 90.17) (xy 208.28 90.17))
(stroke (width 0) (type default))
(uuid 45b2cd71-50dd-4f61-80ce-9a5382fe6dd4)
)
(wire (pts (xy 191.77 104.14) (xy 185.42 104.14))
(stroke (width 0) (type default))
(uuid 4d290f63-844a-4f7b-8aec-c610c29b1e2f)
)
(wire (pts (xy 180.34 62.23) (xy 180.34 63.5))
(stroke (width 0) (type default))
(uuid 506110af-ac51-4501-bfa6-1552a848d599)
)
(wire (pts (xy 203.2 82.55) (xy 208.28 82.55))
(stroke (width 0) (type default))
(uuid 510813ff-4301-4d7b-b640-805049ac6194)
)
(wire (pts (xy 190.5 85.09) (xy 208.28 85.09))
(stroke (width 0) (type default))
(uuid 52fe3400-bf18-4fe5-aa6e-2be779b65697)
)
(wire (pts (xy 137.16 81.28) (xy 128.27 81.28))
(stroke (width 0) (type default))
(uuid 54801b85-fd78-4df4-a039-798d15f1a062)
)
(wire (pts (xy 144.78 127) (xy 143.51 127))
(stroke (width 0) (type default))
(uuid 5632ff9d-82e3-45b5-a86b-5a4683beef51)
)
(wire (pts (xy 185.42 63.5) (xy 182.88 63.5))
(stroke (width 0) (type default))
(uuid 5bf032d7-1ed3-461e-8d9e-98362eeab2a2)
)
(wire (pts (xy 143.51 127) (xy 134.62 127))
(stroke (width 0) (type default))
(uuid 5c080aa7-74cc-491d-a4fa-a35e9d41b2a9)
)
(wire (pts (xy 180.34 95.25) (xy 208.28 95.25))
(stroke (width 0) (type default))
(uuid 5ea450c5-c799-4c49-a77b-90af3b812ea4)
)
(wire (pts (xy 137.16 88.9) (xy 128.27 88.9))
(stroke (width 0) (type default))
(uuid 61a8149a-2c46-4891-a026-d1321b4c0b29)
)
(wire (pts (xy 137.16 87.63) (xy 137.16 88.9))
(stroke (width 0) (type default))
(uuid 67ed65af-3dae-472c-882d-b64c8e40e12c)
)
(wire (pts (xy 193.04 67.31) (xy 193.04 63.5))
(stroke (width 0) (type default))
(uuid 6b1d6bcd-1928-474b-8dbd-6dab746597ca)
)
(wire (pts (xy 132.08 114.3) (xy 144.78 114.3))
(stroke (width 0) (type default))
(uuid 78e707fb-3e9a-4f67-9527-ee34cdefd91a)
)
(wire (pts (xy 134.62 128.27) (xy 134.62 127))
(stroke (width 0) (type default))
(uuid 79094860-9de1-4089-9ad1-fb708c7e674c)
)
(wire (pts (xy 175.26 87.63) (xy 187.96 87.63))
(stroke (width 0) (type default))
(uuid 7b2f6028-5234-4df8-8d41-bf003f728f58)
)
(wire (pts (xy 182.88 72.39) (xy 182.88 92.71))
(stroke (width 0) (type default))
(uuid 7bd09790-9a37-4331-94a2-940c4fb9585b)
)
(wire (pts (xy 185.42 63.5) (xy 185.42 67.31))
(stroke (width 0) (type default))
(uuid 80f56a42-ff05-4345-8ffd-85584fdb3701)
)
(wire (pts (xy 185.42 72.39) (xy 185.42 90.17))
(stroke (width 0) (type default))
(uuid 83226cf4-4bcb-4755-8744-16fd92f3a724)
)
(wire (pts (xy 182.88 67.31) (xy 182.88 63.5))
(stroke (width 0) (type default))
(uuid 86856bef-d161-4600-b8d6-44f81ad42b7c)
)
(wire (pts (xy 127 88.9) (xy 128.27 88.9))
(stroke (width 0) (type default))
(uuid 86a6b9b9-3de3-44b4-b763-98233419d240)
)
(wire (pts (xy 220.98 121.92) (xy 212.09 121.92))
(stroke (width 0) (type default))
(uuid 8a118e01-ce68-4cb9-aa2c-69460d69aea9)
)
(wire (pts (xy 175.26 90.17) (xy 185.42 90.17))
(stroke (width 0) (type default))
(uuid 8b129856-cc2d-4792-b90f-5af9599716ce)
)
(wire (pts (xy 187.96 63.5) (xy 185.42 63.5))
(stroke (width 0) (type default))
(uuid 8c65d639-2c7e-432d-bc2d-cd7263d4f689)
)
(wire (pts (xy 106.68 83.82) (xy 106.68 85.09))
(stroke (width 0) (type default))
(uuid 9098a6bf-eae0-4636-90c3-6c2f5d9401fd)
)
(wire (pts (xy 144.78 88.9) (xy 143.51 88.9))
(stroke (width 0) (type default))
(uuid 956f8a88-9acc-4e52-9280-d386fdb26e68)
)
(wire (pts (xy 180.34 63.5) (xy 180.34 67.31))
(stroke (width 0) (type default))
(uuid 975ad921-d330-495d-a812-58638ba9e7c7)
)
(wire (pts (xy 106.68 77.47) (xy 144.78 77.47))
(stroke (width 0) (type default))
(uuid 978f5906-8b9c-49a6-9b77-25cbc28e396e)
)
(wire (pts (xy 217.17 127) (xy 220.98 127))
(stroke (width 0) (type default))
(uuid 9a025d13-3f10-4480-b02b-5650c6d28ed8)
)
(wire (pts (xy 144.78 81.28) (xy 137.16 81.28))
(stroke (width 0) (type default))
(uuid a0f6ecb7-ddaf-4b1e-9b89-cdfe3f1f4a12)
)
(wire (pts (xy 212.09 109.22) (xy 212.09 111.76))
(stroke (width 0) (type default))
(uuid b0732623-9278-4ea6-a530-e8f3094216dc)
)
(wire (pts (xy 86.36 104.14) (xy 144.78 104.14))
(stroke (width 0) (type default))
(uuid b2d11b31-1b82-4d0c-a24f-3ecd947114ec)
)
(wire (pts (xy 128.27 81.28) (xy 128.27 82.55))
(stroke (width 0) (type default))
(uuid b75e6d15-4d7a-4aec-ab57-dc77af04a9b9)
)
(wire (pts (xy 106.68 78.74) (xy 106.68 77.47))
(stroke (width 0) (type default))
(uuid b8e9717b-c8d9-44dd-9eb5-d37e3b2c2fb5)
)
(wire (pts (xy 193.04 63.5) (xy 190.5 63.5))
(stroke (width 0) (type default))
(uuid b9f8ba78-9b7b-4a7c-8351-c9f145a140ab)
)
(wire (pts (xy 132.08 114.3) (xy 132.08 119.38))
(stroke (width 0) (type default))
(uuid baa2bb27-3ff4-481e-b331-7cfee71362fe)
)
(wire (pts (xy 71.12 104.14) (xy 71.12 105.41))
(stroke (width 0) (type default))
(uuid c71e1710-20a1-4e33-88ae-549fb47faa61)
)
(wire (pts (xy 212.09 119.38) (xy 212.09 121.92))
(stroke (width 0) (type default))
(uuid c77559f1-9310-438e-bb42-9cac3de0d116)
)
(wire (pts (xy 175.26 77.47) (xy 193.04 77.47))
(stroke (width 0) (type default))
(uuid cb082ca8-e559-493c-a769-6ac76ddc831e)
)
(wire (pts (xy 175.26 111.76) (xy 212.09 111.76))
(stroke (width 0) (type default))
(uuid ccefc75b-fd16-4e82-963f-281710a98051)
)
(wire (pts (xy 187.96 72.39) (xy 187.96 87.63))
(stroke (width 0) (type default))
(uuid d0b8883f-56d3-436a-a178-a658388f963b)
)
(wire (pts (xy 190.5 85.09) (xy 190.5 72.39))
(stroke (width 0) (type default))
(uuid d2f72b7f-67e2-4cf3-9de6-340a26ecf95b)
)
(wire (pts (xy 97.79 85.09) (xy 97.79 83.82))
(stroke (width 0) (type default))
(uuid d618158f-4184-4754-aa33-65a98e706342)
)
(wire (pts (xy 73.66 104.14) (xy 71.12 104.14))
(stroke (width 0) (type default))
(uuid d82759b1-57a0-4293-812e-59347193bfc5)
)
(wire (pts (xy 78.74 104.14) (xy 80.01 104.14))
(stroke (width 0) (type default))
(uuid da423bcf-af02-422a-8d3f-915d7fd393eb)
)
(wire (pts (xy 180.34 72.39) (xy 180.34 95.25))
(stroke (width 0) (type default))
(uuid dad24ddf-e25d-4aa8-b795-2adc252edc45)
)
(wire (pts (xy 180.34 99.06) (xy 175.26 99.06))
(stroke (width 0) (type default))
(uuid e12ec3e8-0d5b-47b1-abb9-9b31a4bb451e)
)
(wire (pts (xy 175.26 92.71) (xy 182.88 92.71))
(stroke (width 0) (type default))
(uuid e188f4e0-97d6-45d5-9852-98640c6abc42)
)
(wire (pts (xy 140.97 124.46) (xy 144.78 124.46))
(stroke (width 0) (type default))
(uuid e41ebddf-cb62-48cb-abb2-1cc22a5eecdd)
)
(wire (pts (xy 143.51 128.27) (xy 143.51 127))
(stroke (width 0) (type default))
(uuid e5ef96dd-e14b-40bb-acac-746f5d3aee37)
)
(wire (pts (xy 198.12 82.55) (xy 175.26 82.55))
(stroke (width 0) (type default))
(uuid e61e3b10-16bb-45fa-9a42-277efd2ec104)
)