-
Notifications
You must be signed in to change notification settings - Fork 0
/
Genna.kicad_sch-bak
1539 lines (1516 loc) · 63 KB
/
Genna.kicad_sch-bak
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 596fc7f5-6db6-4f21-98dc-6a6c01eea661)
(paper "A4")
(lib_symbols
(symbol "Connector:USB_A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -5.08 11.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "USB_A" (id 1) (at -5.08 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" " ~" (id 3) (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector USB" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "USB Type A connector" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "USB*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB_A_0_1"
(rectangle (start -5.08 -7.62) (end 5.08 7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center -3.81 2.159) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.524 4.826) (end -4.318 5.334)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.27 4.572) (end -4.572 5.842)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -0.635 3.429) (radius 0.381)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -0.127 -7.62) (end 0.127 -6.858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.175 2.159)
(xy -2.54 2.159)
(xy -1.27 3.429)
(xy -0.635 3.429)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.159)
(xy -1.905 2.159)
(xy -1.27 0.889)
(xy 0 0.889)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 2.794)
(xy 0.635 1.524)
(xy 1.905 2.159)
(xy 0.635 2.794)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.254 1.27) (end -0.508 0.508)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 5.08 -2.667) (end 4.318 -2.413)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 -0.127) (end 4.318 0.127)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 4.953) (end 4.318 5.207)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "USB_A_1_1"
(polyline
(pts
(xy -1.905 2.159)
(xy 0.635 2.159)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin power_in line (at 7.62 5.08 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 -2.54 180) (length 2.54)
(name "D-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 0 180) (length 2.54)
(name "D+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -10.16 90) (length 2.54)
(name "Shield" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x09" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x09" (id 1) (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x09_1_1"
(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 11.43) (end 1.27 -11.43)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 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 5.08 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 2.54 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 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 -5.08 -2.54 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 -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 -5.08 -7.62 0) (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 -10.16 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCU_Microchip_ATmega:ATmega32U4-M" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -12.7 44.45 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "ATmega32U4-M" (id 1) (at 2.54 -44.45 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Package_DFN_QFN:QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-7766-8-bit-AVR-ATmega16U4-32U4_Datasheet.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "AVR 8bit Microcontroller MegaAVR USB" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "16MHz, 32kB Flash, 2.5kB SRAM, 1kB EEPROM, USB 2.0, QFN-44" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "QFN*1EP*7x7mm*P0.5mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ATmega32U4-M_0_1"
(rectangle (start -12.7 -43.18) (end 12.7 43.18)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "ATmega32U4-M_1_1"
(pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
(name "PE6" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 33.02 180) (length 2.54)
(name "PB2" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 30.48 180) (length 2.54)
(name "PB3" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 20.32 180) (length 2.54)
(name "PB7" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 38.1 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 45.72 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -45.72 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 27.94 0) (length 2.54)
(name "XTAL2" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 33.02 0) (length 2.54)
(name "XTAL1" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 2.54)
(name "PD0" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 2.54)
(name "PD1" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 45.72 270) (length 2.54)
(name "UVCC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 2.54)
(name "PD2" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "PD3" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "PD5" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -45.72 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 45.72 270) (length 2.54)
(name "AVCC" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "PD4" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "PD6" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
(name "PD7" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 27.94 180) (length 2.54)
(name "PB4" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 25.4 180) (length 2.54)
(name "PB5" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 10.16 0) (length 2.54)
(name "D-" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 22.86 180) (length 2.54)
(name "PB6" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 15.24 180) (length 2.54)
(name "PC6" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 12.7 180) (length 2.54)
(name "PC7" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
(name "~{HWB}/PE2" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 45.72 270) (length 2.54) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -45.72 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -35.56 180) (length 2.54)
(name "PF7" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -33.02 180) (length 2.54)
(name "PF6" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -30.48 180) (length 2.54)
(name "PF5" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -27.94 180) (length 2.54)
(name "PF4" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 12.7 0) (length 2.54)
(name "D+" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -25.4 180) (length 2.54)
(name "PF1" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -22.86 180) (length 2.54)
(name "PF0" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -15.24 22.86 0) (length 2.54)
(name "AREF" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -45.72 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 45.72 270) (length 2.54) hide
(name "AVCC" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -45.72 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -45.72 90) (length 2.54)
(name "UGND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -15.24 5.08 0) (length 2.54)
(name "UCAP" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 17.78 0) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 38.1 180) (length 2.54)
(name "PB0" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 35.56 180) (length 2.54)
(name "PB1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (id 1) (at 0 3.556 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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (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))))
)
)
)
)
(junction (at 152.4 33.02) (diameter 0) (color 0 0 0 0)
(uuid 2e5328bc-dea8-4069-b0d8-658c87d8f853)
)
(junction (at 168.91 134.62) (diameter 0) (color 0 0 0 0)
(uuid 398b28c0-640e-40f2-9284-111fdbbf31f1)
)
(junction (at 138.43 134.62) (diameter 0) (color 0 0 0 0)
(uuid 7932420a-0308-476f-aacb-cc8f10ec7898)
)
(junction (at 149.86 33.02) (diameter 0) (color 0 0 0 0)
(uuid 8bd9bab7-3caa-441f-874b-3d38d17ae2f5)
)
(junction (at 154.94 33.02) (diameter 0) (color 0 0 0 0)
(uuid 9b8c649c-3ca8-45b1-a111-425547aed2f8)
)
(junction (at 153.67 134.62) (diameter 0) (color 0 0 0 0)
(uuid 9de64233-5246-4f58-ae82-04aa4045899b)
)
(junction (at 144.78 33.02) (diameter 0) (color 0 0 0 0)
(uuid ad6b913d-647d-445c-8de2-e8e21103ca76)
)
(junction (at 144.78 63.5) (diameter 0) (color 0 0 0 0)
(uuid b0bd52a2-2909-43ed-890f-3ab302bf3a73)
)
(junction (at 171.45 38.1) (diameter 0) (color 0 0 0 0)
(uuid cb1e7a61-c924-43e0-aada-1ce0fecf5402)
)
(junction (at 154.94 48.26) (diameter 0) (color 0 0 0 0)
(uuid d8ee3adf-1706-44cd-b226-4a384233fc21)
)
(no_connect (at 156.21 58.42) (uuid 30dbd10d-887c-4544-86a7-fb0702c66056))
(no_connect (at 156.21 53.34) (uuid 30dbd10d-887c-4544-86a7-fb0702c66056))
(no_connect (at 120.65 48.26) (uuid 4bf39b0f-5ce0-441f-a96f-de5e8dc64320))
(no_connect (at 186.69 114.3) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 116.84) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 96.52) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 111.76) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 101.6) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 104.14) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 109.22) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 88.9) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 91.44) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 71.12) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 48.26) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(no_connect (at 186.69 58.42) (uuid eff7a51d-5e03-41c7-a1ad-8c9cc9c4209d))
(wire (pts (xy 168.91 40.64) (xy 168.91 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0076bb09-6335-4e23-89e8-30e52d35d256)
)
(wire (pts (xy 214.63 64.77) (xy 214.63 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 057df75d-4991-4bfb-9df9-a5d432a67df1)
)
(wire (pts (xy 149.86 39.37) (xy 149.86 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 098f11a1-9a00-4da2-80d8-c32ea63ad2d1)
)
(wire (pts (xy 214.63 46.99) (xy 215.9 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1012fb9b-afa9-4564-9c9f-0570167045d4)
)
(wire (pts (xy 154.94 33.02) (xy 171.45 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12d25bad-730b-40e9-96ad-d2e9d937d379)
)
(wire (pts (xy 123.19 48.26) (xy 123.19 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 136344ab-4404-4e43-9074-c7dfa87f4964)
)
(wire (pts (xy 144.78 63.5) (xy 144.78 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 136a64c7-9db7-493d-8086-9c269a3ab218)
)
(wire (pts (xy 168.91 134.62) (xy 168.91 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13fc11ec-4864-4cb7-9548-dcdba24823d7)
)
(wire (pts (xy 186.69 83.82) (xy 187.96 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d7c23f5-1f2b-4700-a067-44b097b62d20)
)
(wire (pts (xy 138.43 73.66) (xy 156.21 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25230264-ba10-4d99-a90b-48b7332b193d)
)
(wire (pts (xy 214.63 72.39) (xy 215.9 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29f04e3c-9055-44f7-8781-0c5a6f58bbfa)
)
(wire (pts (xy 171.45 38.1) (xy 171.45 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3088de8c-541d-4807-ab10-085431eb89f4)
)
(wire (pts (xy 135.89 40.64) (xy 135.89 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3157aee2-ac3f-4116-b390-45c3683f727a)
)
(wire (pts (xy 138.43 137.16) (xy 138.43 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3254d3b7-13dc-4b33-b149-e7afc1cc8b0a)
)
(wire (pts (xy 138.43 60.96) (xy 138.43 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34b9395d-5a57-4539-b7d8-bde78a7c0184)
)
(wire (pts (xy 173.99 38.1) (xy 171.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 368ec31e-0915-4d69-82de-59da4b8ce54f)
)
(wire (pts (xy 186.69 53.34) (xy 187.96 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36dd2293-e536-41d2-b592-5d5099f89c00)
)
(wire (pts (xy 214.63 85.09) (xy 215.9 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ed36b56-54b3-474f-a924-ff188a589133)
)
(wire (pts (xy 135.89 76.2) (xy 156.21 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 443f7e21-99cd-4656-9684-ab27039c5a92)
)
(wire (pts (xy 154.94 33.02) (xy 154.94 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 494b5893-a65c-4e67-9eb2-d857b22c6e59)
)
(wire (pts (xy 214.63 80.01) (xy 215.9 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ab80233-e4c7-4c4c-83f8-a8663766bddb)
)
(wire (pts (xy 205.74 67.31) (xy 205.74 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b180729-2b36-45b6-9ebe-04cb93e785a1)
)
(wire (pts (xy 153.67 48.26) (xy 154.94 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c722147-6ab0-4bcf-9ae0-c3358f14e525)
)
(wire (pts (xy 214.63 69.85) (xy 215.9 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50b9c4f4-d839-4a5b-9990-8360cbf85e71)
)
(wire (pts (xy 123.19 134.62) (xy 138.43 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5268568b-94c5-4fab-9e1a-ce7cb4406e75)
)
(wire (pts (xy 130.81 40.64) (xy 135.89 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bb86f07-ffbf-4d96-9dd9-8ec4f19d3929)
)
(wire (pts (xy 186.69 73.66) (xy 187.96 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d5a125f-5a05-47fa-a407-4bff212249ea)
)
(wire (pts (xy 214.63 74.93) (xy 215.9 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d5ed6cf-dbd2-4e87-961d-d9d80dae8279)
)
(wire (pts (xy 186.69 55.88) (xy 187.96 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ed9e392-f785-44ee-a852-8f33dd75a8ad)
)
(wire (pts (xy 153.67 134.62) (xy 168.91 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62fb8f30-9ed8-4ae7-b9db-a013c86e0040)
)
(wire (pts (xy 144.78 33.02) (xy 149.86 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66c5a7f9-f853-4df0-99a2-d2de5c1563c4)
)
(wire (pts (xy 130.81 33.02) (xy 144.78 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 673851bf-754e-42f9-bbc6-7b58a1cbc952)
)
(wire (pts (xy 186.69 119.38) (xy 187.96 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 683af44d-0ce8-4fa7-af2e-d7f568cdd1f1)
)
(wire (pts (xy 214.63 39.37) (xy 215.9 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 692defd6-b420-4eaf-b6f0-03fb3398ea71)
)
(wire (pts (xy 186.69 63.5) (xy 187.96 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ef74fba-97c3-4cdf-90cd-ffab5490a717)
)
(wire (pts (xy 173.99 40.64) (xy 173.99 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73f9ce3b-0a70-4e4c-bd66-6cfe29e6db9b)
)
(wire (pts (xy 138.43 134.62) (xy 153.67 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 764269fd-bd49-48a3-a98b-c29ed21e8d8d)
)
(wire (pts (xy 144.78 63.5) (xy 156.21 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78eae28b-1b52-4452-ba0d-839ea87cfe0f)
)
(wire (pts (xy 186.69 60.96) (xy 187.96 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79579f27-bc9d-4ddc-aba5-c9512db62abb)
)
(wire (pts (xy 152.4 30.48) (xy 152.4 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b3360fa-1540-4bec-a347-249f0ab6dc9a)
)
(wire (pts (xy 156.21 48.26) (xy 154.94 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cfb3913-f414-4fc7-9ab7-3ac3ffa4ab3a)
)
(wire (pts (xy 153.67 88.9) (xy 153.67 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ad95738-b984-47c6-8488-610a24daae5e)
)
(wire (pts (xy 214.63 82.55) (xy 215.9 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9291bebf-da9a-4448-9224-11f032a3bbfa)
)
(wire (pts (xy 186.69 93.98) (xy 187.96 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 952c4afe-ffd2-406a-a985-46d5b12c0392)
)
(wire (pts (xy 186.69 86.36) (xy 187.96 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98983d2b-6bc8-4c52-8b8b-3b34505b5492)
)
(wire (pts (xy 214.63 34.29) (xy 215.9 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2801c3d-83ca-45a2-a36e-ec09f52b2fc0)
)
(wire (pts (xy 214.63 52.07) (xy 215.9 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a313b0eb-4bad-4022-b976-ee02d573368c)
)
(wire (pts (xy 186.69 121.92) (xy 187.96 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3a734c9-dada-459f-ad2f-36945a92b29d)
)
(wire (pts (xy 214.63 41.91) (xy 215.9 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad016df1-cb6d-451c-9d16-95edabef345a)
)
(wire (pts (xy 153.67 83.82) (xy 153.67 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aee8fbcc-47b7-4933-867f-f01c070df488)
)
(wire (pts (xy 171.45 132.08) (xy 171.45 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aef5553f-8067-468f-a668-cbcba730a4c6)
)
(wire (pts (xy 149.86 33.02) (xy 149.86 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b07d5146-dd98-49b5-97a1-bb87ed994523)
)
(wire (pts (xy 186.69 78.74) (xy 187.96 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2d0086a-6efc-42a2-9723-ba7d03c60ac2)
)
(wire (pts (xy 168.91 38.1) (xy 171.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9a1e666-6a7a-4078-8264-83cd25f78fb6)
)
(wire (pts (xy 135.89 67.31) (xy 135.89 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9ccba0e-6e02-424c-a7c3-54ca3dfe17c3)
)
(wire (pts (xy 186.69 50.8) (xy 187.96 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bea0a494-e601-4794-9308-d91425784e0a)
)
(wire (pts (xy 130.81 38.1) (xy 138.43 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1216934-2156-4fb8-9d09-50e47058e28d)
)
(wire (pts (xy 154.94 48.26) (xy 154.94 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1f985dc-eec7-4605-a267-1fe6b06236d6)
)
(wire (pts (xy 171.45 33.02) (xy 171.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c220369c-8bec-40dc-bb4a-e733b0a5623c)
)
(wire (pts (xy 214.63 36.83) (xy 215.9 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c29ddae4-ce71-4e54-8c9b-bedac0ba7aef)
)
(wire (pts (xy 138.43 38.1) (xy 138.43 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c49547aa-9a91-4127-8542-87607576b138)
)
(wire (pts (xy 215.9 64.77) (xy 214.63 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid caedbb4a-0be8-48f7-b9ee-8dd883d60747)
)
(wire (pts (xy 214.63 49.53) (xy 215.9 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d056d66c-7517-423b-b91c-22af3ea16d30)
)
(wire (pts (xy 214.63 77.47) (xy 215.9 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc9b29d2-de64-4e58-b145-c4c8047e0f58)
)
(wire (pts (xy 171.45 134.62) (xy 168.91 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2af60e7-c42e-4988-bae3-1ad0c285a6fb)
)
(wire (pts (xy 186.69 66.04) (xy 187.96 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e3459b35-a6dc-4e99-8a73-f0eaca2cc81f)
)
(wire (pts (xy 152.4 33.02) (xy 154.94 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4ccff06-1df7-43c5-8498-7b8086b1949f)
)
(wire (pts (xy 186.69 81.28) (xy 187.96 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eecef2d6-17da-4c09-9ccb-1476cd21cefa)
)
(wire (pts (xy 215.9 67.31) (xy 205.74 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef5edb34-bfd9-414e-ade3-6c5b70d43e19)
)
(wire (pts (xy 156.21 68.58) (xy 144.78 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f2daa8cb-067a-4c16-bfca-0a281444b4eb)
)
(wire (pts (xy 144.78 68.58) (xy 144.78 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa42520a-8941-4f43-a80d-7bdd09780195)
)
(wire (pts (xy 214.63 44.45) (xy 215.9 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa6e534f-8e40-4e23-92a4-c8481760b39a)
)
(wire (pts (xy 149.86 33.02) (xy 152.4 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe8f9b7e-2890-4c83-af2d-535c233a6e7e)
)
(wire (pts (xy 153.67 81.28) (xy 156.21 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff5271fe-1557-4c21-b44d-0b1e3ee51dff)
)
(global_label "1{slash}TX" (shape input) (at 187.96 86.36 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 04cf5fb6-c25b-40d9-b43b-a0ddb017369c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.0902 86.2806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "10" (shape input) (at 187.96 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0a84af2f-66bb-4e27-aadb-6e1d2565f9b6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.7921 63.4206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "MOSI" (shape input) (at 214.63 39.37 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0dd42163-797b-4503-85d1-71022ff0ba14)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 207.6207 39.2906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "MOSI" (shape input) (at 187.96 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 15fde2ac-0c57-4b81-94c8-7e96bc375add)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 194.9693 53.2606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)