Skip to content

Commit 742e409

Browse files
committed
Replace ArduinoBLE.h with STM32duinoBLE.h and create a new release for publication
1 parent bd1b0e0 commit 742e409

File tree

11 files changed

+14
-15
lines changed

11 files changed

+14
-15
lines changed

Diff for: examples/Central/LedControl/LedControl.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
This example code is in the public domain.
1515
*/
1616

17-
#include <ArduinoBLE.h>
17+
#include <STM32duinoBLE.h>
1818

1919
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
2020
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Central/PeripheralExplorer/PeripheralExplorer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
This example code is in the public domain.
1414
*/
1515

16-
#include <ArduinoBLE.h>
16+
#include <STM32duinoBLE.h>
1717

1818
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
1919
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Central/Scan/Scan.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
This example code is in the public domain.
1111
*/
1212

13-
#include <ArduinoBLE.h>
13+
#include <STM32duinoBLE.h>
1414

1515
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
1616
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Central/ScanCallback/ScanCallback.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
This example code is in the public domain.
1313
*/
1414

15-
#include <ArduinoBLE.h>
15+
#include <STM32duinoBLE.h>
1616

1717
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
1818
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Central/SensorTagButton/SensorTagButton.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
This example code is in the public domain.
1515
*/
1616

17-
#include <ArduinoBLE.h>
17+
#include <STM32duinoBLE.h>
1818

1919
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
2020
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Peripheral/ButtonLED/ButtonLED.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This example code is in the public domain.
1616
*/
1717

18-
#include <ArduinoBLE.h>
18+
#include <STM32duinoBLE.h>
1919

2020
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
2121
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Peripheral/CallbackLED/CallbackLED.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This example code is in the public domain.
1616
*/
1717

18-
#include <ArduinoBLE.h>
18+
#include <STM32duinoBLE.h>
1919

2020
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
2121
/* STEVAL-MKSBOX1V1 */

Diff for: examples/Peripheral/LED/LED.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
This example code is in the public domain.
1515
*/
16-
#include <ArduinoBLE.h>
16+
#include <STM32duinoBLE.h>
1717

1818
#if defined(ARDUINO_STEVAL_MKSBOX1V1)
1919
/* STEVAL-MKSBOX1V1 */

Diff for: keywords.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
#######################################
2-
# Syntax Coloring Map For ArduinoBLE
2+
# Syntax Coloring Map For STM32duinoBLE
33
#######################################
44

55
#######################################
66
# Datatypes (KEYWORD1)
77
#######################################
88

9-
ArduinoBLE KEYWORD1
10-
BLE KEYWORD1
9+
STM32duinoBLE KEYWORD1
1110

1211
BLEDevice KEYWORD1
1312
BLECharacteristic KEYWORD1

Diff for: library.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name=STM32duinoBLE
2-
version=1.1.2
2+
version=1.2.0
33
author=Arduino, SRA
44
maintainer=stm32duino
55
sentence=Fork of ArduinoBLE library to add the support of SPBTLE-RF and SPBTLE-1S BLE modules.
66
paragraph=This library supports creating a BLE peripheral and BLE central mode.
77
category=Communication
88
url=https://github.com/stm32duino/STM32duinoBLE
99
architectures=stm32
10-
includes=ArduinoBLE.h
10+
includes=STM32duinoBLE.h

Diff for: src/ArduinoBLE.h renamed to src/STM32duinoBLE.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1818
*/
1919

20-
#ifndef _ARDUINO_BLE_H_
21-
#define _ARDUINO_BLE_H_
20+
#ifndef _STM32DUINO_BLE_H_
21+
#define _STM32DUINO_BLE_H_
2222

2323
#include "local/BLELocalDevice.h"
2424
#include "BLEProperty.h"

0 commit comments

Comments
 (0)