-
Notifications
You must be signed in to change notification settings - Fork 0
/
umts-adapter.kicad_sch
1240 lines (1218 loc) · 48.9 KB
/
umts-adapter.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_02x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x01" (id 1) (at 1.27 -2.54 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, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., 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*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x01_1_1"
(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 3.81 -1.27)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(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 7.62 0 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 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, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), 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*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x05_Odd_Even_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(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 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 5.08 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 7.62 -5.08 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x15_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x15_Odd_Even" (id 1) (at 1.27 -20.32 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, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), 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*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x15_Odd_Even_1_1"
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(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 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 19.05) (end 3.81 -19.05)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -17.653) (end 2.54 -17.907)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -15.113) (end 2.54 -15.367)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -12.573) (end 2.54 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -10.033) (end 2.54 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 10.287) (end 2.54 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 12.827) (end 2.54 12.573)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 15.367) (end 2.54 15.113)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 17.907) (end 2.54 17.653)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 17.78 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 7.62 7.62 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 17.78 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -7.62 180) (length 3.81)
(name "Pin_22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -10.16 180) (length 3.81)
(name "Pin_24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_25" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -12.7 180) (length 3.81)
(name "Pin_26" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_27" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -15.24 180) (length 3.81)
(name "Pin_28" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_29" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 15.24 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -17.78 180) (length 3.81)
(name "Pin_30" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 15.24 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 12.7 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 12.7 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 10.16 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+28V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+28V" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 6.35 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 6.35 1.27 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 \"+28V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+28V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+28V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+28V" (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" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (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 \"GND\" , ground" (id 5) (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) (color 0 0 0 0))
(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))))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (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 \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 191.135 60.325) (diameter 0) (color 0 0 0 0)
(uuid 1436839e-e606-45d6-805b-11e8f3ef9a33)
)
(junction (at 217.805 52.705) (diameter 0) (color 0 0 0 0)
(uuid 1fd4d199-be0d-4bd6-a8bf-6a584dd790d8)
)
(junction (at 217.805 57.785) (diameter 0) (color 0 0 0 0)
(uuid 20230688-38eb-4122-9b1b-3027a45f7272)
)
(junction (at 186.055 70.485) (diameter 0) (color 0 0 0 0)
(uuid 2148f2b6-facf-4495-acb4-dd632124e0f9)
)
(junction (at 191.135 57.785) (diameter 0) (color 0 0 0 0)
(uuid 398b06c5-f050-4b73-90d1-a7e375deae52)
)
(junction (at 191.135 62.865) (diameter 0) (color 0 0 0 0)
(uuid 3c4eab1f-aad2-44bc-a801-8b16843f526a)
)
(junction (at 191.135 67.945) (diameter 0) (color 0 0 0 0)
(uuid 550fc6a9-b80c-418b-834b-ec974f451676)
)
(junction (at 222.885 40.005) (diameter 0) (color 0 0 0 0)
(uuid 5e5a3e24-4d1e-44c2-a470-81c6b26a1bb4)
)
(junction (at 191.135 55.245) (diameter 0) (color 0 0 0 0)
(uuid 72761342-c9a6-4a5c-ba6c-9a505c23ed39)
)
(junction (at 222.885 42.545) (diameter 0) (color 0 0 0 0)
(uuid 78ced512-ee6c-447b-b7c7-b48acdbd799e)
)
(junction (at 191.135 52.705) (diameter 0) (color 0 0 0 0)
(uuid 8ec9513c-ea56-4a67-b9c0-93569e9d02a7)
)
(junction (at 217.805 73.025) (diameter 0) (color 0 0 0 0)
(uuid 8f155318-bf5b-44ab-a76b-21d122c47658)
)
(junction (at 191.135 47.625) (diameter 0) (color 0 0 0 0)
(uuid 963e1d53-5450-480c-9185-4b75f622dff8)
)
(junction (at 191.135 50.165) (diameter 0) (color 0 0 0 0)
(uuid a3572912-ea02-49f5-9e59-c738672315d5)
)
(junction (at 217.805 67.945) (diameter 0) (color 0 0 0 0)
(uuid a52c296a-e2da-4869-91e4-1f1141f0435e)
)
(junction (at 217.805 75.565) (diameter 0) (color 0 0 0 0)
(uuid aa73b3a6-4232-47cd-8d1d-e26e097bae8f)
)
(junction (at 186.055 42.545) (diameter 0) (color 0 0 0 0)
(uuid aa92a0db-6b02-44d3-bf03-18c7d73e3bad)
)
(junction (at 186.055 40.005) (diameter 0) (color 0 0 0 0)
(uuid b9264d31-b2d9-4561-bd02-22e73d1fa14e)
)
(junction (at 191.135 65.405) (diameter 0) (color 0 0 0 0)
(uuid c353943c-63c8-45be-81ab-0b2d818de36c)
)
(junction (at 217.805 70.485) (diameter 0) (color 0 0 0 0)
(uuid ca3f6c53-e2b5-4153-b164-3fcbb876eac6)
)
(junction (at 186.055 73.025) (diameter 0) (color 0 0 0 0)
(uuid dbb58e03-980f-4d53-b780-c96c25cf8b1f)
)
(junction (at 222.885 47.625) (diameter 0) (color 0 0 0 0)
(uuid e2c9e1ed-df65-466f-83e7-186dda2bb025)
)
(no_connect (at 172.72 104.14) (uuid 5e36207d-3150-4aa6-97af-69d44ab4d20e))
(no_connect (at 213.995 65.405) (uuid 9585c0e8-6ecf-40ba-9442-56d37506dc43))
(no_connect (at 172.974 99.06) (uuid a0bf6cbd-af32-4419-a4a5-bf349652af6e))
(no_connect (at 157.48 99.06) (uuid d87e6f06-e1fd-495e-896e-b05eac1d16f5))
(no_connect (at 157.48 104.14) (uuid d98f16f7-474e-41ad-8860-418588c1e017))
(wire (pts (xy 210.185 50.165) (xy 222.885 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 000d13df-4d8e-4d68-9f8c-0b607c948838)
)
(wire (pts (xy 171.196 101.6) (xy 172.72 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b471087-d60d-4fbc-b7ab-9e0ec89caef3)
)
(wire (pts (xy 191.135 57.785) (xy 191.135 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 175829b3-f600-48b0-b997-735618efbd41)
)
(wire (pts (xy 210.185 65.405) (xy 213.995 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 184863aa-54f0-4780-af14-704e4c823813)
)
(wire (pts (xy 186.055 40.005) (xy 197.485 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c9b5038-7d1a-40aa-b7fb-d9e1311d1319)
)
(wire (pts (xy 191.135 47.625) (xy 197.485 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25cc41a9-eecc-4886-a626-06cc11440132)
)
(wire (pts (xy 191.135 50.165) (xy 191.135 52.705))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f58fb13-0fd6-41c8-b9d6-ac7c982df2c7)
)
(wire (pts (xy 217.805 70.485) (xy 217.805 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32b04c98-4d2b-428e-8867-28fc3f26476a)
)
(wire (pts (xy 210.185 73.025) (xy 217.805 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 349fb70b-786f-40bc-bb5d-8b713334225b)
)
(wire (pts (xy 157.48 101.6) (xy 158.496 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36d9f170-93ef-428f-8380-8a44839cc197)
)
(wire (pts (xy 186.055 70.485) (xy 186.055 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38b45e65-d21a-4780-949c-b4df73ce9bcf)
)
(wire (pts (xy 157.48 106.68) (xy 158.496 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 398c8024-cf88-4d69-994a-9d99d238f212)
)
(wire (pts (xy 186.055 42.545) (xy 197.485 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39aad625-c6f9-4299-ba8b-41788327a10a)
)
(wire (pts (xy 210.185 67.945) (xy 217.805 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d8bc873-f39c-4eb4-8490-fe4e06afa1ca)
)
(wire (pts (xy 191.135 47.625) (xy 191.135 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4274703b-d396-45c5-96ee-a41e4dd6482a)
)
(wire (pts (xy 217.805 73.025) (xy 217.805 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42c96f8c-2b86-4a1c-8944-413e28b08eb1)
)
(wire (pts (xy 191.135 65.405) (xy 191.135 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 471631f8-b8be-4025-97ee-79d9b310676f)
)
(wire (pts (xy 222.885 36.195) (xy 222.885 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a989979-ff2e-4267-af75-03a49fdaad1d)
)
(wire (pts (xy 186.055 75.565) (xy 186.055 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ca30ab7-5a9a-4d17-89a8-b33fb8c034c1)
)
(wire (pts (xy 157.734 96.52) (xy 158.496 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4eb111d3-2354-4644-97c0-3e3d8ccf7235)
)
(wire (pts (xy 171.196 96.52) (xy 172.72 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4faacb85-60c0-4201-96b7-d07045169044)
)
(wire (pts (xy 191.135 62.865) (xy 191.135 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54075163-60a5-42ea-8884-54ad49ce302a)
)
(wire (pts (xy 210.185 70.485) (xy 217.805 70.485))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5daf4ecb-af4b-40d6-85f0-fe5203a65bc3)
)
(wire (pts (xy 191.135 45.085) (xy 191.135 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62ce50fc-df5f-4d98-8c64-21373ae4358d)
)
(wire (pts (xy 191.135 67.945) (xy 197.485 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64a5c541-030e-4ccd-ba9f-157f47f2c775)
)
(wire (pts (xy 210.185 47.625) (xy 222.885 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67b45b3d-0e0e-4a7a-be8c-b7d6fc8660f1)
)
(wire (pts (xy 191.135 60.325) (xy 191.135 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f95d951-8436-43ee-985d-3e1d8242e4df)
)
(wire (pts (xy 191.135 62.865) (xy 197.485 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7083f176-02b2-4d81-865d-78431374d791)
)
(wire (pts (xy 171.196 104.14) (xy 172.72 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75a43b93-95a6-46d5-9697-ce063884088c)
)
(wire (pts (xy 186.055 42.545) (xy 186.055 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80ca3e2c-9ab1-4498-b57d-7eace9b6f573)
)
(wire (pts (xy 191.135 52.705) (xy 191.135 55.245))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83278a79-368d-4b00-bb62-b97c1bf16e10)
)
(wire (pts (xy 217.805 52.705) (xy 217.805 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83ab1289-86af-4d17-a27a-c57396155b84)
)
(wire (pts (xy 186.055 36.195) (xy 186.055 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 859b0947-ef0a-47e4-baa2-25eb2eae4299)
)
(wire (pts (xy 171.196 106.68) (xy 172.72 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87039368-299a-4e20-8ed3-9f5180e5d762)
)
(wire (pts (xy 191.135 65.405) (xy 197.485 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87de70a0-6f26-45b8-bc2a-ff1a60c67b5b)
)
(wire (pts (xy 210.185 45.085) (xy 217.805 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a0f20ca-6e88-4f5e-9efb-9894a78a6642)
)
(wire (pts (xy 191.135 55.245) (xy 191.135 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cec7e95-85c1-49c8-a892-56f25fb5e063)
)
(wire (pts (xy 217.805 57.785) (xy 217.805 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ec904d5-9903-403c-9f66-e72efaf09758)
)
(wire (pts (xy 210.185 40.005) (xy 222.885 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91317401-672d-47d5-a509-54b1f2cd72e6)
)
(wire (pts (xy 191.135 57.785) (xy 197.485 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 937cd968-5824-4d39-893c-e7eee6429765)
)
(wire (pts (xy 222.885 47.625) (xy 222.885 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9540c0d9-6fae-4b60-90b7-9538416664f2)
)
(wire (pts (xy 217.805 75.565) (xy 217.805 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 956aedb4-5363-4f33-9921-2364625b44e0)
)
(wire (pts (xy 186.055 73.025) (xy 197.485 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99bec620-9ce3-4dc3-b584-1a3ec84c6f22)
)
(wire (pts (xy 210.185 75.565) (xy 217.805 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a574bb72-8fff-489b-98f6-5fcb8677a361)
)
(wire (pts (xy 157.48 104.14) (xy 158.496 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7df760b-77d7-4d94-8968-fa215bcad841)
)
(wire (pts (xy 191.135 60.325) (xy 197.485 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa39afbe-59b6-4ff1-a5c7-e9aa23765980)
)
(wire (pts (xy 197.485 75.565) (xy 186.055 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b270af75-a05e-439d-960f-d9a0aaa8697b)
)
(wire (pts (xy 197.485 45.085) (xy 191.135 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3eace1a-8e3b-4ab2-9e5a-cfb096644465)
)
(wire (pts (xy 28.575 41.275) (xy 28.575 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5f2fe38-d948-452d-ad78-b4a81a6018e6)
)
(wire (pts (xy 210.185 60.325) (xy 223.52 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be8836e7-7d50-4469-9f1d-bbba41a6aeae)
)
(wire (pts (xy 217.805 67.945) (xy 217.805 70.485))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf81a6a4-1341-4136-9318-de27950e3875)
)
(wire (pts (xy 210.185 42.545) (xy 222.885 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c654ba7a-4339-4359-9f04-7edf7dae310f)
)
(wire (pts (xy 191.135 50.165) (xy 197.485 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9e6388e-4713-4e10-9afb-872c5bde531c)
)
(wire (pts (xy 191.135 67.945) (xy 191.135 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb8b56f1-97cb-4849-a0a2-5bb1688214dc)
)
(wire (pts (xy 210.185 62.865) (xy 223.52 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc861ce3-d544-498d-a7a4-6ac460b3573d)
)
(wire (pts (xy 157.48 99.06) (xy 158.496 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfbe4664-0e88-4031-bfbc-1d7b4a041034)
)
(wire (pts (xy 191.135 52.705) (xy 197.485 52.705))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d838f757-590a-4fa3-8bcd-2f64ea9b3654)
)
(wire (pts (xy 186.055 73.025) (xy 186.055 70.485))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8b07142-02ba-4a6f-80ef-1d7de515de50)
)
(wire (pts (xy 217.805 45.085) (xy 217.805 52.705))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dbf78c33-48df-4a5c-8aa0-36d454da30d3)
)
(wire (pts (xy 222.885 40.005) (xy 222.885 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc6ecbf1-36b4-4709-93dc-f1cadcc1be66)
)
(wire (pts (xy 210.185 55.245) (xy 222.885 55.245))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9b48fa5-cde0-4e05-a40c-dfeb25f5dacb)
)
(wire (pts (xy 210.185 57.785) (xy 217.805 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea5d45e8-996b-40f8-b7b9-2c3b46a91d95)
)
(wire (pts (xy 210.185 52.705) (xy 217.805 52.705))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea9995ad-265a-4c12-9fcb-31b37648994f)
)
(wire (pts (xy 222.885 50.165) (xy 222.885 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef0f473a-aa49-4a7f-9490-416cac6f154b)
)
(wire (pts (xy 28.575 57.15) (xy 28.575 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f18aaece-8bf3-4641-99ba-7d9705c7f91f)
)
(wire (pts (xy 171.196 99.06) (xy 172.974 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f49c32a4-c8f1-4b12-a0cc-2502908b6264)
)
(wire (pts (xy 186.055 70.485) (xy 197.485 70.485))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4c6ef0b-530c-4fb7-b0b1-5220f7e6fb11)
)
(wire (pts (xy 191.135 55.245) (xy 197.485 55.245))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe321e56-d054-43a2-a64f-f6851940a1fe)
)
(label "sda" (at 223.52 62.865 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 13908d30-6f57-458d-a677-a14c2d067458)
)
(label "ptt" (at 157.734 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 246a3686-c2bc-4094-953b-3b6dbba552fe)
)
(label "sda" (at 157.48 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2ac63204-e171-4cc8-ac83-5a178fcac80f)
)
(label "scl" (at 157.48 101.6 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3ca57441-3bc0-44ae-8d70-ce4fc64afd95)
)
(label "scl" (at 223.52 60.325 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ebcda845-c52c-4790-81da-11497ab76142)
)
(symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 163.576 101.6 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0210ffdc-6fe5-4e98-8ed4-8ac8f13b861a)
(property "Reference" "J3" (id 0) (at 164.846 91.5502 0))
(property "Value" "Telemetry" (id 1) (at 164.846 94.0871 0))
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (id 2) (at 163.576 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 163.576 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 34e7845c-d985-4126-97c4-f3a1c527e035))
(pin "10" (uuid 3876f02b-dcbd-4cfe-b4b4-1ce6304608d9))
(pin "2" (uuid 6d129960-8260-476c-b40c-c7450f64895c))
(pin "3" (uuid f3c4c1f0-0a39-46a9-929c-857f471a22b8))
(pin "4" (uuid e573138a-88b1-4ed0-bbd8-63ec17cb7ed1))
(pin "5" (uuid 76931930-4128-4d0d-8469-60dfce224fb7))
(pin "6" (uuid 668bdfbe-ceba-4b66-b7d4-f00d3d42bfbf))
(pin "7" (uuid a2aa7125-eaf1-4259-a5ff-c91c1fd0d519))
(pin "8" (uuid a12d2024-cdfb-4749-972e-f814e8017d86))
(pin "9" (uuid 393c417c-1759-4150-abcb-c37c78bc28fd))
)
(symbol (lib_id "power:GND") (at 217.805 78.105 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 10f30af7-156a-4fab-862e-c0883bda6b56)
(property "Reference" "#PWR010" (id 0) (at 217.805 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 217.805 82.5484 0))
(property "Footprint" "" (id 2) (at 217.805 78.105 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 217.805 78.105 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a2e95ceb-9c90-49a4-93c2-0147ae8dac5c))
)
(symbol (lib_id "power:+28V") (at 222.885 36.195 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1444efe3-3c7a-4f60-9ff4-8aa2b60435a0)
(property "Reference" "#PWR02" (id 0) (at 222.885 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+28V" (id 1) (at 222.885 32.6192 0))
(property "Footprint" "" (id 2) (at 229.235 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 229.235 34.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 896d0e80-eca1-4e8b-9ba3-e9ebcbd32370))
)
(symbol (lib_id "power:+28V") (at 172.72 96.52 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)