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_Interfaces
USBMIDI
USBMIDI_ESP32.hpp
Go to the documentation of this file.
1
#include <
AH/Containers/Array.hpp
>
2
#include <Settings/NamespaceSettings.hpp>
3
4
#include <USB.h>
5
#include <USBMIDI.h>
6
7
BEGIN_CS_NAMESPACE
8
9
struct
ESP32_USBDeviceMIDIBackend
{
11
using
MIDIUSBPacket_t
=
AH::Array<uint8_t, 4>
;
13
void
begin
() {
14
backend
.begin();
15
USB.begin();
16
}
13
void
begin
() {
…
}
18
MIDIUSBPacket_t
read
() {
19
midiEventPacket_t packet {0, 0, 0, 0};
20
backend
.readPacket(&packet);
21
return
{packet.header, packet.byte1, packet.byte2, packet.byte3};
22
}
18
MIDIUSBPacket_t
read
() {
…
}
24
void
write
(
MIDIUSBPacket_t
p) {
25
midiEventPacket_t packet {p[0], p[1], p[2], p[3]};
26
backend
.writePacket(&packet);
27
}
24
void
write
(
MIDIUSBPacket_t
p) {
…
}
29
void
sendNow
() {}
31
bool
preferImmediateSend
() {
return
false
; }
33
USBMIDI
backend
;
34
};
9
struct
ESP32_USBDeviceMIDIBackend
{
…
};
35
36
END_CS_NAMESPACE
Array.hpp
END_CS_NAMESPACE
#define END_CS_NAMESPACE
Definition
Settings/NamespaceSettings.hpp:14
BEGIN_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
Definition
Settings/NamespaceSettings.hpp:11
AH::SPIShiftRegisterOut
A class for serial-in/parallel-out shift registers, like the 74HC595 that are connected to the SPI bu...
Definition
SPIShiftRegisterOut.hpp:28
AH::Array< uint8_t, 4 >
ESP32_USBDeviceMIDIBackend
Definition
USBMIDI_ESP32.hpp:9
ESP32_USBDeviceMIDIBackend::sendNow
void sendNow()
Transmit the output buffer immediately (not implemented).
Definition
USBMIDI_ESP32.hpp:29
ESP32_USBDeviceMIDIBackend::read
MIDIUSBPacket_t read()
Read a single packet. Return a packet of all zeros if there is no packet.
Definition
USBMIDI_ESP32.hpp:18
ESP32_USBDeviceMIDIBackend::write
void write(MIDIUSBPacket_t p)
Write a single packet to the output buffer.
Definition
USBMIDI_ESP32.hpp:24
ESP32_USBDeviceMIDIBackend::preferImmediateSend
bool preferImmediateSend()
No explicit call to sendNow is required.
Definition
USBMIDI_ESP32.hpp:31
ESP32_USBDeviceMIDIBackend::backend
USBMIDI backend
The actual low-level USB MIDI backend provided by the core libraries.
Definition
USBMIDI_ESP32.hpp:33
ESP32_USBDeviceMIDIBackend::begin
void begin()
Called once upon initialization.
Definition
USBMIDI_ESP32.hpp:13
Generated by
1.10.0