-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMicroMatrix.kicad_sch
5970 lines (5764 loc) · 201 KB
/
MicroMatrix.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4" portrait)
(title_block
(title "MicroMatrix")
(date "2024-01-09")
(rev "1.3")
(company "© foorschtbar")
)
(lib_symbols
(symbol "Connector_Generic: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" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_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 "SK6805-EC15:SK6805-EC15" (in_bom yes) (on_board yes)
(property "Reference" "D" (at 4.445 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805-EC15" (at 3.175 -6.985 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 3.175 -8.89 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 3.175 -10.795 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "SK6805-EC15_0_0"
(text "RGB" (at 2.286 -4.191 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "SK6805-EC15_0_1"
(polyline
(pts
(xy 1.27 -3.556)
(xy 1.778 -3.556)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -3.556)
(xy 2.667 -3.556)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -2.54)
(xy 1.27 -3.556)
(xy 1.27 -3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.524)
(xy 1.27 -2.54)
(xy 1.27 -2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.683 -1.016)
(xy 3.683 -3.556)
(xy 3.683 -4.064)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -1.524)
(xy 2.667 -1.524)
(xy 3.683 -3.556)
(xy 4.699 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 5.08 5.08) (end -5.08 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "SK6805-EC15_1_1"
(pin input line (at -7.62 0 0) (length 2.54)
(name "DIN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "DOUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (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 \"+5V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (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))))
)
)
)
)
(wire (pts (xy 172.72 102.87) (xy 41.91 102.87))
(stroke (width 0) (type default))
(uuid 04cfdbd4-4bef-4476-971b-b5bd7ca07b79)
)
(wire (pts (xy 167.64 35.56) (xy 172.72 35.56))
(stroke (width 0) (type default))
(uuid 0580efed-18cb-465f-af9f-0c981e475fa9)
)
(wire (pts (xy 41.91 186.69) (xy 41.91 203.2))
(stroke (width 0) (type default))
(uuid 085bf6af-2197-48dc-8ef7-91c714180c12)
)
(wire (pts (xy 41.91 214.63) (xy 41.91 231.14))
(stroke (width 0) (type default))
(uuid 092b7c66-03a5-4c40-94b0-087f24283777)
)
(wire (pts (xy 172.72 63.5) (xy 172.72 74.93))
(stroke (width 0) (type default))
(uuid 1dca07a8-cf54-4d85-b1b9-6771f88d5717)
)
(wire (pts (xy 41.91 119.38) (xy 45.72 119.38))
(stroke (width 0) (type default))
(uuid 399672d2-7990-4199-9ece-4d33570c5992)
)
(wire (pts (xy 41.91 147.32) (xy 45.72 147.32))
(stroke (width 0) (type default))
(uuid 3b167fe0-3fd5-4449-977d-44e2d0aacc20)
)
(wire (pts (xy 172.72 214.63) (xy 41.91 214.63))
(stroke (width 0) (type default))
(uuid 419e77b4-8f9c-4521-9d59-a1c42fc3b887)
)
(wire (pts (xy 167.64 119.38) (xy 172.72 119.38))
(stroke (width 0) (type default))
(uuid 449be1b7-fc8c-4f0c-823e-bedc5a7b2df1)
)
(wire (pts (xy 41.91 91.44) (xy 45.72 91.44))
(stroke (width 0) (type default))
(uuid 46b25db5-63a9-4a14-9c56-17b2f1d2c593)
)
(wire (pts (xy 167.64 175.26) (xy 172.72 175.26))
(stroke (width 0) (type default))
(uuid 49274e21-3af5-47c2-a5ae-70b9407d5f09)
)
(wire (pts (xy 41.91 203.2) (xy 45.72 203.2))
(stroke (width 0) (type default))
(uuid 4a06fac3-80ed-40e8-8f68-501deb35b7c1)
)
(wire (pts (xy 41.91 74.93) (xy 41.91 91.44))
(stroke (width 0) (type default))
(uuid 4f1522f7-5911-4cdb-a471-9b436692d804)
)
(wire (pts (xy 41.91 63.5) (xy 45.72 63.5))
(stroke (width 0) (type default))
(uuid 66beccd6-13a5-4452-b9c9-62d06889fdad)
)
(wire (pts (xy 41.91 46.99) (xy 41.91 63.5))
(stroke (width 0) (type default))
(uuid 73a18cee-98c2-409a-8bbc-866975dd1703)
)
(wire (pts (xy 41.91 130.81) (xy 41.91 147.32))
(stroke (width 0) (type default))
(uuid 76329505-484b-4296-a025-4ed002f1fba2)
)
(wire (pts (xy 172.72 175.26) (xy 172.72 186.69))
(stroke (width 0) (type default))
(uuid 775344cc-c2dc-4856-af6b-3c49e4443dd4)
)
(wire (pts (xy 172.72 119.38) (xy 172.72 130.81))
(stroke (width 0) (type default))
(uuid 7d5f65ac-7b43-4269-908b-1323021b3f65)
)
(wire (pts (xy 41.91 175.26) (xy 45.72 175.26))
(stroke (width 0) (type default))
(uuid 7fdb8d87-b2a8-471b-b912-781f4559545f)
)
(wire (pts (xy 167.64 91.44) (xy 172.72 91.44))
(stroke (width 0) (type default))
(uuid 80801e40-3ef0-400e-b636-114ea5c0ab10)
)
(wire (pts (xy 172.72 91.44) (xy 172.72 102.87))
(stroke (width 0) (type default))
(uuid 85703af3-3017-4548-b816-d306dc8b0fca)
)
(wire (pts (xy 172.72 186.69) (xy 41.91 186.69))
(stroke (width 0) (type default))
(uuid 861728d7-20db-444b-9497-11c358a3000f)
)
(wire (pts (xy 172.72 158.75) (xy 41.91 158.75))
(stroke (width 0) (type default))
(uuid 8cd57eaf-875b-43c7-a397-b3159e310b83)
)
(wire (pts (xy 41.91 158.75) (xy 41.91 175.26))
(stroke (width 0) (type default))
(uuid 8f98da15-f694-4377-b960-6df37c3f2a31)
)
(wire (pts (xy 172.72 147.32) (xy 172.72 158.75))
(stroke (width 0) (type default))
(uuid 8fbd8cfd-3c95-46b2-8edf-66ec32838f4d)
)
(wire (pts (xy 172.72 203.2) (xy 172.72 214.63))
(stroke (width 0) (type default))
(uuid 9394508f-001f-4d2c-bc34-a99b827cd27a)
)
(wire (pts (xy 41.91 102.87) (xy 41.91 119.38))
(stroke (width 0) (type default))
(uuid 94535a11-2233-438e-9178-f7c804ee9e7c)
)
(wire (pts (xy 167.64 203.2) (xy 172.72 203.2))
(stroke (width 0) (type default))
(uuid a71a1cf4-0bd0-4750-9cf7-e7b53b847cfb)
)
(wire (pts (xy 172.72 74.93) (xy 41.91 74.93))
(stroke (width 0) (type default))
(uuid babd5deb-a9d8-42c7-be5f-79d27bce91e2)
)
(wire (pts (xy 167.64 147.32) (xy 172.72 147.32))
(stroke (width 0) (type default))
(uuid bdc106ef-7b16-4623-a124-42b794991ae1)
)
(wire (pts (xy 172.72 46.99) (xy 41.91 46.99))
(stroke (width 0) (type default))
(uuid be83396c-b52d-443f-9008-d0dfa73af282)
)
(wire (pts (xy 172.72 130.81) (xy 41.91 130.81))
(stroke (width 0) (type default))
(uuid bec6f701-9cce-41e6-b899-39bd101696e6)
)
(wire (pts (xy 167.64 63.5) (xy 172.72 63.5))
(stroke (width 0) (type default))
(uuid c9202e59-95a9-419e-8afa-d02dcd289d60)
)
(wire (pts (xy 172.72 35.56) (xy 172.72 46.99))
(stroke (width 0) (type default))
(uuid e893d348-7543-4ae4-9119-e522617e49ad)
)
(wire (pts (xy 41.91 231.14) (xy 45.72 231.14))
(stroke (width 0) (type default))
(uuid fea04fd9-cf0f-4a0a-b7bd-856e0c2aebde)
)
(global_label "DIN" (shape input) (at 45.72 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 07b4c74a-8eed-4ac1-bc36-fa542fa96fef)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 40.1017 35.4806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DOUT" (shape input) (at 62.23 269.24 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34060b62-ab8c-4ca3-9558-bc42481a5e85)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 54.9183 269.1606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DOUT" (shape input) (at 167.64 231.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9c02e864-bedb-4c63-b4f4-f94f1249233b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 174.9517 231.2194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DIN" (shape input) (at 30.48 269.24 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b387ea67-6dc4-4541-affb-cdd9670f06f5)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 24.8617 269.1606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:+5V") (at 68.58 27.94 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00509a9f-2b34-46d7-89f4-c4f71a2e061b)
(property "Reference" "#PWR0157" (at 68.58 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 69.85 26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 68.58 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 68.58 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5b87399c-335d-431d-a904-4c3e74ebed37))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0157") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 129.54 139.7 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 02ea1b44-bcc6-456b-a211-b62e79fe5619)
(property "Reference" "#PWR0120" (at 129.54 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 130.81 138.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 129.54 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7217e083-dcd9-40f2-9631-a933ef078114))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0120") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 99.06 223.52 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 054ba7c2-c3c3-4e54-89eb-152866ea6b35)
(property "Reference" "#PWR0179" (at 99.06 227.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 100.33 222.25 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 99.06 223.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 99.06 223.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid edd9b7e9-7cf0-4861-b2cf-89bd35c10e56))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0179") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 68.58 195.58 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0726bf26-a4d5-4075-b36a-af3ba56f21bc)
(property "Reference" "#PWR0174" (at 68.58 199.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 69.85 194.31 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 68.58 195.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 68.58 195.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 81d3b9d8-ce31-4365-8c1d-5b00f00daa92))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0174") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 129.54 182.88 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0817756d-ea29-429b-a3cb-26c0a1152477)
(property "Reference" "#PWR0188" (at 129.54 189.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 132.08 184.15 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 129.54 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid af6a3605-c41b-4d07-9f30-2f56b5ad3aad))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0188") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 144.78 154.94 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0b0637f4-a36b-4ca3-ad88-72a424e3afc5)
(property "Reference" "#PWR0195" (at 144.78 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 147.32 156.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 144.78 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 144.78 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 006a3c8b-c35a-4920-ac22-cc02331171e6))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0195") (unit 1)
)
)
)
)
(symbol (lib_id "SK6805-EC15:SK6805-EC15") (at 83.82 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0b120fa6-5c30-439f-a740-5330b9f6d4da)
(property "Reference" "D35" (at 83.82 133.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805" (at 83.82 135.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 86.995 156.21 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 86.995 158.115 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC Part Number" "C2890035" (at 83.82 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;0;180" (at 83.82 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a7a31639-550f-4a96-9c18-3efda980b478))
(pin "2" (uuid 03f0f305-de80-4212-814e-78bf1b77043b))
(pin "3" (uuid b9ceb140-132a-42c9-a048-0215e5dc0a85))
(pin "4" (uuid a2ca9ef3-4530-468a-9485-b0a22e928f60))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "D35") (unit 1)
)
)
)
)
(symbol (lib_id "SK6805-EC15:SK6805-EC15") (at 83.82 231.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0d592cce-3dd2-4694-993a-94ea5b48eeb4)
(property "Reference" "D59" (at 83.82 217.17 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805" (at 83.82 219.71 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 86.995 240.03 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 86.995 241.935 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC Part Number" "C2890035" (at 83.82 231.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;0;180" (at 83.82 231.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3e947a1f-d356-4b34-bfa2-e52230d9aa84))
(pin "2" (uuid 7831f51a-fdf2-495f-aaca-85066679a9e6))
(pin "3" (uuid 8c8d94f8-6940-4fa6-b6f8-2e831886160d))
(pin "4" (uuid e8add26d-4731-4898-a64c-9e3ee6aad647))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "D59") (unit 1)
)
)
)
)
(symbol (lib_id "SK6805-EC15:SK6805-EC15") (at 129.54 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0da83251-0158-46e1-b7a7-d169415f91e8)
(property "Reference" "D38" (at 129.54 133.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805" (at 129.54 135.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 132.715 156.21 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 132.715 158.115 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC Part Number" "C2890035" (at 129.54 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;0;180" (at 129.54 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f90b4587-320a-4cf6-9258-8896066aa25b))
(pin "2" (uuid dc8f7b93-b675-47d2-bd8a-274644aac749))
(pin "3" (uuid 3869f2fa-ab2d-4aab-bc6d-6b9016bd1089))
(pin "4" (uuid 96fa0f51-2a9e-4482-9664-fe97b535c5e2))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "D38") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 62.23 266.7 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0e9780e4-649b-44ca-8cad-56d8a0c6cdbe)
(property "Reference" "#PWR0180" (at 62.23 270.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 62.23 261.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 62.23 266.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 62.23 266.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57633dcd-765b-4fc0-90e8-740b55df466d))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0180") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 83.82 238.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0ef1ba7b-fc1e-48da-9a13-996f6fbf2e93)
(property "Reference" "#PWR0112" (at 83.82 245.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 86.36 240.03 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 83.82 238.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 83.82 238.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 654c087a-bba1-4ab8-8956-d24ca0efbd60))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0112") (unit 1)
)
)
)
)
(symbol (lib_id "SK6805-EC15:SK6805-EC15") (at 144.78 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0fffd611-9d0b-4e82-8dcf-db6e441b1a99)
(property "Reference" "D39" (at 144.78 133.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805" (at 144.78 135.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 147.955 156.21 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 147.955 158.115 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC Part Number" "C2890035" (at 144.78 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;0;180" (at 144.78 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ae188abc-f3f6-4c1e-83e8-faaf9fb3567b))
(pin "2" (uuid da798db1-6e4b-4f49-bc45-080a3c2f926b))
(pin "3" (uuid b95e63f9-342a-4aa6-8aaa-572e37904642))
(pin "4" (uuid db2f81d8-6ff8-4934-9434-f17a4425cd68))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "D39") (unit 1)
)
)
)
)
(symbol (lib_id "SK6805-EC15:SK6805-EC15") (at 144.78 35.56 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 10227851-aa28-4edc-ba4e-959f57518212)
(property "Reference" "D7" (at 144.78 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805" (at 144.78 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 147.955 44.45 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 147.955 46.355 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC Part Number" "C2890035" (at 144.78 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;0;180" (at 144.78 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 52ba3943-1ef2-497f-a9d4-205e2022eb09))
(pin "2" (uuid 1fd4d791-d1df-4e60-b9c2-401c98208d0e))
(pin "3" (uuid d9e8068d-44d4-491c-bcc8-614c8ec6609c))
(pin "4" (uuid da9af58b-ca3f-404c-b77b-767f9db24950))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "D7") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 53.34 154.94 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 12403ea8-f707-4df6-bdc3-bf398b5a9b62)
(property "Reference" "#PWR0202" (at 53.34 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 55.88 156.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 53.34 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 53.34 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7a14e870-25ee-4546-b66a-e94214a2cbaf))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0202") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 160.02 154.94 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 13a81a14-3a4f-4b64-bcb1-39bf6bd652a3)
(property "Reference" "#PWR0193" (at 160.02 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 162.56 156.21 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 160.02 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 160.02 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1fcb30e3-51c0-4114-9903-50e7d65dc82a))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0193") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 114.3 182.88 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 16348bdc-e805-4be1-9540-3d8032813ad4)
(property "Reference" "#PWR0189" (at 114.3 189.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 116.84 184.15 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 114.3 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 114.3 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b5f1d317-df85-43a1-b925-74ff5a83840b))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0189") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 53.34 43.18 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1712bce1-82b2-4061-8271-332eb75bb1a6)
(property "Reference" "#PWR0220" (at 53.34 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 55.88 44.45 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 53.34 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 53.34 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3b16e01e-f1b7-4560-b476-1275688efb16))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0220") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 144.78 182.88 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 185b4af0-2feb-46ab-8998-dd3f59112d37)
(property "Reference" "#PWR0192" (at 144.78 189.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 147.32 184.15 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 144.78 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 144.78 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 38804bb9-3fc9-498c-b9dc-34ee8f79402f))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0192") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 160.02 55.88 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1a33c24f-a943-40a4-b943-af06484b52bf)
(property "Reference" "#PWR0147" (at 160.02 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 161.29 54.61 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 160.02 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 160.02 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c51d20b3-208f-4da3-a6c6-418dcddc5975))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0147") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 160.02 195.58 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1a39a2e6-3b36-4d60-b900-fea90dabc562)
(property "Reference" "#PWR0161" (at 160.02 199.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 161.29 194.31 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 160.02 195.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 160.02 195.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7cceffda-96c0-493b-95ef-e09b44506d7b))
(instances
(project "MicroMatrix"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR0161") (unit 1)
)
)
)
)
(symbol (lib_id "SK6805-EC15:SK6805-EC15") (at 53.34 35.56 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1cb64bfe-d819-47e3-be11-515b04f2c451)
(property "Reference" "D1" (at 53.34 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6805" (at 53.34 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SK6805-EC15:SK6805-EC15" (at 56.515 44.45 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108251530_OPSCO-Optoelectronics-SK6805-EC15_C2890035.pdf" (at 56.515 46.355 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC Part Number" "C2890035" (at 53.34 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB_CORRECTION" "0;0;180" (at 53.34 35.56 0)