-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrgbw_matrix.kicad_sch
7142 lines (7042 loc) · 305 KB
/
rgbw_matrix.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 30664587-cbcf-468a-a514-11fcad5c5f7a)
(paper "USLegal")
(lib_symbols
(symbol "C_Small_1" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C1" (id 0) (at 0.0063 5.2619 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "C_Small_1" (id 1) (at 0.0063 2.725 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_1_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1_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 "Connector:Conn_01x07_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x07_Female" (id 1) (at 0 -10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x07_Female_1_1"
(arc (start 0 -7.112) (mid -0.508 -7.62) (end 0 -8.128)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -7.62)
(xy -0.508 -7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 5.08)
(xy -0.508 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 7.62)
(xy -0.508 7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 5.588) (mid -0.508 5.08) (end 0 4.572)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 8.128) (mid -0.508 7.62) (end 0 7.112)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 7.62 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 5.08 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))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:1.8k" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R1" (id 0) (at 2.54 1.2701 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.8k" (id 1) (at 2.54 -1.2699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0201_0603Metric" (id 2) (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1.8k_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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) (color 0 0 0 0))
(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) (color 0 0 0 0))
(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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "1.8k_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 "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "local2:TLC59283DBQR" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "IC" (id 0) (at 26.67 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TLC59283DBQR" (id 1) (at 26.67 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "SOP64P600X175-24N" (id 2) (at 26.67 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/tlc59283" (id 3) (at 26.67 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "16 Channel Constant Current LED Driver with Pre-Charge FET" (id 4) (at 26.67 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "1.75" (id 5) (at 26.67 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "595-TLC59283DBQR" (id 6) (at 26.67 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TLC59283DBQR?qs=Z9twEOuL%252B%2FK2pUv1QlC%252B%2Fw%3D%3D" (id 7) (at 26.67 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Texas Instruments" (id 8) (at 26.67 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "TLC59283DBQR" (id 9) (at 26.67 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "TLC59283DBQR_0_0"
(pin power_in line (at 0 0 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -22.86 0) (length 5.08)
(name "OUT5" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -25.4 0) (length 5.08)
(name "OUT6" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -27.94 0) (length 5.08)
(name "OUT7" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -27.94 180) (length 5.08)
(name "OUT8" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -25.4 180) (length 5.08)
(name "OUT9" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -22.86 180) (length 5.08)
(name "OUT10" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -20.32 180) (length 5.08)
(name "OUT11" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -17.78 180) (length 5.08)
(name "OUT12" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -15.24 180) (length 5.08)
(name "OUT13" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -12.7 180) (length 5.08)
(name "OUT14" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -2.54 0) (length 5.08)
(name "SIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -10.16 180) (length 5.08)
(name "OUT15" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 30.48 -7.62 180) (length 5.08)
(name "BLANK" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -5.08 180) (length 5.08)
(name "SOUT" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 30.48 -2.54 180) (length 5.08)
(name "IREF" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 30.48 0 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -5.08 0) (length 5.08)
(name "SCLK" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -7.62 0) (length 5.08)
(name "LAT" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -10.16 0) (length 5.08)
(name "OUT0" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -12.7 0) (length 5.08)
(name "OUT1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -15.24 0) (length 5.08)
(name "OUT2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -17.78 0) (length 5.08)
(name "OUT3" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -20.32 0) (length 5.08)
(name "OUT4" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "TLC59283DBQR_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 25.4 2.54)
(xy 25.4 -30.48)
(xy 5.08 -30.48)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "local:IN-P55QDTRGBW" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "LED" (id 0) (at 34.29 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "IN-P55QDTRGBW" (id 1) (at 34.29 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "INP55QDTRGBW" (id 2) (at 34.29 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://www.inolux-corp.com/datasheet/SMDLED/RGBW%20Top%20View/IN-P55QDTRGBW_V1.0.pdf" (id 3) (at 34.29 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Standard LEDs - SMD RGBW LED" (id 4) (at 34.29 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "1.9" (id 5) (at 34.29 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "743-IN-P55QDTRGBW" (id 6) (at 34.29 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Inolux/IN-P55QDTRGBW?qs=stqOd1AaK78tLn2kfF8cBA%3D%3D" (id 7) (at 34.29 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Inolux" (id 8) (at 34.29 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "IN-P55QDTRGBW" (id 9) (at 34.29 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "IN-P55QDTRGBW_0_0"
(pin passive line (at 0 0 0) (length 5.08)
(name "K_WHITE_" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "K_BLUE" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 5.08)
(name "K_GREEN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 5.08)
(name "K_RED" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 38.1 -7.62 180) (length 5.08)
(name "A_RED" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 38.1 -5.08 180) (length 5.08)
(name "A_GREEN" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 38.1 -2.54 180) (length 5.08)
(name "A_BLUE" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 38.1 0 180) (length 5.08)
(name "A_WHITE" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
(symbol "IN-P55QDTRGBW_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 33.02 2.54)
(xy 33.02 -10.16)
(xy 5.08 -10.16)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "flag power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 180.975 100.965) (diameter 0) (color 0 0 0 0)
(uuid 0229079c-ce02-4962-8c48-d1a00e094496)
)
(junction (at 180.975 59.055) (diameter 0) (color 0 0 0 0)
(uuid 04562ec5-2923-4016-83f9-c0d94c5ee2cb)
)
(junction (at 233.045 118.745) (diameter 0) (color 0 0 0 0)
(uuid 0813ee55-2bc7-4498-b20a-9ea3f2a2ea3b)
)
(junction (at 284.48 123.825) (diameter 0) (color 0 0 0 0)
(uuid 08fee729-1028-417a-b711-5d65aa2891f4)
)
(junction (at 232.41 78.105) (diameter 0) (color 0 0 0 0)
(uuid 0b825250-6e0a-4188-98fa-7421d587b926)
)
(junction (at 335.28 24.765) (diameter 0) (color 0 0 0 0)
(uuid 0bc4c686-9998-490e-b8f9-af78730252bb)
)
(junction (at 335.915 115.57) (diameter 0) (color 0 0 0 0)
(uuid 0e5e4d2e-2f01-43ae-85e4-0d4df781e375)
)
(junction (at 283.845 43.815) (diameter 0) (color 0 0 0 0)
(uuid 13f76547-f538-437d-a7b6-5e354188a438)
)
(junction (at 232.41 67.945) (diameter 0) (color 0 0 0 0)
(uuid 18197e69-f2ce-498d-92f1-0b93f49263e9)
)
(junction (at 283.845 86.36) (diameter 0) (color 0 0 0 0)
(uuid 18d6b411-443c-4d45-b033-4ca947c65b85)
)
(junction (at 83.82 88.265) (diameter 0) (color 0 0 0 0)
(uuid 1a0a3aac-149b-49c2-8b1c-20f1ffb125b4)
)
(junction (at 335.28 27.305) (diameter 0) (color 0 0 0 0)
(uuid 1c3ef210-5032-44a5-854e-68d07282ec9d)
)
(junction (at 335.28 43.815) (diameter 0) (color 0 0 0 0)
(uuid 1cad0b96-c115-4a6c-95ca-7ddef7b22997)
)
(junction (at 232.41 81.28) (diameter 0) (color 0 0 0 0)
(uuid 1cc0a19c-b926-49e6-b066-025a61a96672)
)
(junction (at 180.975 45.72) (diameter 0) (color 0 0 0 0)
(uuid 1d189b15-54d8-4e39-bcf5-698a28d08686)
)
(junction (at 232.41 101.6) (diameter 0) (color 0 0 0 0)
(uuid 1dce3e87-3a9a-4ac4-ba67-c322aaec524b)
)
(junction (at 232.41 86.36) (diameter 0) (color 0 0 0 0)
(uuid 201cec6d-15cb-4784-b051-1a85404c2520)
)
(junction (at 180.975 62.23) (diameter 0) (color 0 0 0 0)
(uuid 20e6ae1e-aa69-43d6-bd96-ea2b5e236d46)
)
(junction (at 55.88 141.605) (diameter 0) (color 0 0 0 0)
(uuid 2192b2dc-cf5c-4a4e-a8f8-0d701cc528b8)
)
(junction (at 111.125 142.24) (diameter 0) (color 0 0 0 0)
(uuid 21ae9d16-1bf5-4088-abad-fe3e5b96b72e)
)
(junction (at 27.94 141.605) (diameter 0) (color 0 0 0 0)
(uuid 2273e752-1f92-419b-938a-b69fd2fbee71)
)
(junction (at 233.045 123.825) (diameter 0) (color 0 0 0 0)
(uuid 285f5d5c-c78d-4949-b2f6-c240e8f65be3)
)
(junction (at 283.845 67.945) (diameter 0) (color 0 0 0 0)
(uuid 2900b322-6da5-40cf-b2c6-04b6294c6df8)
)
(junction (at 180.975 67.31) (diameter 0) (color 0 0 0 0)
(uuid 2a6607c7-75d7-407c-9b8d-a529278b7eb0)
)
(junction (at 233.045 115.57) (diameter 0) (color 0 0 0 0)
(uuid 2ba146b7-c7d2-4d4d-8267-92a04f10cb21)
)
(junction (at 181.61 118.11) (diameter 0) (color 0 0 0 0)
(uuid 2bab6253-214e-4e4b-9707-256bf34b158f)
)
(junction (at 283.845 78.105) (diameter 0) (color 0 0 0 0)
(uuid 2d763a86-2326-48f2-a125-b2860a3572c4)
)
(junction (at 83.82 27.305) (diameter 0) (color 0 0 0 0)
(uuid 31f9437b-0168-4e11-a38e-48595f913340)
)
(junction (at 335.915 121.285) (diameter 0) (color 0 0 0 0)
(uuid 346981d6-bb3a-461f-9446-36e546919934)
)
(junction (at 181.61 114.935) (diameter 0) (color 0 0 0 0)
(uuid 370f51df-cec7-49b2-bef5-f0396b326d54)
)
(junction (at 180.975 85.725) (diameter 0) (color 0 0 0 0)
(uuid 3d86d3fd-5cda-4a8e-9d03-8de74358de5f)
)
(junction (at 180.975 29.21) (diameter 0) (color 0 0 0 0)
(uuid 40db615a-6064-4894-9dc1-e58514b44130)
)
(junction (at 283.845 81.28) (diameter 0) (color 0 0 0 0)
(uuid 45136180-98cd-4324-83c5-c0ee203c4c60)
)
(junction (at 180.975 95.25) (diameter 0) (color 0 0 0 0)
(uuid 4b164df6-a1ac-4db4-93d8-7b859218872b)
)
(junction (at 57.785 88.9) (diameter 0) (color 0 0 0 0)
(uuid 4c589c34-63c1-4205-804b-a35b0d7f2129)
)
(junction (at 31.75 27.305) (diameter 0) (color 0 0 0 0)
(uuid 507665ea-3454-43c6-af49-b021af543818)
)
(junction (at 283.845 48.895) (diameter 0) (color 0 0 0 0)
(uuid 512f99ba-d45d-4d0b-b362-be78c401f7d3)
)
(junction (at 59.69 27.305) (diameter 0) (color 0 0 0 0)
(uuid 53eef6f7-7d8a-43b3-9347-34646ae2a175)
)
(junction (at 335.915 118.745) (diameter 0) (color 0 0 0 0)
(uuid 5495aea3-593e-4bd3-8d80-faa7ada9b9f0)
)
(junction (at 111.76 27.305) (diameter 0) (color 0 0 0 0)
(uuid 54b66774-5365-40c5-8725-1a9d4d3bf119)
)
(junction (at 180.975 80.645) (diameter 0) (color 0 0 0 0)
(uuid 56493dd3-aeb4-4b29-b1bd-35cb3c27d25b)
)
(junction (at 181.61 120.65) (diameter 0) (color 0 0 0 0)
(uuid 57851c7a-dec7-4df9-9968-8f1fe554e295)
)
(junction (at 232.41 104.14) (diameter 0) (color 0 0 0 0)
(uuid 583e04c7-6c83-4db1-ad34-196ad8472503)
)
(junction (at 181.61 123.19) (diameter 0) (color 0 0 0 0)
(uuid 5a6bdb54-673d-4fd3-88d1-c2ce7f449caa)
)
(junction (at 232.41 40.64) (diameter 0) (color 0 0 0 0)
(uuid 5a87470b-e46c-4ffa-b688-5e0595fb4479)
)
(junction (at 232.41 43.815) (diameter 0) (color 0 0 0 0)
(uuid 5b689010-a550-4060-8222-2e1f0faeee69)
)
(junction (at 232.41 99.06) (diameter 0) (color 0 0 0 0)
(uuid 5c6c3d8d-0d07-4509-b1ab-988101c0eeac)
)
(junction (at 284.48 118.745) (diameter 0) (color 0 0 0 0)
(uuid 5eb099fb-b7e1-4db8-9d19-a4e12e423829)
)
(junction (at 335.28 62.865) (diameter 0) (color 0 0 0 0)
(uuid 6393fa36-57d5-4aa7-9821-5dbb6e8003f6)
)
(junction (at 232.41 24.765) (diameter 0) (color 0 0 0 0)
(uuid 63a41674-9d12-4c11-9cad-0ebafe3ffc3c)
)
(junction (at 232.41 59.69) (diameter 0) (color 0 0 0 0)
(uuid 690ae1d6-bfa3-4a92-a780-efbb803fa7a4)
)
(junction (at 283.845 104.14) (diameter 0) (color 0 0 0 0)
(uuid 6bc07876-c832-4b5a-be65-d3ef5485d454)
)
(junction (at 111.76 88.265) (diameter 0) (color 0 0 0 0)
(uuid 6d9ce0a7-c95b-4a89-8450-82edfb4d4d58)
)
(junction (at 283.845 21.59) (diameter 0) (color 0 0 0 0)
(uuid 6ef3a407-e72d-4835-accf-5074173e2f4a)
)
(junction (at 335.28 59.69) (diameter 0) (color 0 0 0 0)
(uuid 6f488c87-a2c2-4332-b026-2cf58fede68f)
)
(junction (at 232.41 21.59) (diameter 0) (color 0 0 0 0)
(uuid 720e4590-3545-4cfa-8e8f-f2ac37f1d9d7)
)
(junction (at 335.28 29.845) (diameter 0) (color 0 0 0 0)
(uuid 72b43147-f425-4e91-93cd-5875612ea2bf)
)
(junction (at 283.845 40.64) (diameter 0) (color 0 0 0 0)
(uuid 74146e4b-bf56-4922-a4ce-b07b302bdd22)
)
(junction (at 335.28 48.895) (diameter 0) (color 0 0 0 0)
(uuid 77b3e864-40f2-4285-948f-9c9c924f8b78)
)
(junction (at 232.41 65.405) (diameter 0) (color 0 0 0 0)
(uuid 78f9efec-4fa7-407e-84e3-48d3abe97a85)
)
(junction (at 232.41 46.355) (diameter 0) (color 0 0 0 0)
(uuid 7fd03cd8-3590-4cf4-a547-ef6e918a659d)
)
(junction (at 283.845 95.885) (diameter 0) (color 0 0 0 0)
(uuid 8105dba2-d0a7-4092-9db5-aed32bc6dfe7)
)
(junction (at 180.975 26.67) (diameter 0) (color 0 0 0 0)
(uuid 8351ada5-6286-47e3-a14b-f7a41056a0a0)
)
(junction (at 283.845 59.69) (diameter 0) (color 0 0 0 0)
(uuid 8581f8ae-175f-4eb7-be77-e810e4e2cb38)
)
(junction (at 283.845 101.6) (diameter 0) (color 0 0 0 0)
(uuid 89bcac3b-1853-45f8-b143-bf2eaf72aef2)
)
(junction (at 180.975 83.185) (diameter 0) (color 0 0 0 0)
(uuid 8e23f7ff-e521-4171-8de6-e7ddf077ad70)
)
(junction (at 180.975 24.13) (diameter 0) (color 0 0 0 0)
(uuid 903d211a-50dd-478e-8d60-c7b2cbf0f090)
)
(junction (at 335.28 46.355) (diameter 0) (color 0 0 0 0)
(uuid 9185a72b-e90a-495a-90fe-22d41646e027)
)
(junction (at 232.41 83.82) (diameter 0) (color 0 0 0 0)
(uuid 92d87f84-5fd8-4323-b685-5554abfb6b32)
)
(junction (at 180.975 43.18) (diameter 0) (color 0 0 0 0)
(uuid 9537577d-64d9-4218-8eaf-5577828d7f25)
)
(junction (at 335.28 67.945) (diameter 0) (color 0 0 0 0)
(uuid 974b52be-bcae-4080-8f1c-191a7799c63a)
)
(junction (at 180.975 103.505) (diameter 0) (color 0 0 0 0)
(uuid 986b83bd-4154-4806-aec3-27689f89b55f)
)
(junction (at 335.28 40.64) (diameter 0) (color 0 0 0 0)
(uuid 9ec81eb9-ef74-4302-bb2f-505196d5e1d8)
)
(junction (at 172.72 148.59) (diameter 0) (color 0 0 0 0)
(uuid a393c1a2-abe5-4ed0-93c1-4cd8537d4e54)
)
(junction (at 335.28 65.405) (diameter 0) (color 0 0 0 0)
(uuid a3f35f6f-2e16-4912-bc8c-6a481e12242c)
)
(junction (at 180.975 77.47) (diameter 0) (color 0 0 0 0)
(uuid a805a91c-3581-4cb5-96f6-06892487f0d0)
)
(junction (at 335.28 78.105) (diameter 0) (color 0 0 0 0)
(uuid a9413d1f-8f67-4d9b-8b84-80231178eaba)
)
(junction (at 232.41 29.845) (diameter 0) (color 0 0 0 0)
(uuid a98c7a5a-5ac8-4ed6-9760-361cc78243d6)
)
(junction (at 283.845 65.405) (diameter 0) (color 0 0 0 0)
(uuid adbdf0b2-6939-4d0c-8f87-7f4130ec900b)
)
(junction (at 232.41 62.865) (diameter 0) (color 0 0 0 0)
(uuid ae515872-f8bf-4b17-887d-cf608efb5927)
)
(junction (at 283.845 62.865) (diameter 0) (color 0 0 0 0)
(uuid b1345856-35db-462d-9abf-bd8a63fd2498)
)
(junction (at 232.41 95.885) (diameter 0) (color 0 0 0 0)
(uuid b2170b03-f00c-422e-a25f-d445f94adafb)
)
(junction (at 335.28 104.14) (diameter 0) (color 0 0 0 0)
(uuid b25a2fac-fd94-43fb-8d6f-a26d2ad2b67e)
)
(junction (at 283.845 46.355) (diameter 0) (color 0 0 0 0)
(uuid b30d221d-2a9c-4611-a5ab-19dcb593b082)
)
(junction (at 335.915 123.825) (diameter 0) (color 0 0 0 0)
(uuid b69c3aad-2f69-4db6-b11d-aee3e1a871e5)
)
(junction (at 180.975 40.005) (diameter 0) (color 0 0 0 0)
(uuid b8bde129-27de-472d-939f-be627061482e)
)
(junction (at 283.845 29.845) (diameter 0) (color 0 0 0 0)
(uuid b9858b3d-b438-41c5-b97c-ca0d73895ae0)
)
(junction (at 335.28 101.6) (diameter 0) (color 0 0 0 0)
(uuid bbb45f38-d169-4765-814e-551a3797faab)
)
(junction (at 180.975 20.955) (diameter 0) (color 0 0 0 0)
(uuid c1302d4e-446c-4592-b119-b76695bf7005)
)
(junction (at 232.41 27.305) (diameter 0) (color 0 0 0 0)
(uuid c1e8d5d2-e78d-4879-94fa-7bc10427b1d5)
)
(junction (at 83.185 142.24) (diameter 0) (color 0 0 0 0)
(uuid c4c5a98b-92be-4bb9-9660-9c287fffe1f9)
)
(junction (at 180.975 64.77) (diameter 0) (color 0 0 0 0)
(uuid c53aff11-afec-4782-9902-29a5f46c63dd)
)
(junction (at 233.045 121.285) (diameter 0) (color 0 0 0 0)
(uuid cf122ca2-a6e7-4ff5-8fbe-1569d2dbaae2)
)
(junction (at 335.28 83.82) (diameter 0) (color 0 0 0 0)
(uuid cf31c070-8439-44fd-b3ec-47e2439a70d1)
)
(junction (at 335.28 81.28) (diameter 0) (color 0 0 0 0)
(uuid d041306a-3c2c-46a9-8b04-43326210fd25)
)
(junction (at 284.48 115.57) (diameter 0) (color 0 0 0 0)
(uuid d677c151-b6e4-464e-a7f2-0e586787e380)
)
(junction (at 335.28 21.59) (diameter 0) (color 0 0 0 0)
(uuid d86834cc-d0e7-44bc-a3c5-539ada2d17d7)
)
(junction (at 283.845 99.06) (diameter 0) (color 0 0 0 0)
(uuid ddbb3b14-211b-4ad3-bc0f-5b23f6ee290e)
)
(junction (at 29.845 88.9) (diameter 0) (color 0 0 0 0)
(uuid e15e432c-a940-444a-b8c5-ee0f52cef8c4)
)
(junction (at 283.845 24.765) (diameter 0) (color 0 0 0 0)
(uuid e7c9ef29-d3af-4220-b116-9e759f12da73)
)
(junction (at 335.28 99.06) (diameter 0) (color 0 0 0 0)
(uuid e8cf235d-92e6-49e3-8270-6b519b1434de)
)
(junction (at 335.28 86.36) (diameter 0) (color 0 0 0 0)
(uuid ea632888-f547-4d2b-8d9b-daf8d3afd9e9)
)
(junction (at 232.41 48.895) (diameter 0) (color 0 0 0 0)
(uuid eb166fbf-1e6e-4ace-b236-f6ee1bb33fc7)
)
(junction (at 284.48 121.285) (diameter 0) (color 0 0 0 0)
(uuid ecface35-aea6-497e-b68f-1c1a53cb75f9)
)
(junction (at 283.845 27.305) (diameter 0) (color 0 0 0 0)
(uuid ef0f7da6-ccae-4968-aba7-023e2ce33345)
)
(junction (at 283.845 83.82) (diameter 0) (color 0 0 0 0)
(uuid f52e74c1-8245-4671-9938-a778fe5fb8f4)
)
(junction (at 180.975 98.425) (diameter 0) (color 0 0 0 0)
(uuid f888a0bf-60d7-4886-86ca-208344081bb3)
)
(junction (at 335.28 95.885) (diameter 0) (color 0 0 0 0)
(uuid faaea4df-11eb-4ffd-8e93-b5896033853e)
)
(junction (at 180.975 48.26) (diameter 0) (color 0 0 0 0)
(uuid fe0d37bf-d46e-48fb-b9f9-1d5e77c4b459)
)
(wire (pts (xy 292.735 118.745) (xy 295.275 118.745))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 005075a8-157d-4f50-bb78-756d1a75b860)
)
(wire (pts (xy 114.3 168.91) (xy 111.125 168.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0053ef54-1ad4-4282-bdc8-f514cd334335)
)