-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMDCtrlVer1.kicad_sch
1778 lines (1736 loc) · 66.2 KB
/
MDCtrlVer1.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 e5851faa-5324-41a2-8d3a-f95b8240fec4)
(paper "A4")
(lib_symbols
(symbol "MCU_RaspberryPi_and_Boards:Pico" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -13.97 27.94 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Pico" (at 0 19.05 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "RPi_Pico:RPi_Pico_SMD_TH" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Pico_0_0"
(text "Raspberry Pi Pico" (at 0 21.59 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "Pico_0_1"
(rectangle (start -15.24 26.67) (end 15.24 -26.67)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "Pico_1_1"
(pin bidirectional line (at -17.78 24.13 0) (length 2.54)
(name "GPIO0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 1.27 0) (length 2.54)
(name "GPIO7" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -1.27 0) (length 2.54)
(name "GPIO8" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -3.81 0) (length 2.54)
(name "GPIO9" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 -6.35 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -8.89 0) (length 2.54)
(name "GPIO10" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -11.43 0) (length 2.54)
(name "GPIO11" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -13.97 0) (length 2.54)
(name "GPIO12" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -16.51 0) (length 2.54)
(name "GPIO13" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 -19.05 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -21.59 0) (length 2.54)
(name "GPIO14" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 21.59 0) (length 2.54)
(name "GPIO1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -24.13 0) (length 2.54)
(name "GPIO15" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -24.13 180) (length 2.54)
(name "GPIO16" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -21.59 180) (length 2.54)
(name "GPIO17" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -19.05 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -16.51 180) (length 2.54)
(name "GPIO18" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -13.97 180) (length 2.54)
(name "GPIO19" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -11.43 180) (length 2.54)
(name "GPIO20" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -8.89 180) (length 2.54)
(name "GPIO21" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -6.35 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -3.81 180) (length 2.54)
(name "GPIO22" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 19.05 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -1.27 180) (length 2.54)
(name "RUN" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 1.27 180) (length 2.54)
(name "GPIO26_ADC0" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 3.81 180) (length 2.54)
(name "GPIO27_ADC1" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 6.35 180) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 8.89 180) (length 2.54)
(name "GPIO28_ADC2" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 11.43 180) (length 2.54)
(name "ADC_VREF" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 13.97 180) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 16.51 180) (length 2.54)
(name "3V3_EN" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 19.05 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 21.59 180) (length 2.54)
(name "VSYS" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 16.51 0) (length 2.54)
(name "GPIO2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 24.13 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -29.21 90) (length 2.54)
(name "SWCLK" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -29.21 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 2.54 -29.21 90) (length 2.54)
(name "SWDIO" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 13.97 0) (length 2.54)
(name "GPIO3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 11.43 0) (length 2.54)
(name "GPIO4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 8.89 0) (length 2.54)
(name "GPIO5" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 6.35 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 3.81 0) (length 2.54)
(name "GPIO6" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (at 0 3.175 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" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
)
(symbol "Switch:SW_Omron_B3FS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Omron_B3FS" (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Omron B3FS 6x6mm single pole normally-open tactile switch" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SW*Omron*B3FS*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Omron_B3FS_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(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 "marbastlib-mx:MX_SW_HS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 3.048 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MX_SW_HS" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "marbastlib-mx:SW_MX_HS_1u" (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" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, normally open, two pins, 45° tilted" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MX_SW_HS_0_1"
(circle (center -1.1684 1.1684) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.54)
(xy 2.54 -0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 2.032 2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -1.524 1.524)
(xy -1.524 1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -1.524)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.143 -1.1938) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -2.54 2.54 0) (length 0)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -2.54 180) (length 0)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "marbastlib-mx:MX_stab" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "S" (at -5.08 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MX_stab" (at -5.08 3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "marbastlib-mx:STAB_MX_P_6.25u" (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" "cherry mx stabilizer stab" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Cherry MX-style stabilizer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MX_stab_0_1"
(rectangle (start -5.08 -1.524) (end -2.54 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -5.08 1.27) (end -2.54 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.826 2.794) (end -2.794 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.064 -2.286) (end -3.556 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.064 -1.778) (end 4.064 -2.286)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.064 1.27) (end -3.556 2.794)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.54 -1.524) (end 5.08 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.54 1.27) (end 5.08 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.794 2.794) (end 4.826 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 3.556 1.27) (end 4.064 2.794)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 4.064 -2.286) (end 3.556 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 180.34 85.09) (diameter 0) (color 0 0 0 0)
(uuid 114bbabe-b302-4950-a393-bbb0d0a9de8d)
)
(junction (at 219.71 60.96) (diameter 0) (color 0 0 0 0)
(uuid 39cc2eea-f24c-4aa0-8edc-ea4a559cfce4)
)
(junction (at 236.22 60.96) (diameter 0) (color 0 0 0 0)
(uuid 62928688-a6f0-4ced-b6e1-9fcd26b852b8)
)
(junction (at 203.2 60.96) (diameter 0) (color 0 0 0 0)
(uuid 8646b8b5-b666-4adc-834b-9ada662ad75d)
)
(junction (at 186.69 60.96) (diameter 0) (color 0 0 0 0)
(uuid 90aef5ae-ce04-4f01-b733-f20a89d09b0a)
)
(junction (at 224.79 78.74) (diameter 0) (color 0 0 0 0)
(uuid bffbb844-07d3-42a0-8471-f88382fbb550)
)
(junction (at 224.79 91.44) (diameter 0) (color 0 0 0 0)
(uuid cbe68dab-5b11-41d1-b57a-476305c28dc9)
)
(junction (at 212.09 91.44) (diameter 0) (color 0 0 0 0)
(uuid cf95fa73-6431-47b8-a1f2-a800d5a357e5)
)
(junction (at 212.09 78.74) (diameter 0) (color 0 0 0 0)
(uuid d63b7dce-b78c-45fe-ac06-d504affccbb9)
)
(junction (at 165.1 85.09) (diameter 0) (color 0 0 0 0)
(uuid dcaec540-83eb-48eb-8d1f-4570fe52c9f3)
)
(junction (at 237.49 78.74) (diameter 0) (color 0 0 0 0)
(uuid f2401a97-48ac-4822-a94b-ff025bded739)
)
(junction (at 177.8 85.09) (diameter 0) (color 0 0 0 0)
(uuid f396f7f2-0a94-43d4-a9e2-1af9510b46b2)
)
(junction (at 237.49 91.44) (diameter 0) (color 0 0 0 0)
(uuid fcd7bb0e-3376-419e-861e-2e65f6f750fb)
)
(wire (pts (xy 165.1 85.09) (xy 177.8 85.09))
(stroke (width 0) (type default))
(uuid 0da1bb42-92db-4e91-9164-237caa3f7f59)
)
(wire (pts (xy 199.39 78.74) (xy 212.09 78.74))
(stroke (width 0) (type default))
(uuid 0e5ddcb9-92e0-49db-92b5-ca41768111f0)
)
(wire (pts (xy 237.49 78.74) (xy 243.84 78.74))
(stroke (width 0) (type default))
(uuid 307a53d6-8a44-4e40-aa72-4bc5d27a5709)
)
(wire (pts (xy 177.8 85.09) (xy 180.34 85.09))
(stroke (width 0) (type default))
(uuid 573450bc-de43-427d-9a87-3d8cd2efe22c)
)
(wire (pts (xy 224.79 78.74) (xy 237.49 78.74))
(stroke (width 0) (type default))
(uuid 5c4f5d54-494e-4338-b290-21de3f3a71b2)
)
(wire (pts (xy 237.49 91.44) (xy 243.84 91.44))
(stroke (width 0) (type default))
(uuid 604d6edc-eab5-4ca9-ad7e-ed88487c0627)
)
(wire (pts (xy 190.5 105.41) (xy 180.34 105.41))
(stroke (width 0) (type default))
(uuid 6ccfb900-fbef-453d-a47f-6f40a99a9a22)
)
(wire (pts (xy 212.09 91.44) (xy 224.79 91.44))
(stroke (width 0) (type default))
(uuid 6d3d5697-5a73-4a6a-8d73-17823ef8480f)
)
(wire (pts (xy 212.09 78.74) (xy 224.79 78.74))
(stroke (width 0) (type default))
(uuid 6d7eb622-41dc-4c84-9019-03a54d970a45)
)
(wire (pts (xy 203.2 58.42) (xy 203.2 60.96))
(stroke (width 0) (type default))
(uuid 73eeeb13-b67e-45d9-92f2-f016000c96f3)
)
(wire (pts (xy 180.34 85.09) (xy 180.34 105.41))
(stroke (width 0) (type default))
(uuid 7ddbf225-45bf-4c38-89b0-377886c505fd)
)
(wire (pts (xy 199.39 91.44) (xy 212.09 91.44))
(stroke (width 0) (type default))
(uuid 830eb7f4-ac2f-4628-a355-fd69200bde85)
)
(wire (pts (xy 170.18 58.42) (xy 170.18 60.96))
(stroke (width 0) (type default))
(uuid 8c9eccba-1883-499b-a6d1-a45ad7061459)
)
(wire (pts (xy 224.79 91.44) (xy 237.49 91.44))
(stroke (width 0) (type default))
(uuid a0863e7a-e8e6-4cec-9bda-84d0f5c882ad)
)
(wire (pts (xy 186.69 58.42) (xy 186.69 60.96))
(stroke (width 0) (type default))
(uuid b2f42f8c-964c-49e6-9c35-29b822b82667)
)
(wire (pts (xy 236.22 58.42) (xy 236.22 60.96))
(stroke (width 0) (type default))
(uuid baff3e9a-3526-4dbf-acf3-c89e3fcf8ee1)
)
(wire (pts (xy 219.71 60.96) (xy 236.22 60.96))
(stroke (width 0) (type default))
(uuid bee2e367-c104-4073-aea8-7061fcf008a8)
)
(wire (pts (xy 170.18 60.96) (xy 186.69 60.96))
(stroke (width 0) (type default))
(uuid c492db9e-359e-43be-99cd-a63fad3828e7)
)
(wire (pts (xy 152.4 85.09) (xy 165.1 85.09))
(stroke (width 0) (type default))
(uuid c570c2e4-ea0a-45a9-b321-7a1b4a10cc78)
)
(wire (pts (xy 219.71 58.42) (xy 219.71 60.96))
(stroke (width 0) (type default))
(uuid c6e7a7e0-b11c-4452-8bdb-81a63f7d1a34)
)
(wire (pts (xy 203.2 60.96) (xy 219.71 60.96))
(stroke (width 0) (type default))
(uuid dbe7ddbc-cf55-4b9c-b456-2653c97931bb)
)
(wire (pts (xy 180.34 85.09) (xy 184.15 85.09))
(stroke (width 0) (type default))
(uuid f6eda723-ca19-41f9-82cb-d1419e9d62c0)
)
(wire (pts (xy 186.69 60.96) (xy 203.2 60.96))
(stroke (width 0) (type default))
(uuid fc264257-0c1b-4d14-91c2-509c495aa0ed)
)
(global_label "DOWN" (shape input) (at 160.02 80.01 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 061a1d3b-aa4b-4e58-8a4f-6c7eefa19600)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.02 71.7218 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "HOME" (shape input) (at 193.04 58.42 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 09ef0c8a-4b5c-4ef5-88fb-76282d1c9ec5)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 193.04 50.2528 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "R1" (shape input) (at 91.44 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0cb7d0d4-db7b-4624-8921-1ac344940803)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.0547 91.44 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "UP" (shape input) (at 91.44 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 36790c6b-90b9-4777-9b84-f028687d84ea)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 85.9337 60.96 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "R2" (shape input) (at 91.44 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 37bcfad8-071c-4906-b42c-71fa6fa35b45)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.0547 78.74 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "B2" (shape input) (at 91.44 76.2 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 380a09fb-0b85-47c8-8e60-7ddbea2d06dc)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.0547 76.2 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "HOME" (shape input) (at 127 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3dac833f-cfe8-43ff-ba43-cd4d48b43531)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 135.1672 88.9 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "B4" (shape input) (at 207.01 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4139e510-3d75-4abb-af1d-0742fd2fc609)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 201.6247 73.66 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "R1" (shape input) (at 219.71 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4a6fac91-f6d7-4d5b-b5be-944fd097517b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.3247 73.66 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "L1" (shape input) (at 91.44 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c25022d-6516-4285-82df-3e2187b3cab8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.2966 93.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "B1" (shape input) (at 194.31 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4d2e9480-d910-4d91-8bba-74a0003f5149)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 188.9247 86.36 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "R2" (shape input) (at 219.71 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4d5ba40d-8dc8-4419-9075-2e86a32711d1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 214.3247 86.36 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "L1" (shape input) (at 232.41 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 606b39bd-4324-4b92-bff3-a195986ee9da)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 227.2666 73.66 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "L2" (shape input) (at 232.41 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 66418b64-a1b1-43e3-a354-44321eeff308)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 227.2666 86.36 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "B3" (shape input) (at 194.31 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 66c18ef0-7ca0-454e-923a-11a6b09e88d0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 188.9247 73.66 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "L2" (shape input) (at 91.44 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6b7e9b5b-60f0-4560-b313-b36a75878491)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.2966 81.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "B1" (shape input) (at 91.44 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6bb9c596-1cd3-49b6-a125-1b64a71713c6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.0547 73.66 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RS Toggle" (shape input) (at 127 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 710dd29f-e136-4756-9163-f57841f0afa7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 139.3157 76.2 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RS Toggle" (shape input) (at 176.53 58.42 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 73a96314-61c2-4204-bef6-895ece089f52)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.53 46.1043 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "UP" (shape input) (at 185.42 100.33 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 778b9ef5-6fe4-4511-9013-b1a260a0f265)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 185.42 94.8237 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "LS Toggle" (shape input) (at 127 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7c5708f2-35ff-4ddb-bc7d-bce71f4325c6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 139.0738 73.66 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RIGHT" (shape input) (at 172.72 80.01 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 84490c5d-a088-456b-aef5-03f7dd023319)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 172.72 71.6613 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RIGHT" (shape input) (at 91.44 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 861600fe-6417-49cc-83d7-5fa830036645)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 83.0913 66.04 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "B2" (shape input) (at 207.01 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 86eec5e3-2af0-4517-87d3-ef36cfc7a778)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 201.6247 86.36 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "B4" (shape input) (at 91.44 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 91609258-ad6e-40a2-ae19-e9da7e12c8a1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.0547 88.9 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "START" (shape input) (at 209.55 58.42 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a70f229f-afd0-4da1-bdda-1ed9e6ee6002)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 209.55 50.0109 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "START" (shape input) (at 127 99.06 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a7720ffe-047e-483a-967d-fb58452960ca)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 135.4091 99.06 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "B3" (shape input) (at 91.44 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a9e2d5cf-1755-4762-8f01-07353f602970)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.0547 86.36 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SELECT" (shape input) (at 226.06 58.42 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b01f1273-8458-4917-806e-25ba122337ef)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 226.06 48.741 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SELECT" (shape input) (at 127 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bb2cc50c-8494-4d4e-863a-cc374999ed15)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.679 101.6 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DOWN" (shape input) (at 91.44 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cd82d52b-400c-4240-98af-c0cd0dfdc033)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 83.1518 63.5 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "LEFT" (shape input) (at 91.44 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d1d988ab-0a6a-46c8-8817-da86b67b16c9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 84.3009 68.58 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "LS Toggle" (shape input) (at 160.02 58.42 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e448fd48-639b-4e66-a947-0abf2e262a62)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.02 46.3462 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "LEFT" (shape input) (at 147.32 80.01 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ed56291c-3bdb-46cc-a16f-4c17ae0287d2)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.32 72.8709 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "power:GND") (at 243.84 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 03e61223-add1-4ec3-9e74-4aafb0f04f50)
(property "Reference" "#PWR05" (at 243.84 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 243.84 83.82 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 243.84 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 243.84 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 372b274d-78d5-425b-9c45-1494ab4351b3))
(instances
(project "MDBOX"
(path "/e5851faa-5324-41a2-8d3a-f95b8240fec4"
(reference "#PWR05") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 127 58.42 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 05b1eac6-fc1c-48e8-9d90-52537a8ece90)
(property "Reference" "#PWR03" (at 133.35 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 130.81 58.42 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 127 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f579af9-4249-4638-9502-3f64db76faf5))
(instances
(project "MDBOX"
(path "/e5851faa-5324-41a2-8d3a-f95b8240fec4"
(reference "#PWR03") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 184.15 85.09 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1076ae44-86c2-49de-a09b-c3f4b638c724)
(property "Reference" "#PWR07" (at 184.15 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 184.15 90.17 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 184.15 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 184.15 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8a3d2d7-a544-4faf-a309-c1b8330c4777))
(instances
(project "MDBOX"
(path "/e5851faa-5324-41a2-8d3a-f95b8240fec4"
(reference "#PWR07") (unit 1)
)
)
)
)
(symbol (lib_id "marbastlib-mx:MX_SW_HS") (at 196.85 88.9 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 170d9058-78b2-4d67-a643-36ac9357abc0)
(property "Reference" "SW1" (at 196.85 82.55 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MX_SW_HS" (at 196.85 85.09 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "marbastlib-mx:SW_MX_HS_1u" (at 196.85 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 196.85 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f77504ec-79df-41a2-bcb1-98d1dc33afed))
(pin "2" (uuid 663ec8d6-c087-478c-898a-aa31d160ba97))
(instances
(project "MDBOX"
(path "/e5851faa-5324-41a2-8d3a-f95b8240fec4"
(reference "SW1") (unit 1)
)
)
)
)
(symbol (lib_id "marbastlib-mx:MX_SW_HS") (at 234.95 76.2 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1fd3be96-c42d-4769-8145-943ae658ed65)
(property "Reference" "SW8" (at 234.95 69.85 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MX_SW_HS" (at 234.95 72.39 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "marbastlib-mx:SW_MX_HS_1u" (at 234.95 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 234.95 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bbdb2fc5-5152-4a20-92d3-a432fe563182))
(pin "2" (uuid 36496006-f789-4a2b-8be3-86305b851da6))
(instances
(project "MDBOX"
(path "/e5851faa-5324-41a2-8d3a-f95b8240fec4"
(reference "SW8") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 91.44 96.52 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 25920821-8d52-49ac-9fa6-35d8ebce2f57)
(property "Reference" "#PWR08" (at 85.09 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 87.63 96.52 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 91.44 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 91.44 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fddc3681-78c4-4a1c-8594-509424802201))
(instances
(project "MDBOX"
(path "/e5851faa-5324-41a2-8d3a-f95b8240fec4"
(reference "#PWR08") (unit 1)
)
)
)
)
(symbol (lib_id "Switch:SW_Omron_B3FS") (at 214.63 58.42 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2c4feec7-13b3-4612-9561-5c0eb540fdb3)