File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#include "BLEMIDI_Namespace.h"
4
4
5
- // As specified in
6
- // Specification for MIDI over Bluetooth Low Energy (BLE-MIDI)
7
- // Version 1.0a, NOvember 1, 2015
8
- // 3. BLE Service and Characteristics Definitions
9
- #define SERVICE_UUID "03b80e5a-ede8-4b33-a751-6ce34ec4c700"
10
- #define CHARACTERISTIC_UUID "7772e5db-3868-4112-a1a9-f2669d106bf3"
11
-
12
5
#if ARDUINO
13
6
#include <Arduino.h>
14
7
#else
Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ BEGIN_BLEMIDI_NAMESPACE
14
14
15
15
using namespace MIDI_NAMESPACE ;
16
16
17
+ // As specified in
18
+ // Specification for MIDI over Bluetooth Low Energy (BLE-MIDI)
19
+ // Version 1.0a, November 1, 2015
20
+ // 3. BLE Service and Characteristics Definitions
21
+ static const char *const SERVICE_UUID = " 03b80e5a-ede8-4b33-a751-6ce34ec4c700" ;
22
+ static const char *const CHARACTERISTIC_UUID = " 7772e5db-3868-4112-a1a9-f2669d106bf3" ;
23
+
17
24
#define MIDI_TYPE 0x80
18
25
19
26
template <class T , class _Settings = DefaultSettings>
You can’t perform that action at this time.
0 commit comments