BLE-MIDI => BLEMIDI in filenames
This commit is contained in:
parent
b22cc18fc0
commit
700159ab93
|
|
@ -13,8 +13,8 @@ When manually installing this library, you have to manually download [Arduino MI
|
|||
## Usage
|
||||
### Basic / Default
|
||||
```cpp
|
||||
#include <BLE-MIDI.h>
|
||||
#include <hardware/BLE-MIDI_ESP32.h>
|
||||
#include <BLEMIDI.h>
|
||||
#include <hardware/BLEMIDI_ESP32.h>
|
||||
...
|
||||
BLEMIDI_CREATE_DEFAULT_ESP32_INSTANCE();
|
||||
...
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#include <BLE-MIDI.h>
|
||||
#include <BLEMIDI.h>
|
||||
|
||||
#include <hardware/BLEMIDI_ESP32_NimBLE.h>
|
||||
//#include <hardware/BLEMIDI_ESP32.h>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#######################################
|
||||
# Datatypes (KEYWORD1)
|
||||
#######################################
|
||||
BLE-MIDI.h KEYWORD1
|
||||
BLEMIDI.h KEYWORD1
|
||||
BLEMIDI KEYWORD1
|
||||
|
||||
#######################################
|
||||
|
|
|
|||
|
|
@ -7,5 +7,5 @@ paragraph=MIDI over Bluetooth Low Energy (BLE-MIDI) 1.0 for Arduino
|
|||
category=Communication
|
||||
url=https://github.com/lathoub/Arduino-BLE-MIDI
|
||||
architectures=esp32,samd,megaavr,mbed,nrf52
|
||||
includes=BLE-MIDI.h
|
||||
includes=BLEMIDI.h
|
||||
depends=MIDI Library, NimBLE-Arduino, ArduinoBLE
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
#include "BLE-MIDI.h"
|
||||
|
|
@ -0,0 +1 @@
|
|||
#include "BLEMIDI.h"
|
||||
|
|
@ -7,9 +7,9 @@
|
|||
#include <MIDI.h>
|
||||
using namespace MIDI_NAMESPACE;
|
||||
|
||||
#include "BLE-MIDI_Settings.h"
|
||||
#include "BLE-MIDI_Defs.h"
|
||||
#include "BLE-MIDI_Namespace.h"
|
||||
#include "BLEMIDI_Settings.h"
|
||||
#include "BLEMIDI_Defs.h"
|
||||
#include "BLEMIDI_Namespace.h"
|
||||
|
||||
BEGIN_BLEMIDI_NAMESPACE
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "BLE-MIDI_Namespace.h"
|
||||
#include "BLEMIDI_Namespace.h"
|
||||
|
||||
// As specified in
|
||||
// Specification for MIDI over Bluetooth Low Energy (BLE-MIDI)
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "BLE-MIDI_Namespace.h"
|
||||
#include "BLEMIDI_Namespace.h"
|
||||
|
||||
BEGIN_BLEMIDI_NAMESPACE
|
||||
|
||||
Loading…
Reference in New Issue