Control Surface
main
MIDI Control Surface library for Arduino
Toggle main menu visibility
Main Page
User Manual
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
u
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Typedefs
a
b
c
k
m
n
p
t
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
i
l
m
p
r
s
t
v
w
Enumerations
Enumerator
a
b
d
f
h
i
l
m
n
o
p
r
s
v
w
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
g
i
l
m
o
p
s
u
v
Variables
c
e
f
h
i
l
m
n
o
p
s
u
v
Typedefs
a
b
c
e
f
i
k
m
n
p
s
t
u
v
Enumerations
Enumerator
Macros
a
b
c
d
e
f
h
i
n
u
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
src
MIDI_Inputs
LEDs
NoteCCKPRangeFastLED.cpp
Go to the documentation of this file.
1
#include "
NoteCCKPRangeFastLED.hpp
"
2
#include "
NovationLaunchpadColorLUT.hpp
"
3
#include <
AH/Arduino-Wrapper.h
>
// pgm_read_byte_near
4
5
BEGIN_CS_NAMESPACE
6
7
Color
velocityToNovationColor
(uint8_t value) {
8
value &= 0x7F;
9
uint8_t r = pgm_read_byte_near(&
NovationLaunchpadColorLUT
[value][2]);
10
uint8_t g = pgm_read_byte_near(&
NovationLaunchpadColorLUT
[value][1]);
11
uint8_t b = pgm_read_byte_near(&
NovationLaunchpadColorLUT
[value][0]);
12
return
Color
{r, g, b};
13
}
7
Color
velocityToNovationColor
(uint8_t value) {
…
}
14
15
END_CS_NAMESPACE
Arduino-Wrapper.h
velocityToNovationColor
Color velocityToNovationColor(uint8_t value)
The default mapping from a 7-bit MIDI value to an RGB color, using the Novation Launchpad mapping.
Definition
NoteCCKPRangeFastLED.cpp:7
NoteCCKPRangeFastLED.hpp
NovationLaunchpadColorLUT.hpp
NovationLaunchpadColorLUT
static const uint8_t NovationLaunchpadColorLUT[][3]
Lookup table for the colors of the LEDs used by Novation Launchpad control surfaces.
Definition
NovationLaunchpadColorLUT.hpp:7
END_CS_NAMESPACE
#define END_CS_NAMESPACE
Definition
Settings/NamespaceSettings.hpp:14
BEGIN_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
Definition
Settings/NamespaceSettings.hpp:11
Color
A structure for RGB colors.
Definition
NoteCCKPRangeFastLED.hpp:12
Generated by
1.10.0