-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcvtnithm.kicad_sch
1133 lines (1119 loc) · 43.5 KB
/
cvtnithm.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 0c86fb04-e2de-4e07-9c3d-a64bac73b664)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x04_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Pin" (at 0 -7.62 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_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Pin_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 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 180) (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 5.08 -5.08 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (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" (at 1.27 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 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" "connector" (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/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (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))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default))
(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_02x07_Top_Bottom" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x07_Top_Bottom" (at 1.27 -10.16 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x07, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x07_Top_Bottom_1_1"
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 8.89) (end 3.81 -8.89)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 7.62 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 2.54 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 0 180) (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 -2.54 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 7.62 -5.08 180) (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 -7.62 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 5.08 0) (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 -5.08 0 0) (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 -2.54 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 -5.08 -5.08 0) (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 -7.62 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 7.62 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 7.62 5.08 180) (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_02x11_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x11_Odd_Even" (at 1.27 -15.24 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x11, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x11_Odd_Even_1_1"
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 13.97) (end 3.81 -13.97)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -12.573) (end 2.54 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -10.033) (end 2.54 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 10.287) (end 2.54 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 12.827) (end 2.54 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 12.7 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 2.54 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 0 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 0 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 -5.08 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 -5.08 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 -7.62 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 -7.62 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 -10.16 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 12.7 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 -10.16 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 -12.7 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 -12.7 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_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 10.16 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 7.62 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 7.62 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 5.08 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 5.08 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 2.54 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 124.46 74.93) (diameter 0) (color 0 0 0 0)
(uuid 19beb144-d69f-4480-bbd1-2372cb3e7cb5)
)
(junction (at 163.83 71.12) (diameter 0) (color 0 0 0 0)
(uuid 620bcfcd-1098-468e-a4b5-5c5afb54eec7)
)
(junction (at 138.43 73.66) (diameter 0) (color 0 0 0 0)
(uuid 688f1bb2-5460-4947-9cad-f6963f102723)
)
(junction (at 138.43 68.58) (diameter 0) (color 0 0 0 0)
(uuid 8753acd3-c62c-4abc-8fc4-18e2c56e38c5)
)
(junction (at 124.46 62.23) (diameter 0) (color 0 0 0 0)
(uuid c259aefc-9ada-4dfb-92e0-b689b9d5e549)
)
(junction (at 163.83 63.5) (diameter 0) (color 0 0 0 0)
(uuid ccb9915d-e72a-4b51-8265-eda9f51441cb)
)
(junction (at 138.43 71.12) (diameter 0) (color 0 0 0 0)
(uuid e62b8f21-e772-4817-96fc-ad93f7d9d4eb)
)
(junction (at 138.43 66.04) (diameter 0) (color 0 0 0 0)
(uuid ed91c95a-390d-4360-885f-517cae1340f0)
)
(wire (pts (xy 157.48 68.58) (xy 163.83 68.58))
(stroke (width 0) (type default))
(uuid 01863129-619c-40ab-87fa-a4126d3237df)
)
(wire (pts (xy 111.76 64.77) (xy 118.11 64.77))
(stroke (width 0) (type default))
(uuid 05a6d73e-98e2-4df0-8dd8-e32246e5c2ea)
)
(wire (pts (xy 111.76 59.69) (xy 124.46 59.69))
(stroke (width 0) (type default))
(uuid 232bda50-58fa-4698-ae12-ebb201929332)
)
(wire (pts (xy 138.43 71.12) (xy 138.43 73.66))
(stroke (width 0) (type default))
(uuid 25712424-4f9f-462b-afd2-c0aebc276633)
)
(wire (pts (xy 220.98 137.16) (xy 227.33 137.16))
(stroke (width 0) (type default))
(uuid 34de25f3-fb66-477b-a97e-a62e43ed2453)
)
(wire (pts (xy 111.76 57.15) (xy 118.11 57.15))
(stroke (width 0) (type default))
(uuid 3bd44c54-fd9c-4642-8fc6-8efea07a2c46)
)
(wire (pts (xy 157.48 66.04) (xy 163.83 66.04))
(stroke (width 0) (type default))
(uuid 4378abc8-5db3-4963-9052-9ce48264e63f)
)
(wire (pts (xy 111.76 62.23) (xy 124.46 62.23))
(stroke (width 0) (type default))
(uuid 4451680f-9654-4ffa-ae79-071861b17e91)
)
(wire (pts (xy 220.98 119.38) (xy 227.33 119.38))
(stroke (width 0) (type default))
(uuid 46c8e451-27a1-4fc6-9153-8fcc2e830471)
)
(wire (pts (xy 124.46 77.47) (xy 124.46 74.93))
(stroke (width 0) (type default))
(uuid 46e07a84-51d8-4e0d-807b-99855afb48be)
)
(wire (pts (xy 201.93 119.38) (xy 208.28 119.38))
(stroke (width 0) (type default))
(uuid 4c8e83db-0ccf-4c5b-ae3f-1dbad4f5e9b2)
)
(wire (pts (xy 138.43 73.66) (xy 138.43 76.2))
(stroke (width 0) (type default))
(uuid 4ebd1bf4-50e4-457e-9c97-4410260570af)
)
(wire (pts (xy 111.76 72.39) (xy 118.11 72.39))
(stroke (width 0) (type default))
(uuid 51e0ee44-bb32-4d65-a036-501ab4c4e75e)
)
(wire (pts (xy 152.4 138.43) (xy 158.75 138.43))
(stroke (width 0) (type default))
(uuid 5309521f-9433-47e6-b0d8-7bbfb05f93c9)
)
(wire (pts (xy 138.43 73.66) (xy 144.78 73.66))
(stroke (width 0) (type default))
(uuid 54796604-b2e0-4d4c-a620-ccb7ff170ad4)
)
(wire (pts (xy 171.45 114.3) (xy 177.8 114.3))
(stroke (width 0) (type default))
(uuid 5caf6dbd-7d66-4e0c-8349-5c81d2d1f1f2)
)
(wire (pts (xy 171.45 133.35) (xy 177.8 133.35))
(stroke (width 0) (type default))
(uuid 5d573db8-d6a6-42f2-b6e7-cd216e0fe5f4)
)
(wire (pts (xy 111.76 74.93) (xy 124.46 74.93))
(stroke (width 0) (type default))
(uuid 5e5e1368-5251-473d-b0e5-2f1a6b9ae96c)
)
(wire (pts (xy 152.4 157.48) (xy 158.75 157.48))
(stroke (width 0) (type default))
(uuid 65a12185-7269-4513-b5ad-b5f0a862d439)
)
(wire (pts (xy 163.83 60.96) (xy 163.83 63.5))
(stroke (width 0) (type default))
(uuid 675d3697-8546-41bc-a215-44178afb8ec8)
)
(wire (pts (xy 163.83 68.58) (xy 163.83 71.12))
(stroke (width 0) (type default))
(uuid 6a89638f-06e4-4623-873f-73a113853a40)
)
(wire (pts (xy 171.45 152.4) (xy 177.8 152.4))
(stroke (width 0) (type default))
(uuid 762f1ff4-6d83-4f2a-98ad-4617f7158b21)
)
(wire (pts (xy 152.4 135.89) (xy 158.75 135.89))
(stroke (width 0) (type default))
(uuid 7d82b350-4f58-452e-92fa-b725336b328b)
)
(wire (pts (xy 163.83 63.5) (xy 163.83 66.04))
(stroke (width 0) (type default))
(uuid 7dfc354e-44a2-4e05-9991-bb5faffa67fe)
)
(wire (pts (xy 201.93 124.46) (xy 208.28 124.46))
(stroke (width 0) (type default))
(uuid 7e60028c-d7ad-4938-8341-9f71783ae7c8)
)
(wire (pts (xy 220.98 116.84) (xy 227.33 116.84))
(stroke (width 0) (type default))
(uuid 933eb8e1-1bea-441a-bab4-d4cbc8f3c035)
)
(wire (pts (xy 201.93 137.16) (xy 208.28 137.16))
(stroke (width 0) (type default))
(uuid 9de07deb-8a9c-4977-9aa3-90b54349c3a6)
)
(wire (pts (xy 201.93 116.84) (xy 208.28 116.84))
(stroke (width 0) (type default))
(uuid 9ebfd707-7de1-4441-a0b5-ba82410578ef)
)
(wire (pts (xy 157.48 71.12) (xy 163.83 71.12))
(stroke (width 0) (type default))
(uuid a0898155-2822-47c9-8a74-38b1885a921d)
)
(wire (pts (xy 138.43 66.04) (xy 138.43 68.58))
(stroke (width 0) (type default))
(uuid ac3b376a-be19-4bc7-98e6-ee792444a4d4)
)
(wire (pts (xy 111.76 77.47) (xy 124.46 77.47))
(stroke (width 0) (type default))
(uuid ad28c08c-16a7-4210-814f-8d7b49cde927)
)
(wire (pts (xy 138.43 68.58) (xy 138.43 71.12))
(stroke (width 0) (type default))
(uuid b8ca490a-a6c5-4a66-b389-9d4421982209)
)
(wire (pts (xy 138.43 71.12) (xy 144.78 71.12))
(stroke (width 0) (type default))
(uuid bb32f48d-d5df-47a8-8fed-95305aa20fb6)
)
(wire (pts (xy 220.98 124.46) (xy 227.33 124.46))
(stroke (width 0) (type default))
(uuid bb42176e-a774-4953-a7d4-63727e8c1bd8)
)
(wire (pts (xy 152.4 119.38) (xy 158.75 119.38))
(stroke (width 0) (type default))
(uuid bccea1ee-c859-4c5a-8325-cc1a56697b7d)
)
(wire (pts (xy 163.83 73.66) (xy 157.48 73.66))
(stroke (width 0) (type default))
(uuid bf535316-625d-4eb5-ac0b-9d3c1b1237bf)
)
(wire (pts (xy 220.98 139.7) (xy 227.33 139.7))
(stroke (width 0) (type default))
(uuid c615756f-fff4-41a8-9ab3-8dca372ee50d)
)
(wire (pts (xy 152.4 154.94) (xy 158.75 154.94))
(stroke (width 0) (type default))
(uuid cdfe22bf-205c-42d5-a39e-6c45f18b9756)
)
(wire (pts (xy 111.76 80.01) (xy 118.11 80.01))
(stroke (width 0) (type default))
(uuid cfcfd469-1341-4102-a083-6c48e8fa876c)
)
(wire (pts (xy 124.46 59.69) (xy 124.46 62.23))
(stroke (width 0) (type default))
(uuid d3886935-ba7e-4251-a847-aaab701d2bc0)
)
(wire (pts (xy 124.46 62.23) (xy 124.46 74.93))
(stroke (width 0) (type default))
(uuid d3f40fed-e73c-4135-9b09-16e3d3049b51)
)
(wire (pts (xy 157.48 63.5) (xy 163.83 63.5))
(stroke (width 0) (type default))
(uuid d79d1c52-4a17-448a-9fa0-2cc81122dee4)
)
(wire (pts (xy 138.43 66.04) (xy 144.78 66.04))
(stroke (width 0) (type default))
(uuid e58d8e7b-34e4-40a0-8223-23001d069edb)
)
(wire (pts (xy 144.78 63.5) (xy 138.43 63.5))
(stroke (width 0) (type default))
(uuid e9b4535b-8705-42a2-8c68-a3589de2976b)
)
(wire (pts (xy 138.43 68.58) (xy 144.78 68.58))
(stroke (width 0) (type default))
(uuid ec94166a-435c-47fe-9e8d-c9b543992c78)
)
(wire (pts (xy 138.43 76.2) (xy 144.78 76.2))
(stroke (width 0) (type default))
(uuid ed4ba392-6552-48da-826f-b435aedf745f)
)
(wire (pts (xy 163.83 71.12) (xy 163.83 73.66))
(stroke (width 0) (type default))
(uuid f0e5b201-1901-47a6-9d2e-0b63ea29a0b0)
)
(wire (pts (xy 152.4 116.84) (xy 158.75 116.84))
(stroke (width 0) (type default))
(uuid f5f95d93-327d-4562-86f9-926e76d0022a)
)
(wire (pts (xy 157.48 60.96) (xy 163.83 60.96))
(stroke (width 0) (type default))
(uuid fae77d30-5584-4140-8eb9-6f39982623c8)
)
(wire (pts (xy 138.43 63.5) (xy 138.43 66.04))
(stroke (width 0) (type default))
(uuid fefbda63-48f0-4414-b719-e32bfaacf2e2)
)
(label "UART3_GND" (at 227.33 139.7 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 09381e45-0b9b-4eda-8da9-146f3a9b289a)
)
(label "UART3_RX" (at 227.33 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0b89e677-c1f7-4757-a5c6-39ab3d30cde9)
)
(label "UART2_TX" (at 152.4 135.89 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1462f48f-9e9d-4832-9da7-22f06753ee71)
)
(label "UART2_RX" (at 201.93 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 16be9f99-dcd7-4734-908d-d92deff9c0d7)
)
(label "UART2_RX" (at 177.8 133.35 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1851f061-fc7e-40bb-a574-1989cd3fb97b)
)
(label "UART3_TX" (at 152.4 154.94 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 23815fdc-661b-4734-b45b-ed31eb499a2d)
)
(label "UART2_TX" (at 201.93 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 36d1af24-2dda-471e-b2a4-77766e3025e1)
)
(label "+5V" (at 118.11 64.77 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 68305ac0-f5e2-4282-9ea9-7d5e66493755)
)
(label "UART1_GND" (at 227.33 124.46 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6c8b7914-dc43-4772-a8a6-d7d0e43b8a09)
)
(label "GND" (at 124.46 59.69 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7a45449c-d896-4af1-9e0e-1fda1dd8278b)
)
(label "+5V" (at 118.11 80.01 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7d4dc068-0261-455c-be6d-38c85d59ee34)
)
(label "UART3_RX" (at 177.8 152.4 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8119e2e6-b973-45ea-b7fa-8431c81f0a49)
)
(label "UART1_RX" (at 227.33 116.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8716287f-aa4d-4308-be92-be0faf435577)
)
(label "GND" (at 138.43 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8e9a6cba-2e60-481e-bb65-9de16309a458)
)
(label "+12V" (at 118.11 72.39 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 96738432-40b3-4072-a647-fa006d6f3bae)
)
(label "UART2_GND" (at 152.4 138.43 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9cc6a154-f4e4-4b6e-a190-e8d1bc6c4cd3)
)
(label "UART1_RX" (at 177.8 114.3 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a006f0d5-8dc0-4d90-8216-2d5732031712)
)
(label "UART3_TX" (at 201.93 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a5a310a5-1110-46c6-a966-fff1b8515622)
)
(label "UART3_GND" (at 152.4 157.48 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b61091bd-7109-42ab-914c-565cd35eda13)
)
(label "+12V" (at 118.11 57.15 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b9ef3226-af1f-42c7-a7f2-3429621def5c)
)
(label "UART1_TX" (at 152.4 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bee45edc-9fa5-4c67-bce4-1c3008f5f682)
)
(label "UART1_GND" (at 152.4 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c4ec34e9-a87e-4859-9a45-f299a504051b)
)
(label "UART2_GND" (at 201.93 124.46 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cdebe138-5a9c-4a3e-9ca2-6876b2df3118)
)
(label "+5V" (at 163.83 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ddb5beb4-8ba5-42b9-94ad-ca9bdd1596d5)
)
(label "+12V" (at 163.83 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid de9bcd8b-e8af-409b-8222-8907de5027de)
)
(label "UART1_TX" (at 227.33 119.38 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ede25f0c-979d-4191-9941-0c6e359925e9)
)
(symbol (lib_id "Connector:Conn_01x04_Pin") (at 106.68 59.69 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0d99915f-914f-4f2e-bffd-f100910443b9)
(property "Reference" "PWR1" (at 107.315 53.34 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Pin" (at 107.315 55.88 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_TE-Connectivity:TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical" (at 106.68 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 106.68 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 83bc2c5d-789a-4621-b623-b2fd6e4e46c9))
(pin "2" (uuid 80ad4bda-90f0-4846-98e6-48efd653280d))
(pin "3" (uuid e99cc0b6-27b5-42bc-8b62-a00a5a979791))
(pin "4" (uuid 2041e1a6-bac7-472f-9c72-163344ad963e))
(instances
(project "ALLS-Adapter"
(path "/0c86fb04-e2de-4e07-9c3d-a64bac73b664"
(reference "PWR1") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_02x07_Top_Bottom") (at 149.86 68.58 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 51698099-c634-4b78-b20c-223e023c61bf)
(property "Reference" "CPWR1" (at 151.13 55.88 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x07_Top_Bottom" (at 151.13 58.42 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_Molex:Molex_Mini-Fit_Jr_5566-14A_2x07_P4.20mm_Vertical" (at 149.86 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 149.86 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid df3f02da-3848-4f08-8ed9-24fa9eb30d29))
(pin "10" (uuid 159d1768-1e95-474f-b84e-b6037351d1fc))
(pin "11" (uuid 9968fd0e-2873-4348-918e-b47305a699cc))
(pin "12" (uuid e2df57cb-0f47-4238-a820-4f47c38c937d))
(pin "13" (uuid 937e8c27-6417-4e12-9d86-410d0a23aaa7))
(pin "14" (uuid 1fe8cf94-f744-4deb-bfcc-299fc06538af))
(pin "2" (uuid 7d98b4ad-39cb-4c50-8407-940368ec6203))
(pin "3" (uuid 83ecae09-d411-4dd7-a9ad-2feae6b57771))
(pin "4" (uuid 2544789a-49fe-4fe1-8ab4-6150fe8b2f88))
(pin "5" (uuid 1475c778-bcc6-411e-b6a8-4d3a3c1daa2d))
(pin "6" (uuid 8ce1869c-f026-4eac-86b8-ad2ff42e587d))
(pin "7" (uuid 98bd0dea-762b-466a-b116-eb01975b7b32))
(pin "8" (uuid ea0bace6-819e-4260-a74e-1faccef47357))
(pin "9" (uuid 6941c23b-6135-4da1-9c56-8b7f3ae97015))
(instances
(project "ALLS-Adapter"
(path "/0c86fb04-e2de-4e07-9c3d-a64bac73b664"
(reference "CPWR1") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 163.83 138.43 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7a234508-f993-4e34-80bd-0dbb973779b2)
(property "Reference" "COM3" (at 165.1 128.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (at 165.1 130.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (at 163.83 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 25cc9b61-490a-48e5-afab-95866bfd719d))
(pin "10" (uuid 214cba30-a251-4f18-b5f9-443182db332a))
(pin "2" (uuid 9b35b180-370c-47c4-a080-f4062d7e5011))
(pin "3" (uuid 87322bb9-5916-4df1-9a9b-0a2bece49a21))
(pin "4" (uuid 0eec0e6b-6f71-42fe-9648-2c378f9bf6b1))
(pin "5" (uuid d06b9bb8-070e-43cf-b2eb-88074ed6a02b))
(pin "6" (uuid b93cd557-089e-485d-be8b-7ae138d13974))
(pin "7" (uuid 3b2b3025-ea0c-403f-b3d4-c67311aab4f2))
(pin "8" (uuid e78e7673-fdf4-469e-a4fc-f582ba4cfe7a))
(pin "9" (uuid 76134d8e-4d3b-4858-8a46-3245a28c9f6f))
(instances
(project "ALLS-Adapter"
(path "/0c86fb04-e2de-4e07-9c3d-a64bac73b664"
(reference "COM3") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_02x11_Odd_Even") (at 215.9 127 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 80b555d3-b9fb-4551-9e15-fc5121784756)
(property "Reference" "CCOM1" (at 214.63 109.22 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x11_Odd_Even" (at 214.63 111.76 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_JST:JST_XAD_B22B-XADSS-1_2x11_P2.50mm_Vertical" (at 215.9 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 215.9 127 0)