Hello
happy new year !!!
I have a question, is this someone (user or dev team) will have the complete list of Hexadecimal color codes (red, orange, yellow green more variant) for launchpad and launchpad S
please ?
or a method to be able to find them all ????
please ?
Thanks in advance ;)
PS : sorry if my English is bad
happy new year !!!
I have a question, is this someone (user or dev team) will have the complete list of Hexadecimal color codes (red, orange, yellow green more variant) for launchpad and launchpad S
please ?
or a method to be able to find them all ????
please ?
Thanks in advance ;)
PS : sorry if my English is bad
Posted Sat 03 Jan 15 @ 1:50 pm
Posted Sat 03 Jan 15 @ 3:29 pm
Not sure if this is what you've been looking for, but I've been playing around with Microsoft's C++ MIDI library and my recently purchased Novation Launchpad Mini.
There are many numbers that can give you green, yellow, orange, and red; my favorite are 0x3C, 0x32, 0x5A, and 0x46 respectively. 0x00 turns an LED off.
A way to find all of them, would be to write a for loop that incrementally sends values from 0-79 to each of the 80 LEDs. Then take note of the colors and do it again from 80-159.
There are many numbers that can give you green, yellow, orange, and red; my favorite are 0x3C, 0x32, 0x5A, and 0x46 respectively. 0x00 turns an LED off.
A way to find all of them, would be to write a for loop that incrementally sends values from 0-79 to each of the 80 LEDs. Then take note of the colors and do it again from 80-159.
Posted Sun 04 Jan 15 @ 11:37 am
Here is how the Launchpad has been defined..
0x08=#000000
0x09=#550000
0x0A=#AA0000
0x0B=#FF0000
0x18=#005500
0x28=#00AA00
0x38=#00FF00
0x19=#555500
0x1A=AA5500
0x1B=#FF5500
0x29=#55AA00
0x2A=#AAAA00
0x2B=#FFAA00
0x39=#55FF00
0x3A=#AAFF00
0x3B=#FFFF00
E.g. #FF0000 is a full red, #00FF00 is a full green and #550000 is a low red
But of course the html color codes is something that could be defined differently, as the document from Novation only offers description for the colors that each hex value has.
0x08=#000000
0x09=#550000
0x0A=#AA0000
0x0B=#FF0000
0x18=#005500
0x28=#00AA00
0x38=#00FF00
0x19=#555500
0x1A=AA5500
0x1B=#FF5500
0x29=#55AA00
0x2A=#AAAA00
0x2B=#FFAA00
0x39=#55FF00
0x3A=#AAFF00
0x3B=#FFFF00
E.g. #FF0000 is a full red, #00FF00 is a full green and #550000 is a low red
But of course the html color codes is something that could be defined differently, as the document from Novation only offers description for the colors that each hex value has.
Posted Sun 04 Jan 15 @ 12:16 pm
Thanks djdad
Posted Tue 06 Jan 15 @ 11:43 am