-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMIDI_IN.kicad_sch
1060 lines (1041 loc) · 35.5 KB
/
MIDI_IN.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 7e9c3310-deaa-4daf-91a6-14cbd193bdc5)
(paper "A4")
(lib_symbols
(symbol "4ms_Connector:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "4ms_Connector:Pins_1x03_2.54mm_TH_AudioInsRGndL" (at 0 6.985 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specifications" "HEADER 1x3 MALE PINS 0.100” 180deg" (at -2.54 -7.874 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer" "TAD" (at -2.54 -9.398 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Part Number" "1-0301FBV0T" (at -2.54 -10.922 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "Conn_01x03" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "HEADER 1x3 MALE PINS 0.100” 180deg" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 2.54 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 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(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:D_Schottky_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky_Small" (at -7.112 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode Schottky" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_Small_0_1"
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0.762)
(xy -1.27 1.016)
(xy -0.762 1.016)
(xy -0.762 -1.016)
(xy -0.254 -1.016)
(xy -0.254 -0.762)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Schottky_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(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" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "dk_Optoisolators-Logic-Output:H11L1M" (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 6.35 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "H11L1M" (at 3.175 -6.35 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "digikey-footprints:DIP-6_W7.62mm" (at 5.08 5.08 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Datasheet" "http://www.onsemi.com/pub/Collateral/H11L3M-D.pdf" (at 5.08 7.62 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Digi-Key_PN" "H11L1-MQT-ND" (at 5.08 10.16 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "MPN" "H11L1M" (at 5.08 12.7 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Category" "Isolators" (at 5.08 15.24 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Family" "Optoisolators - Logic Output" (at 5.08 17.78 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Datasheet_Link" "http://www.onsemi.com/pub/Collateral/H11L3M-D.pdf" (at 5.08 20.32 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Detail_Page" "/product-detail/en/on-semiconductor/H11L1M/H11L1-MQT-ND/284866" (at 5.08 22.86 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Description" "OPTOISO 4.17KV OPN COLL 6DIP" (at 5.08 25.4 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Manufacturer" "ON Semiconductor" (at 5.08 27.94 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Status" "Active" (at 5.08 30.48 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "ki_keywords" "H11L1-MQT-ND" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "OPTOISO 4.17KV OPN COLL 6DIP" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "H11L1M_0_1"
(polyline
(pts
(xy -4.445 -0.635)
(xy -3.175 -0.635)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 -5.08)
(xy 0 -1.27)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 0 1.27)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 3.175 0)
(xy 5.08 0)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -5.08 2.54)
(xy -3.81 2.54)
(xy -3.81 0)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -0.635)
(xy -3.81 -2.54)
(xy -5.08 -2.54)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -0.635 1.27)
(xy -0.635 -1.27)
(xy 1.27 -1.27)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -0.635)
(xy -4.445 0.635)
(xy -3.175 0.635)
(xy -3.81 -0.635)
)
(stroke (width 0) (type solid))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 -0.635)
(xy -1.651 -1.524)
(xy -1.651 -1.016)
(xy -1.651 -1.524)
(xy -2.159 -1.524)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0.635)
(xy -1.651 -0.254)
(xy -1.651 0.127)
(xy -1.651 -0.254)
(xy -2.159 -0.254)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(arc (start 1.27 -1.27) (mid 2.5345 0) (end 1.27 1.27)
(stroke (width 0) (type solid))
(fill (type none))
)
(circle (center 2.54 0) (radius 0.0001)
(stroke (width 0) (type solid))
(fill (type none))
)
(circle (center 2.794 0) (radius 0.2794)
(stroke (width 0) (type solid))
(fill (type none))
)
)
(symbol "H11L1M_1_1"
(rectangle (start -5.08 3.81) (end 5.08 -3.81)
(stroke (width 0) (type solid))
(fill (type background))
)
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 5.08 -2.54 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "VO" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 3.81)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 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 \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (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" (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 125.73 86.868) (diameter 0) (color 0 0 0 0)
(uuid 13d31558-5025-4be7-aab5-a395005810ab)
)
(junction (at 165.354 84.328) (diameter 0) (color 0 0 0 0)
(uuid 402670c6-3283-464a-8dd5-6a3e3abf8cda)
)
(junction (at 125.73 81.788) (diameter 0) (color 0 0 0 0)
(uuid 6c71ea31-b4a3-4759-b297-4e5b8b17b20e)
)
(junction (at 146.05 71.628) (diameter 0) (color 0 0 0 0)
(uuid 7e7c1161-769a-4621-b973-a0a131b2ec1c)
)
(wire (pts (xy 137.668 77.978) (xy 137.668 77.47))
(stroke (width 0) (type default))
(uuid 07ff864d-9ad2-4d64-aaa5-caa832c5a64a)
)
(wire (pts (xy 92.71 82.55) (xy 106.68 82.55))
(stroke (width 0) (type default))
(uuid 08d83413-5269-4258-bb6d-f36c79105915)
)
(wire (pts (xy 124.714 86.36) (xy 124.714 86.868))
(stroke (width 0) (type default))
(uuid 118afa15-0d0f-451f-89ea-eb7c02b86b16)
)
(wire (pts (xy 125.73 86.868) (xy 138.43 86.868))
(stroke (width 0) (type default))
(uuid 15df95c2-b0ae-4405-8371-efe1779e98e3)
)
(wire (pts (xy 166.37 85.09) (xy 177.8 85.09))
(stroke (width 0) (type default))
(uuid 278f4b7d-76e7-4a15-83dd-9f1b829130a4)
)
(wire (pts (xy 165.354 82.55) (xy 165.354 84.328))
(stroke (width 0) (type default))
(uuid 2849231c-e888-4d99-a8fc-f893768436f7)
)
(wire (pts (xy 153.67 84.328) (xy 165.354 84.328))
(stroke (width 0) (type default))
(uuid 322d914a-9879-4cfb-9d54-e63c8452d99e)
)
(wire (pts (xy 97.79 87.63) (xy 97.79 90.17))
(stroke (width 0) (type default))
(uuid 41e1947f-7423-4217-a5c3-410993bfca79)
)
(wire (pts (xy 166.37 84.328) (xy 165.354 84.328))
(stroke (width 0) (type default))
(uuid 4422b827-b430-4024-afb8-da1ba2db77cc)
)
(wire (pts (xy 165.354 73.152) (xy 165.354 74.93))
(stroke (width 0) (type default))
(uuid 44a235d1-1d9c-433d-ac92-9ee2f862814c)
)
(wire (pts (xy 124.714 86.868) (xy 125.73 86.868))
(stroke (width 0) (type default))
(uuid 464742c2-6bbd-4432-bdf1-90ad508eb660)
)
(wire (pts (xy 114.3 82.55) (xy 124.46 82.55))
(stroke (width 0) (type default))
(uuid 60122b8f-df9e-4c5c-8da8-de62e66adc43)
)
(wire (pts (xy 113.03 86.36) (xy 124.714 86.36))
(stroke (width 0) (type default))
(uuid 76ab8314-a197-4b96-8bb7-189a78734dae)
)
(wire (pts (xy 146.05 93.98) (xy 146.05 91.948))
(stroke (width 0) (type default))
(uuid 7890dfd2-efcc-4a2c-b08e-aca6b60b6077)
)
(wire (pts (xy 137.668 71.628) (xy 146.05 71.628))
(stroke (width 0) (type default))
(uuid 791922d5-7a62-4be7-80b4-2d889354aa04)
)
(wire (pts (xy 92.71 85.09) (xy 113.03 85.09))
(stroke (width 0) (type default))
(uuid 80b7d937-ce1b-4c68-b518-6d03677302f0)
)
(wire (pts (xy 113.03 85.09) (xy 113.03 86.36))
(stroke (width 0) (type default))
(uuid 950eeb28-90fa-4bc5-886e-3678162df338)
)
(wire (pts (xy 146.05 70.358) (xy 146.05 71.628))
(stroke (width 0) (type default))
(uuid ad4e99c6-5c24-4018-b790-691d3a2f8829)
)
(wire (pts (xy 125.73 81.788) (xy 138.43 81.788))
(stroke (width 0) (type default))
(uuid d3e2bde3-e62d-46fb-99ad-7400998db844)
)
(wire (pts (xy 137.668 72.39) (xy 137.668 71.628))
(stroke (width 0) (type default))
(uuid d4208671-da65-4d42-a96d-2281bc7a6b77)
)
(wire (pts (xy 124.46 82.55) (xy 124.46 81.788))
(stroke (width 0) (type default))
(uuid d8e55bf0-bd16-41e3-b5e6-c96c17c50d0d)
)
(wire (pts (xy 92.71 87.63) (xy 97.79 87.63))
(stroke (width 0) (type default))
(uuid e83b8ddf-0977-4345-8452-ec112cdc7b6b)
)
(wire (pts (xy 146.05 71.628) (xy 146.05 76.708))
(stroke (width 0) (type default))
(uuid ea6838ba-6cc9-47c8-9bd9-07b432c438af)
)
(wire (pts (xy 124.46 81.788) (xy 125.73 81.788))
(stroke (width 0) (type default))
(uuid f8173e88-e440-48d3-8272-67701f30de7d)
)
(wire (pts (xy 166.37 85.09) (xy 166.37 84.328))
(stroke (width 0) (type default))
(uuid f97c12de-45a0-4811-b964-de0d83507386)
)
(text "MIDI IN" (at 87.63 72.39 0)
(effects (font (size 5.27 5.27)) (justify left bottom))
(uuid 2d9cb132-1c12-46e0-af81-335b208ecf22)
)
(label "MIDI_IN_Diode" (at 114.3 82.55 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 2dc61e86-df7d-4af6-bd00-eb37549954a2)
)
(label "MIDI_IN_CONN_R" (at 93.98 82.55 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 8389a0d3-e4fd-4a5d-9b89-28dc992aa437)
)
(label "MIDI_IN_CONN" (at 93.98 85.09 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 9bccfc6c-2b89-4bae-8969-9b88ecbfca93)
)
(hierarchical_label "MIDI_UART_RX" (shape input) (at 177.8 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 400baf70-d587-4c59-a4d0-23f342426ad3)
)
(symbol (lib_id "power:GND") (at 137.668 77.978 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 16a086d2-0413-4eb6-8dca-e6b08eb221fd)
(property "Reference" "#PWR063" (at 137.668 84.328 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 140.208 77.978 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 137.668 77.978 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 137.668 77.978 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d6631d3b-b468-4d81-9976-f927c40661f7))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR063") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "#PWR060") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 137.668 74.93 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 29ccc170-3cb8-41e8-99cb-727647e5a572)
(property "Reference" "C32" (at 135.636 73.66 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 135.636 76.2 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 137.668 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.668 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specs" "0603, 16V" (at 137.668 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2a2a31a3-11fe-4ed9-ab37-d1f2e8205cea))
(pin "2" (uuid 6dfe9b2f-03e3-46ca-ae0c-2f2696ef1f71))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C32") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "C7") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 110.49 82.55 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 35a40bd0-9e5e-4b92-b112-a6b93fc99542)
(property "Reference" "R85" (at 113.792 80.264 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "220" (at 107.442 80.264 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 110.236 83.566 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 110.49 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specks" "0402" (at 114.3 84.455 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bd07de85-7f63-4390-995d-b99495becdbf))
(pin "2" (uuid d2a3e7d6-0552-4909-9d68-5e9ec06f003f))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R85") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/a0f8a1fd-6189-4b02-8cf7-e8d7538f4e50"
(reference "R32") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "R54") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D_Schottky_Small") (at 125.73 84.328 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 43f50653-312b-4666-878c-b17f623ff7dc)
(property "Reference" "D1" (at 127.762 82.7405 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky" (at 127.762 85.2805 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Diode_SMD:D_0402_1005Metric" (at 125.73 84.328 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 125.73 84.328 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 599b1fd9-dba4-423d-bd9e-37d53c519631))
(pin "2" (uuid 8481fd95-7837-43ee-b4c2-fb18b060171d))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "D1") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "D1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 165.354 78.74 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4fe7c6e7-9f59-4a47-b893-700e98d83f52)
(property "Reference" "R89" (at 167.894 82.042 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "270" (at 167.894 77.47 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 164.338 78.486 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 165.354 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specks" "0402" (at 163.449 82.55 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f86f7b0f-a822-4825-aaaf-ed965a45507f))
(pin "2" (uuid c1af1d93-3391-4dc8-a616-d01efc1255de))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R89") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/a0f8a1fd-6189-4b02-8cf7-e8d7538f4e50"
(reference "R32") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "R55") (unit 1)
)
)
)
)
(symbol (lib_id "dk_Optoisolators-Logic-Output:H11L1M") (at 146.05 84.328 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6e2cf166-f394-45ac-bfed-8f20d258bc19)
(property "Reference" "U2" (at 156.972 82.1121 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "H11L1M" (at 156.972 87.63 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "digikey-footprints:DIP-6_W7.62mm" (at 151.13 79.248 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Datasheet" "http://www.onsemi.com/pub/Collateral/H11L3M-D.pdf" (at 151.13 76.708 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Digi-Key_PN" "H11L1-MQT-ND" (at 151.13 74.168 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "MPN" "H11L1M" (at 151.13 71.628 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Category" "Isolators" (at 151.13 69.088 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Family" "Optoisolators - Logic Output" (at 151.13 66.548 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Datasheet_Link" "http://www.onsemi.com/pub/Collateral/H11L3M-D.pdf" (at 151.13 64.008 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Detail_Page" "/product-detail/en/on-semiconductor/H11L1M/H11L1-MQT-ND/284866" (at 151.13 61.468 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Description" "OPTOISO 4.17KV OPN COLL 6DIP" (at 151.13 58.928 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Manufacturer" "ON Semiconductor" (at 151.13 56.388 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Status" "Active" (at 151.13 53.848 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(pin "1" (uuid 8058e35d-3b71-4e43-8417-f6732045cdf0))
(pin "2" (uuid 7ba733fa-4fed-4543-9ef4-09109c537093))
(pin "3" (uuid 2781b98d-2ea4-4a40-84a4-1ba5eab94263))
(pin "4" (uuid 188122f2-98f1-4423-bd44-069cea22491a))
(pin "5" (uuid ad5e7513-c560-44cc-aebd-701babf08007))
(pin "6" (uuid 27de9815-cee8-4fba-9ce0-5b12bbdb7c27))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "U2") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "U1") (unit 1)
)
)
)
)
(symbol (lib_id "4ms_Connector:Conn_01x03") (at 87.63 85.09 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a91fd5ea-2cb7-4378-bd16-3fa2a3d979f8)
(property "Reference" "J28" (at 82.55 85.725 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (at 85.09 85.09 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "FemaleHeaders:PinHeader_1x03_P2.54mm_Vertical_Female" (at 87.63 92.075 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 87.63 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specifications" "HEADER 1x3 MALE PINS 0.100” 180deg" (at 90.17 77.216 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer" "TAD" (at 90.17 75.692 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Part Number" "1-0301FBV0T" (at 90.17 74.168 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 12548867-dc73-49be-acdd-925f97724a8b))
(pin "2" (uuid 6b5db5ec-49a0-497f-be94-01ee5fe9d448))
(pin "3" (uuid d8ecbfe5-ccab-46ab-a83b-2a5ae7f4e918))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "J28") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "J3") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 146.05 93.98 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a9a7bede-cb04-47d9-89b7-72cf40bd6a0b)
(property "Reference" "#PWR060" (at 146.05 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 148.59 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 146.05 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 146.05 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ba7b82aa-8abc-4ac6-98ce-9ae2719dc7a1))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR060") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "#PWR062") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 146.05 70.358 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid b51890c4-154f-45c0-a2ee-1e8eb1511fde)
(property "Reference" "#PWR062" (at 146.05 74.168 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 146.05 65.278 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 146.05 70.358 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 146.05 70.358 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 19a7633e-db45-4287-815f-f2b37f41a28b))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR062") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/0f869182-0545-465a-951d-d9d2cc6b23cc"
(reference "#PWR061") (unit 1)
)