-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpedalpal.kicad_sch
1512 lines (1475 loc) · 65.2 KB
/
pedalpal.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 "User" 150.012 180.01)
(title_block
(title "PedalPal")
(date "2022-06-22")
(rev "1.0")
(company "BeiBob")
)
(lib_symbols
(symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 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, 01x02, 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_01x02_Male_1_1"
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 0 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 -2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Keebio:ProMicro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ProMicro" (id 1) (at 0 -19.05 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 26.67 -63.5 90)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 26.67 -63.5 90)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "ProMicro_0_1"
(rectangle (start -12.7 -16.51) (end 12.7 16.51)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ProMicro_1_1"
(pin input line (at -17.78 13.97 0) (length 5.08)
(name "TX0/PD3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -8.89 0) (length 5.08)
(name "7/PE6" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -11.43 0) (length 5.08)
(name "8/PB4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -13.97 0) (length 5.08)
(name "9/PB5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -13.97 180) (length 5.08)
(name "10/PB6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -11.43 180) (length 5.08)
(name "16/PB2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -8.89 180) (length 5.08)
(name "14/PB3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -6.35 180) (length 5.08)
(name "15/PB1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -3.81 180) (length 5.08)
(name "A0/PF7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -1.27 180) (length 5.08)
(name "A1/PF6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 1.27 180) (length 5.08)
(name "A2/PF5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 11.43 0) (length 5.08)
(name "RX1/PD2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 3.81 180) (length 5.08)
(name "A3/PF4" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 3.81 0) (length 5.08)
(name "2/PD1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 1.27 0) (length 5.08)
(name "3/PD0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -1.27 0) (length 5.08)
(name "4/PD4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -3.81 0) (length 5.08)
(name "5/PC6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -6.35 0) (length 5.08)
(name "6/PD7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Keebio:TRRS" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 15.24 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TRRS" (id 1) (at 0 -2.54 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 3.81 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 3.81 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "TRRS_0_1"
(rectangle (start -3.81 0) (end -3.81 12.7)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -3.81 12.7) (end 5.08 12.7)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 0) (end -3.81 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 12.7) (end 5.08 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TRRS_1_1"
(pin input line (at -8.89 2.54 0) (length 5.08)
(name "SLEEVE" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 10.16 0) (length 5.08)
(name "TIP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 7.62 0) (length 5.08)
(name "RING1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 5.08 0) (length 5.08)
(name "RING2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 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" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "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 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push_SPDT" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0 4.318 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_Push_SPDT" (id 1) (at 0 -5.08 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" "switch single-pole double-throw spdt ON-ON" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Momentary Switch, single pole double throw" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_SPDT_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.016)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 -2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SW_Push_SPDT_0_1"
(polyline
(pts
(xy -1.524 0.254)
(xy 2.54 2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SW_Push_SPDT_1_1"
(pin passive line (at 5.08 2.54 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "B" (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 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
)
(no_connect (at 85.09 111.76) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84dff))
(no_connect (at 85.09 104.14) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e00))
(no_connect (at 85.09 127) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e01))
(no_connect (at 85.09 119.38) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e02))
(no_connect (at 109.22 119.38) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e03))
(no_connect (at 109.22 127) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e04))
(no_connect (at 109.22 104.14) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e05))
(no_connect (at 109.22 111.76) (uuid 475f5806-b4d6-4f8e-ad6f-e796add84e06))
(no_connect (at 25.4 93.98) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 96.52) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 121.92) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 124.46) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 93.98) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 96.52) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 124.46) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 121.92) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 107.95) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 110.49) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 107.95) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 110.49) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 66.04) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 68.58) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 52.07) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 54.61) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 38.1) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 40.64) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 52.07) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 54.61) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 66.04) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 68.58) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 80.01) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 54.61 82.55) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 38.1) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 40.64) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 80.01) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 82.55) (uuid 785f0341-1815-487a-8957-bc37a512789a))
(no_connect (at 25.4 24.13) (uuid ca36da07-c334-4060-9b80-d07321e0e0bd))
(no_connect (at 25.4 26.67) (uuid ca36da07-c334-4060-9b80-d07321e0e0bd))
(no_connect (at 90.17 35.56) (uuid cc7bfa1c-21d1-4e4e-84d7-c0f60830995e))
(no_connect (at 90.17 33.02) (uuid cc7bfa1c-21d1-4e4e-84d7-c0f60830995f))
(no_connect (at 125.73 40.64) (uuid cc7bfa1c-21d1-4e4e-84d7-c0f608309960))
(no_connect (at 101.6 76.2) (uuid cc7bfa1c-21d1-4e4e-84d7-c0f608309961))
(global_label "U7" (shape input) (at 90.17 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 00a29d82-4577-4dcf-b4d6-a793f81edc10)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 58.3406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 90.17 40.64 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0c008a0f-a2fd-4e2e-ab62-4d2cbe9a18d6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.8864 40.7194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U15" (shape input) (at 125.73 58.42 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 10ac065b-60ce-4b46-98c4-e128af683abf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 58.3406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U8" (shape input) (at 25.4 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13ffbfb4-340d-443d-8223-e47bf67a6eaf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 119.3006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 25.4 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 16a8ab40-ce40-4b19-8b28-8739e627e34b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 71.1994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 85.09 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 17f28bcf-1498-4fea-ae2b-a0569bc37245)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 85.1694 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U3" (shape input) (at 90.17 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1a924e97-3618-410d-9497-8f47da1834ca)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 48.1806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 25.4 29.21 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 20d32a2e-82c8-4424-bc0b-3e9fa41bce14)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 29.2894 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U10" (shape input) (at 125.73 45.72 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 26dc9fbb-466d-4461-b9ee-62c5b72ea9b2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 45.7994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 325ef7a9-f27e-49d1-9e26-ed172c848c0d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 127.0794 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U8" (shape input) (at 90.17 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3c738fc6-39d0-466b-9fa0-d1949c8602d2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 60.8806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U6" (shape input) (at 25.4 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3e04e0a7-9294-480d-9bd3-30dfe9f1fddc)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 91.3606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U11" (shape input) (at 125.73 48.26 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 46791e0b-f5bc-4bd2-ae90-5874b8212af9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 48.3394 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 90.17 38.1 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4922e1e8-4c34-46bb-b17f-318573a51e0f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.8864 38.1794 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 104.14 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 498691a5-4028-486b-9504-f67d8de6593c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 97.8564 91.5194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U15" (shape input) (at 54.61 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b5fc5d1-0f9d-420d-b2b2-0d555fd00088)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 105.3306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U14" (shape input) (at 125.73 55.88 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 534aef38-b28a-46e8-a1e9-8c38d3d03f20)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 55.8006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U13" (shape input) (at 125.73 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5565e862-78d7-4cb8-839a-dfac50fe330c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 53.2606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 56f7ac0c-5631-4dc1-bc5d-c4fb8882e3f6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 113.1094 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U9" (shape input) (at 54.61 21.59 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 576cc0d0-7dc2-45fd-b0fb-2b771a23bbfa)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.6569 21.5106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U12" (shape input) (at 125.73 50.8 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5828612b-ddeb-4030-9fe1-5ec3154de211)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 50.7206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RAW" (shape input) (at 91.44 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5931398d-9c1b-49f4-ace9-c189d68415df)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 78.6606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RST" (shape input) (at 114.3 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 637caa95-d573-473a-b4f7-24b6e44b9100)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 120.1602 91.5194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 57.15 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 64f14ff0-8cd2-4556-a47d-c058da38bc95)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 57.2294 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U2" (shape input) (at 25.4 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 77e921fe-b61c-415f-8b4c-29ae612b9f91)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 35.4806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U5" (shape input) (at 90.17 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7b14bd96-82d2-46c6-b972-ce8ed34d45e5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 53.2606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U9" (shape input) (at 125.73 43.18 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7eaee3f7-59b9-4f64-bbd7-7c5e44275c47)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 130.6831 43.2594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 29.21 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 81b2a4fc-3944-4e71-80c1-89daea8e4ed8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 29.2894 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U4" (shape input) (at 25.4 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 834b8b6d-a36a-476d-b1b5-7197f6e2abb4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 63.4206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 25.4 57.15 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 850a28f3-f974-456c-93a4-89eb55f619b4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 57.2294 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 89b6b948-f386-424b-86ce-5024d2087726)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 99.1394 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "BAT" (shape input) (at 125.73 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 903db67d-401f-465c-91dc-fa0522b68c62)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.4693 76.2794 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 54.61 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9714d450-330a-4dfa-8788-e7aa24e75186)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 43.2594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "BAT" (shape input) (at 101.6 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 97fec9f5-0058-4fa1-8442-9b5cac849d84)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 107.3393 81.3594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RST" (shape input) (at 125.73 38.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9d522966-1f28-4494-b34d-27762c595a8d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.5902 38.1794 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U10" (shape input) (at 54.61 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9f6041ac-7d33-4672-8add-aa2e5e211364)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 35.4806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RAW" (shape input) (at 125.73 33.02 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9ff7e102-bd38-43bf-b6db-33da808ced3a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.9531 32.9406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U6" (shape input) (at 90.17 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a29d3703-483c-4a47-9528-039cd554ecb2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U14" (shape input) (at 54.61 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a808c70a-d154-4bf5-9450-da079ade8d03)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 91.3606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 25.4 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid adce219d-1300-48f6-bf55-8e07c5ba8588)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 127.0794 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U1" (shape input) (at 90.17 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid af8331a5-cc45-45a6-9521-fc81bbf571ca)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 43.2594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U13" (shape input) (at 54.61 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b2bb00a0-e64e-4212-a8c9-b27ec02ad23c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 77.3906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U4" (shape input) (at 90.17 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b86846e2-9916-49bc-b160-db20a42974d3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 50.7206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U2" (shape input) (at 90.17 45.72 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b8ef3307-00ad-40ae-aa49-f643477a3b0a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 85.2169 45.6406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U7" (shape input) (at 25.4 105.41 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b9fda761-d87a-45d2-bdc9-11c60a1b95ef)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 105.3306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 54.61 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cb80ec58-121e-47b8-89be-12b12c14272b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.3264 71.1994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U12" (shape input) (at 54.61 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ccd9c7b5-094b-4608-9b1d-1fcd843438a2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 63.4206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U3" (shape input) (at 25.4 49.53 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cf30d505-a7e1-44e0-b5c9-a7f23bb2d05b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 49.4506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U1" (shape input) (at 25.4 21.59 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d1bd4e82-abf7-4c6f-b311-285358d4281b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 21.6694 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 25.4 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid da1446d7-3b17-4da4-bb1a-e9cddd5f4aae)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 99.1394 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 25.4 85.09 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e17052dd-ea3f-4da7-ac98-b9aec133e736)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 85.1694 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U16" (shape input) (at 125.73 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eceda578-7cb0-4659-9ab3-31f13a91cae9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.8926 60.8806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U16" (shape input) (at 54.61 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eea2a930-3ee0-45f5-9989-7d520eea6013)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 119.3006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 125.73 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f298810c-c0f3-465f-bcd4-7c0297c7b92d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0136 78.8194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "U5" (shape input) (at 25.4 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f48fcfed-bd74-4e0c-ad62-f48ca0ffdb65)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.4469 77.3906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "U11" (shape input) (at 54.61 49.53 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f8e01bda-0d68-40b5-9f1b-6ae78e2d3996)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.4474 49.4506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 25.4 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fb85bf38-cf7d-4923-938b-5d15347eb138)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 43.2594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 25.4 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fd49ec2b-aa7a-43ba-af65-f472d947df24)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1164 113.1094 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape input) (at 125.73 35.56 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ffdb43cf-6ebc-4bdc-bb27-cd4002ffe330)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0136 35.4806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 109.22 109.22 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 07bb2795-3c6d-4ccc-9833-7479d536ca20)
(property "Reference" "H6" (id 0) (at 111.76 106.6799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 111.76 109.2199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 109.22 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 109.22 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 91f9b127-d309-43c8-b01b-45978abcc785))
)
(symbol (lib_id "Keebio:TRRS") (at 63.5 31.75 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1b7d5913-c337-4cc3-9305-aede49973460)
(property "Reference" "U9" (id 0) (at 69.85 24.13 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Value" "TRRS" (id 1) (at 69.85 27.94 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "resetswitch:TRRS-PJ-320A" (id 2) (at 67.31 31.75 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 67.31 31.75 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid b8885686-8a3d-480f-a725-be26da352bdb))
(pin "2" (uuid beb1c417-e386-4d2f-abd8-859ca9617d3a))
(pin "3" (uuid 78093ba7-19bf-4d48-a50f-6236b4ddff53))
(pin "4" (uuid 2fa907e6-cf3a-4d38-a6e2-2ca2b2bcda54))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 85.09 109.22 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2ab0ab46-95fa-41f2-accf-cac43423a1e0)
(property "Reference" "H2" (id 0) (at 87.63 106.6799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 87.63 109.2199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 85.09 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 85.09 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 52ca4247-768b-4129-bcb9-fc1b5b6a360b))
)
(symbol (lib_id "Switch:SW_Push_SPDT") (at 96.52 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3223d5c1-12ae-4383-9a3d-a77618f00732)
(property "Reference" "SW2" (id 0) (at 96.52 71.12 0))
(property "Value" "SW_Push_SPDT" (id 1) (at 96.52 73.66 0))
(property "Footprint" "Button_Switch_SMD:SW_SPDT_PCM12" (id 2) (at 96.52 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 96.52 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1675ce03-54b6-4252-90b1-150b2d4729ec))
(pin "2" (uuid daa8252e-3760-4210-b0ae-513325376d6c))
(pin "3" (uuid 31d127b8-e8f8-47b6-acc4-5f7197d756d8))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 109.22 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 349898e4-d0b2-447a-a0e5-b294dea36d7d)
(property "Reference" "H5" (id 0) (at 111.76 99.0599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 111.76 101.5999 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 109.22 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 109.22 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 702db5f7-b320-48a6-930b-38cd2c9f9212))
)
(symbol (lib_id "Keebio:TRRS") (at 34.29 73.66 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 37ffdd9d-5d8e-461c-a1b9-0c9721e445cf)
(property "Reference" "U4" (id 0) (at 40.64 66.04 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Value" "TRRS" (id 1) (at 40.64 69.85 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "resetswitch:TRRS-PJ-320A" (id 2) (at 38.1 73.66 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 38.1 73.66 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid ebd98f15-1002-4456-af6a-7c64a96e1fa2))
(pin "2" (uuid 988ba0eb-5f79-4630-a0b3-00e1f2edd343))
(pin "3" (uuid 3e366e21-bda7-47d8-9cc2-64c3549eb1a9))
(pin "4" (uuid dbe0e59a-4150-4348-9243-9ca2a0376528))
)
(symbol (lib_id "Keebio:TRRS") (at 63.5 45.72 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3a90ef38-3c3c-4e09-bc60-2abe3941fce5)
(property "Reference" "U10" (id 0) (at 69.85 38.1 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Value" "TRRS" (id 1) (at 69.85 41.91 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "resetswitch:TRRS-PJ-320A" (id 2) (at 67.31 45.72 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 67.31 45.72 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 72b2a5ab-b23d-4a7d-9d97-32afee60ce65))
(pin "2" (uuid 077c0df8-9223-41e4-9f02-2129d30e27c6))
(pin "3" (uuid c156eb0d-2b02-4cf8-951d-8aefd1d9f414))
(pin "4" (uuid 538abee9-68b2-47e2-b513-b941888c73ab))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 109.22 124.46 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 426a01c6-8437-4c68-aa67-c13d3ad833c6)
(property "Reference" "H8" (id 0) (at 111.76 121.9199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 111.76 124.4599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 109.22 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 109.22 124.46 0)