Skip to content

Commit

Permalink
BLE-MIDI => BLEMIDI in filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
lathoub committed Oct 3, 2020
1 parent b22cc18 commit 700159a
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
...
Expand Down
2 changes: 1 addition & 1 deletion examples/MidiBle/MidiBle.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <BLE-MIDI.h>
#include <BLEMIDI.h>

#include <hardware/BLEMIDI_ESP32_NimBLE.h>
//#include <hardware/BLEMIDI_ESP32.h>
Expand Down
2 changes: 1 addition & 1 deletion keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#######################################
# Datatypes (KEYWORD1)
#######################################
BLE-MIDI.h KEYWORD1
BLEMIDI.h KEYWORD1
BLEMIDI KEYWORD1

#######################################
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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 change: 0 additions & 1 deletion src/BLE-MIDI.cpp

This file was deleted.

1 change: 1 addition & 0 deletions src/BLEMIDI.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "BLEMIDI.h"
6 changes: 3 additions & 3 deletions src/BLE-MIDI.h → src/BLEMIDI.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/BLE-MIDI_Defs.h → src/BLEMIDI_Defs.h
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/BLE-MIDI_Settings.h → src/BLEMIDI_Settings.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "BLE-MIDI_Namespace.h"
#include "BLEMIDI_Namespace.h"

BEGIN_BLEMIDI_NAMESPACE

Expand Down

0 comments on commit 700159a

Please sign in to comment.