-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquectelm66.kicad_sch
1932 lines (1892 loc) · 73.3 KB
/
quectelm66.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 ac91ed56-e0b7-46e6-8309-69772666065e)
(paper "A4")
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (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" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (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_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "C_Polarized_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:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(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 res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (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_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_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 "M66:M66" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -17.8126 36.1291 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "M66" (at -17.7991 -40.6781 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "XCVR_M66" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Quectel" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "DESCRIPTION" "M66 is an ultra-small quad-band GSM/GPRS module using LCC castellation packaging on the market. Based on the latest 2G chipset, it has the optimal performance in SMS & Data transmission and audio service even in harsh environment." (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PACKAGE" "0603 Quectel" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PRICE" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "M66" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "AVAILABILITY" "Unavailable" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "M66_0_0"
(rectangle (start -17.78 -38.1) (end 17.78 35.56)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin power_in line (at 22.86 -35.56 180) (length 5.08)
(name "AGND" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -7.62 180) (length 5.08)
(name "SIM_GND" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 22.86 -2.54 180) (length 5.08)
(name "SIM_DATA" (effects (font (size 1.016 1.016))))
(number "11" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 -5.08 180) (length 5.08)
(name "SIM_RST" (effects (font (size 1.016 1.016))))
(number "12" (effects (font (size 1.016 1.016))))
)
(pin output clock (at 22.86 0 180) (length 5.08)
(name "SIM_CLK" (effects (font (size 1.016 1.016))))
(number "13" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 2.54 180) (length 5.08)
(name "SIM_VDD" (effects (font (size 1.016 1.016))))
(number "14" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 20.32 180) (length 5.08)
(name "NETLIGHT" (effects (font (size 1.016 1.016))))
(number "16" (effects (font (size 1.016 1.016))))
)
(pin output line (at -22.86 5.08 0) (length 5.08)
(name "TXD" (effects (font (size 1.016 1.016))))
(number "17" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 2.54 0) (length 5.08)
(name "RXD" (effects (font (size 1.016 1.016))))
(number "18" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 0 0) (length 5.08)
(name "DTR" (effects (font (size 1.016 1.016))))
(number "19" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 7.62 180) (length 5.08)
(name "SPK2P" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin output line (at -22.86 -2.54 0) (length 5.08)
(name "RI" (effects (font (size 1.016 1.016))))
(number "20" (effects (font (size 1.016 1.016))))
)
(pin output line (at -22.86 -5.08 0) (length 5.08)
(name "DCD" (effects (font (size 1.016 1.016))))
(number "21" (effects (font (size 1.016 1.016))))
)
(pin output line (at -22.86 -7.62 0) (length 5.08)
(name "CTS" (effects (font (size 1.016 1.016))))
(number "22" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 -10.16 0) (length 5.08)
(name "RTS" (effects (font (size 1.016 1.016))))
(number "23" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 25.4 180) (length 5.08)
(name "VDD_EXT" (effects (font (size 1.016 1.016))))
(number "24" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 17.78 180) (length 5.08)
(name "RFTXMON" (effects (font (size 1.016 1.016))))
(number "25" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 22.86 -25.4 180) (length 5.08)
(name "BT_ANT" (effects (font (size 1.016 1.016))))
(number "26" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -33.02 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "27" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 -25.4 0) (length 5.08)
(name "RXD_AUX" (effects (font (size 1.016 1.016))))
(number "28" (effects (font (size 1.016 1.016))))
)
(pin output line (at -22.86 -27.94 0) (length 5.08)
(name "TXD_AUX" (effects (font (size 1.016 1.016))))
(number "29" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 12.7 0) (length 5.08)
(name "MICP" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin output clock (at 22.86 -12.7 180) (length 5.08)
(name "PCM_CLK" (effects (font (size 1.016 1.016))))
(number "30" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 -15.24 180) (length 5.08)
(name "PCM_SYNC" (effects (font (size 1.016 1.016))))
(number "31" (effects (font (size 1.016 1.016))))
)
(pin input line (at 22.86 -17.78 180) (length 5.08)
(name "PCM_IN" (effects (font (size 1.016 1.016))))
(number "32" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 -20.32 180) (length 5.08)
(name "PCM_OUT" (effects (font (size 1.016 1.016))))
(number "33" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -33.02 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "34" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 22.86 -27.94 180) (length 5.08)
(name "RF_ANT" (effects (font (size 1.016 1.016))))
(number "35" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -33.02 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "36" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -33.02 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "37" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 -17.78 0) (length 5.08)
(name "DBG_RXD" (effects (font (size 1.016 1.016))))
(number "38" (effects (font (size 1.016 1.016))))
)
(pin output line (at -22.86 -20.32 0) (length 5.08)
(name "DBG_TXD" (effects (font (size 1.016 1.016))))
(number "39" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 10.16 0) (length 5.08)
(name "MICN" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -33.02 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "40" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 -33.02 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "41" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 33.02 180) (length 5.08)
(name "VBAT" (effects (font (size 1.016 1.016))))
(number "42" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 33.02 180) (length 5.08)
(name "VBAT" (effects (font (size 1.016 1.016))))
(number "43" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 27.94 180) (length 5.08)
(name "VRTC" (effects (font (size 1.016 1.016))))
(number "44" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 12.7 180) (length 5.08)
(name "SPK1P" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin output line (at 22.86 10.16 180) (length 5.08)
(name "SPK1N" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 17.78 0) (length 5.08)
(name "PWRKEY" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 22.86 30.48 180) (length 5.08)
(name "AVDD" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin input line (at -22.86 20.32 0) (length 5.08)
(name "ADC0" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "NN02-201:NN02-201" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "E" (at 2.54 5.08 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "NN02-201" (at 2.54 2.54 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "XCVR_NN02-201" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTREV" "December 2020" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "FRACTUS ANTENNAS" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "1.0mm" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "Manufacturer recommendations" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "NN02-201_0_0"
(polyline
(pts
(xy 0 2.54)
(xy -2.667 8.001)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 8.001)
(xy 0 2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.413 8.001)
(xy 0 2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(pin input line (at 0 -5.08 90) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "SIM8060-6-0-14-00-A:SIM8060-6-0-14-00-A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -5.0895 13.3599 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "SIM8060-6-0-14-00-A" (at -5.0859 -12.7178 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "GCT_SIM8060-6-0-14-00-A" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Global Connector Technology" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "DIGI-KEY_PURCHASE_URL" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "DESCRIPTION" "SIM8060 is a hinged Sim Card Connector. With 6 contacts, with switch for card detection. Profile above PCB is 1.43mm." (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PACKAGE" "Package Analog Devices" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "SIM8060-6-0-14-00-A" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "DIGI-KEY_PART_NUMBER" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "SIM8060-6-0-14-00-A_0_0"
(rectangle (start -5.08 -10.16) (end 5.08 12.7)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -10.16 10.16 0) (length 5.08)
(name "VCC" (effects (font (size 1.016 1.016))))
(number "C1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 7.62 0) (length 5.08)
(name "RST" (effects (font (size 1.016 1.016))))
(number "C2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 5.08 0) (length 5.08)
(name "CLK" (effects (font (size 1.016 1.016))))
(number "C3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 2.54 0) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "C5" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 0 0) (length 5.08)
(name "VPP" (effects (font (size 1.016 1.016))))
(number "C6" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 -2.54 0) (length 5.08)
(name "IO" (effects (font (size 1.016 1.016))))
(number "C7" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 -7.62 0) (length 5.08)
(name "SHIELD" (effects (font (size 1.016 1.016))))
(number "S1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 -7.62 0) (length 5.08)
(name "SHIELD" (effects (font (size 1.016 1.016))))
(number "S2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 -7.62 0) (length 5.08)
(name "SHIELD" (effects (font (size 1.016 1.016))))
(number "S3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 -7.62 0) (length 5.08)
(name "SHIELD" (effects (font (size 1.016 1.016))))
(number "S4" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "U.FL-R-SMT-1_10_:U.FL-R-SMT-1(10)" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 3.8142 1.2714 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "U.FL-R-SMT-1(10)" (at 3.8143 -2.5429 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "HRS_U.FL-R-SMT-1(10)" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MANUFACTURER" "Hirose Electric Co. Ltd." (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "U.FL-R-SMT-1(10)_0_0"
(polyline
(pts
(xy 0 -3.81)
(xy 0 -8.89)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy -5.08 0)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 3.5921)
(stroke (width 0.254) (type default))
(fill (type none))
)
(pin passive line (at 0 -13.97 90) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -10.16 0 0) (length 5.08)
(name "SIG" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 0 -13.97 90) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
)
)
(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" "global power" (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 138.43 31.75) (diameter 0) (color 0 0 0 0)
(uuid 0bc177d4-7ba8-4e10-a658-4e2a3c355c0e)
)
(junction (at 208.28 83.82) (diameter 0) (color 0 0 0 0)
(uuid 0ef1b35f-578a-489f-b26d-1b2b7ba2794b)
)
(junction (at 138.43 40.64) (diameter 0) (color 0 0 0 0)
(uuid 152d0c1b-421d-49ce-ae99-0d57fd840d52)
)
(junction (at 99.06 139.7) (diameter 0) (color 0 0 0 0)
(uuid 31e4c263-668e-4d89-8916-f87eb80c4760)
)
(junction (at 181.61 76.2) (diameter 0) (color 0 0 0 0)
(uuid 3503dcea-2807-4ab9-92ee-b7826b868484)
)
(junction (at 109.22 132.08) (diameter 0) (color 0 0 0 0)
(uuid 755de300-d869-40b4-90f2-19d5b6ba3c74)
)
(junction (at 196.85 73.66) (diameter 0) (color 0 0 0 0)
(uuid 8cad1a93-261a-4fe8-a50c-a51a9e0cd384)
)
(junction (at 208.28 59.69) (diameter 0) (color 0 0 0 0)
(uuid c0a1374e-acbd-4623-aade-4b865a8acf95)
)
(junction (at 142.24 132.08) (diameter 0) (color 0 0 0 0)
(uuid cd3d28c5-b9d3-4321-8684-cc296bdc8d12)
)
(junction (at 128.27 132.08) (diameter 0) (color 0 0 0 0)
(uuid cde8a631-9f1f-4729-ba17-0d46625a9b60)
)
(no_connect (at 53.34 91.44) (uuid 02ce6cfd-b51b-4489-ac1c-0cb4817006f2))
(no_connect (at 53.34 111.76) (uuid 05ed029f-63e8-4a24-bdee-55a2fb3faadc))
(no_connect (at 99.06 91.44) (uuid 06693596-13b0-4b33-995a-59215503584c))
(no_connect (at 99.06 129.54) (uuid 09a12daa-6f3a-4224-87db-ce20a0adc15a))
(no_connect (at 99.06 86.36) (uuid 0c5e7f54-8648-4cfb-82bd-5a3d8ba98897))
(no_connect (at 53.34 93.98) (uuid 182db189-8237-4479-b4b3-a1bb187e4cab))
(no_connect (at 53.34 83.82) (uuid 189ad1fd-a42d-4583-ade3-26cdea8aa3a4))
(no_connect (at 99.06 93.98) (uuid 1ffaccf5-7296-4ab6-9672-85c89aff19fa))
(no_connect (at 53.34 114.3) (uuid 39c30ec9-3c2a-44f5-9978-737356998e38))
(no_connect (at 99.06 76.2) (uuid 3cce4149-e950-4510-acd7-89262a602bfe))
(no_connect (at 99.06 73.66) (uuid 3d339da2-2cbb-482d-9202-fec68416e508))
(no_connect (at 99.06 116.84) (uuid 3faf7012-f781-4d04-941c-3808caa73bf4))
(no_connect (at 99.06 124.46) (uuid 7c682308-7c5e-4fa7-9bfb-f16475e376cf))
(no_connect (at 99.06 78.74) (uuid 7d4d33db-6880-444f-a248-4db447a09bdc))
(no_connect (at 99.06 83.82) (uuid 8b07e4a4-986a-42c3-b7f7-6cf1495188a3))
(no_connect (at 53.34 132.08) (uuid 8e70b90f-4591-4f22-bf29-37d8ac67928c))
(no_connect (at 242.57 81.28) (uuid 9e43c4cc-15ac-4518-9765-9c36e5683f21))
(no_connect (at 53.34 109.22) (uuid a0aacdae-3f7e-4862-b98a-7b3fa3125cbf))
(no_connect (at 99.06 121.92) (uuid a10c61a4-e2b9-4a52-814b-afb61224d363))
(no_connect (at 53.34 104.14) (uuid b48538a9-491e-4cb4-980d-9bbfa98cfc2c))
(no_connect (at 99.06 119.38) (uuid b83129e8-e379-4d19-a127-cb0b53cc9055))
(no_connect (at 53.34 129.54) (uuid c0306956-a6bf-4e02-888c-25bc5539ca6a))
(no_connect (at 99.06 96.52) (uuid d1caaef6-09cd-490f-ba92-885a157796ed))
(no_connect (at 53.34 106.68) (uuid d662be19-9194-4643-9675-22d817d3d41a))
(wire (pts (xy 138.43 27.94) (xy 138.43 31.75))
(stroke (width 0) (type default))
(uuid 0e6c6947-ff18-45b4-96b1-b80f9bd86347)
)
(wire (pts (xy 50.8 121.92) (xy 53.34 121.92))
(stroke (width 0) (type default))
(uuid 12cab12b-a722-4509-99ae-a4ad169b0909)
)
(wire (pts (xy 238.76 78.74) (xy 242.57 78.74))
(stroke (width 0) (type default))
(uuid 1808fed3-a76a-4421-adee-0f2d0c03b653)
)
(wire (pts (xy 152.4 31.75) (xy 152.4 33.02))
(stroke (width 0) (type default))
(uuid 1c8e9abf-8642-4d8c-ac6a-d0d60e250913)
)
(wire (pts (xy 195.58 59.69) (xy 195.58 60.96))
(stroke (width 0) (type default))
(uuid 276a4c1a-1916-43cf-bf06-6e69ad8361e5)
)
(wire (pts (xy 181.61 76.2) (xy 242.57 76.2))
(stroke (width 0) (type default))
(uuid 293be073-f08e-47a6-aef1-442c001c33b7)
)
(wire (pts (xy 124.46 40.64) (xy 138.43 40.64))
(stroke (width 0) (type default))
(uuid 2c679b75-af12-417a-8537-fa32e8e854a3)
)
(wire (pts (xy 124.46 33.02) (xy 124.46 31.75))
(stroke (width 0) (type default))
(uuid 2fbc468a-da00-41c9-8803-1a85ecc23bcd)
)
(wire (pts (xy 138.43 31.75) (xy 152.4 31.75))
(stroke (width 0) (type default))
(uuid 30dc78dd-c9f1-4430-a086-c2aedca90c75)
)
(wire (pts (xy 173.99 86.36) (xy 173.99 83.82))
(stroke (width 0) (type default))
(uuid 3673a091-b888-4dc1-97cc-af0d97f4dd27)
)
(wire (pts (xy 208.28 59.69) (xy 208.28 60.96))
(stroke (width 0) (type default))
(uuid 3d7946fb-f121-4d0b-834d-6f5a1918b188)
)
(wire (pts (xy 196.85 73.66) (xy 242.57 73.66))
(stroke (width 0) (type default))
(uuid 3e1599fb-71ac-4887-9c67-289c5511bfaf)
)
(wire (pts (xy 109.22 132.08) (xy 115.57 132.08))
(stroke (width 0) (type default))
(uuid 3f0ca4ed-3471-4739-b808-ec4a50f98e09)
)
(wire (pts (xy 142.24 143.51) (xy 142.24 142.24))
(stroke (width 0) (type default))
(uuid 48ef47b9-ab31-4430-9876-908330e7e2de)
)
(wire (pts (xy 50.8 99.06) (xy 53.34 99.06))
(stroke (width 0) (type default))
(uuid 4c34026e-64f8-4ff9-9720-2c98daebf006)
)
(wire (pts (xy 195.58 69.85) (xy 195.58 68.58))
(stroke (width 0) (type default))
(uuid 53abef39-0bee-4974-bcd5-6c82a7cf224a)
)
(wire (pts (xy 242.57 91.44) (xy 242.57 88.9))
(stroke (width 0) (type default))
(uuid 54184cd2-d28b-4181-9028-ed6120beabc5)
)
(wire (pts (xy 50.8 86.36) (xy 53.34 86.36))
(stroke (width 0) (type default))
(uuid 546236bd-0bde-4592-a6e5-e78f54436b15)
)
(wire (pts (xy 123.19 132.08) (xy 128.27 132.08))
(stroke (width 0) (type default))
(uuid 54a4cba1-4ea0-4567-bf12-6eb030006fd5)
)
(wire (pts (xy 196.85 82.55) (xy 196.85 81.28))
(stroke (width 0) (type default))
(uuid 54ed2fa3-ed32-47fb-af77-3a432db5b702)
)
(wire (pts (xy 173.99 73.66) (xy 196.85 73.66))
(stroke (width 0) (type default))
(uuid 560b6580-ff12-47d0-8d69-6712ef324d7e)
)
(wire (pts (xy 101.6 64.77) (xy 101.6 71.12))
(stroke (width 0) (type default))
(uuid 5c74659f-50ac-4adb-a978-e109f06b4076)
)
(wire (pts (xy 158.75 76.2) (xy 166.37 76.2))
(stroke (width 0) (type default))
(uuid 5d878fec-799c-4e55-9f56-bbf4fa24fe16)
)
(wire (pts (xy 195.58 59.69) (xy 208.28 59.69))
(stroke (width 0) (type default))
(uuid 61e5add8-7ab2-4165-8804-d1f0cc228178)
)
(wire (pts (xy 208.28 59.69) (xy 218.44 59.69))
(stroke (width 0) (type default))
(uuid 6ab3744b-830c-44da-9426-8294060d9eca)
)
(wire (pts (xy 208.28 83.82) (xy 242.57 83.82))
(stroke (width 0) (type default))
(uuid 6cc4a4dc-cc39-4508-82a8-42defe9b2333)
)
(wire (pts (xy 50.8 101.6) (xy 53.34 101.6))
(stroke (width 0) (type default))
(uuid 6fd3414b-93a2-4a5c-9325-49c822a6abc0)
)
(wire (pts (xy 218.44 71.12) (xy 242.57 71.12))
(stroke (width 0) (type default))
(uuid 78698c0a-f438-49fc-8a59-483d3a6e4f6b)
)
(wire (pts (xy 173.99 86.36) (xy 201.93 86.36))
(stroke (width 0) (type default))
(uuid 786d505d-1155-4b24-9f93-78ff59439472)
)
(wire (pts (xy 173.99 76.2) (xy 181.61 76.2))
(stroke (width 0) (type default))
(uuid 7ed15690-19c7-42cb-8564-cd07d3b28918)
)
(wire (pts (xy 99.06 142.24) (xy 99.06 139.7))
(stroke (width 0) (type default))
(uuid 8655d741-be97-40c1-86fb-81e494cecc7f)
)
(wire (pts (xy 109.22 133.35) (xy 109.22 132.08))
(stroke (width 0) (type default))
(uuid 86ac6408-5cb6-45fa-b4fa-a3d9ed67add5)
)
(wire (pts (xy 157.48 110.49) (xy 156.21 110.49))
(stroke (width 0) (type default))
(uuid 9646ec32-8a12-4d68-be50-a96938a2b277)
)
(wire (pts (xy 99.06 137.16) (xy 99.06 139.7))
(stroke (width 0) (type default))
(uuid 9c04ca23-135a-4098-93c3-2fb90cf7ae5a)
)
(wire (pts (xy 124.46 31.75) (xy 138.43 31.75))
(stroke (width 0) (type default))
(uuid a001b637-6f92-496d-8947-bc36b293b746)
)
(wire (pts (xy 128.27 132.08) (xy 128.27 133.35))
(stroke (width 0) (type default))
(uuid a5e1cdd6-342d-43f2-bb4e-818fcd9916cc)
)
(wire (pts (xy 218.44 59.69) (xy 218.44 71.12))
(stroke (width 0) (type default))
(uuid a727a893-acd0-4ee3-ae75-109bba446d49)
)
(wire (pts (xy 128.27 132.08) (xy 142.24 132.08))
(stroke (width 0) (type default))
(uuid a9c47eb7-6d41-41c8-9235-af63aae34c0d)
)
(wire (pts (xy 208.28 57.15) (xy 208.28 59.69))
(stroke (width 0) (type default))
(uuid aad2ec1a-51b0-43f7-94db-75aea2aeee49)
)
(wire (pts (xy 99.06 132.08) (xy 109.22 132.08))
(stroke (width 0) (type default))
(uuid af14e738-587d-4cd2-b992-db39f0b2eada)
)
(wire (pts (xy 138.43 31.75) (xy 138.43 33.02))
(stroke (width 0) (type default))
(uuid b6f1ca71-326f-4f82-97d7-eb400faea7b6)
)
(wire (pts (xy 50.8 124.46) (xy 53.34 124.46))
(stroke (width 0) (type default))
(uuid bc14146e-95e5-4894-b00c-cd6c92a6b0d6)
)
(wire (pts (xy 142.24 134.62) (xy 142.24 132.08))
(stroke (width 0) (type default))
(uuid d13d2a06-eb4f-4703-bb7b-60e379e7537c)
)
(wire (pts (xy 160.02 73.66) (xy 166.37 73.66))
(stroke (width 0) (type default))
(uuid d1450bc8-6dd2-4343-bda4-f681612dc8bc)
)
(wire (pts (xy 101.6 71.12) (xy 99.06 71.12))
(stroke (width 0) (type default))
(uuid d3ea46aa-111d-4282-9c40-1766471f0577)
)
(wire (pts (xy 138.43 40.64) (xy 152.4 40.64))
(stroke (width 0) (type default))
(uuid d5eb47fd-fdb8-45e2-b4ac-9f576d67347e)
)
(wire (pts (xy 138.43 43.18) (xy 138.43 40.64))
(stroke (width 0) (type default))
(uuid d69fa1bc-0a6c-4de1-b9a1-5f0276d6a11b)
)
(wire (pts (xy 160.02 83.82) (xy 166.37 83.82))
(stroke (width 0) (type default))
(uuid db3c48e2-946a-419f-8db3-1e59c80e9413)
)
(wire (pts (xy 142.24 128.27) (xy 142.24 132.08))
(stroke (width 0) (type default))
(uuid dc844c88-adb2-4d87-856d-221ac75549f3)
)
(wire (pts (xy 208.28 83.82) (xy 201.93 83.82))
(stroke (width 0) (type default))
(uuid e8328e0a-2b01-4936-ba21-d7d8c0bca705)
)
(wire (pts (xy 201.93 86.36) (xy 201.93 83.82))
(stroke (width 0) (type default))
(uuid f81cf07a-5291-4c3b-9e0b-6b83f7658422)
)
(label "SIM_RST" (at 160.02 73.66 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right bottom))
(uuid 00ddc945-c1bb-4ab9-a427-8c3f625d7192)
)
(label "SIM_RST" (at 99.06 109.22 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left bottom))
(uuid 03daa0cf-d30f-446f-890b-ab354d833da4)
)
(label "SIM_GND" (at 195.58 69.85 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right bottom))
(uuid 388a01ef-6682-4ea6-9aca-78b074db0866)
)
(label "SIM_VDD" (at 208.28 57.15 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right bottom))
(uuid 3d3c309d-9461-4be7-ae50-2233da136472)
)
(label "SIM_IO" (at 99.06 106.68 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left bottom))
(uuid 4fa84c63-5510-46a3-a83e-c5277e9ec97c)
)
(label "SIM_CLK" (at 99.06 104.14 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left bottom))
(uuid 71357585-9e33-4aac-a217-d1ee50438b8a)
)
(label "SIM_CLK" (at 158.75 76.2 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right bottom))
(uuid 7674d9ef-7589-4786-bb10-590d757d50fc)
)
(label "SIM_GND" (at 238.76 78.74 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right bottom))
(uuid 76776e58-8186-4c04-a3df-7561182a9c7b)
)
(label "SIM_VDD" (at 99.06 101.6 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left bottom))
(uuid 909c3146-54b6-4bc2-9391-b75232f3cfc4)
)
(label "SIM_IO" (at 160.02 83.82 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right bottom))
(uuid cb312430-f731-4c71-922e-1b93f159416e)
)
(label "SIM_GND" (at 99.06 111.76 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left bottom))
(uuid fb40e903-6a3f-4ca9-831d-308454452d88)
)
(global_label "PWR_KEY_GSM_t" (shape input) (at 50.8 86.36 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid 2f13171a-6d1b-4be8-a618-f8e993a965b9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 36.6549 86.36 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GSM_RX_t" (shape output) (at 50.8 101.6 180) (fields_autoplaced)
(effects (font (size 1 1) (color 88 18 132 1)) (justify right))
(uuid 5e9c5451-beb1-4a65-bd1b-beb6599a05ba)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 41.3692 101.6 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VDD_3.3_t" (shape input) (at 138.43 27.94 180) (fields_autoplaced)
(effects (font (size 1 1) (color 255 149 14 1)) (justify right))
(uuid 63a7ab49-20d7-4be6-aaae-4cb7b416d11c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.8088 27.94 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VDD_3.3_t" (shape input) (at 101.6 64.77 90) (fields_autoplaced)
(effects (font (size 1 1) (color 255 149 14 1)) (justify left))
(uuid c2ef17b6-1d9d-4825-bf57-607aa8c531b8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 101.6 55.1488 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GSM_TX_t" (shape output) (at 50.8 99.06 180) (fields_autoplaced)
(effects (font (size 1 1) (color 88 18 132 1)) (justify right))
(uuid e7b6a8af-e553-4ce2-ba73-694c44a1252a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 41.6073 99.06 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "Device:C") (at 208.28 64.77 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0180c72f-938a-40a2-99f1-6ed6f71d7e25)
(property "Reference" "C27" (at 212.09 64.135 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "30pF" (at 212.09 66.675 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (at 209.2452 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 208.28 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a5a1e41d-2dbf-4e82-b6a4-5185ad643466))
(pin "2" (uuid db6d9c5d-8c3f-4faf-84ee-859002645ecd))
(instances