Skip to content

Commit c59b431

Browse files
committed
Rename to
1 parent ad8b870 commit c59b431

File tree

11 files changed

+25
-15
lines changed

11 files changed

+25
-15
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
👋 This is an **unofficial** fork of the official ArduinoBLE library, that incorporates the following pull requests originally submitted to the upstream repository:
2+
3+
<!-- pull requests -->
4+
5+
You can consider this as an experimental version of the library, that you can use to test features contributed by the community that haven't been merged yet.
6+
7+
If you want to contribute, please submit issues and pull requests to the [upstream repository](https://github.com/arduino-libraries/ArduinoBLE).
8+
9+
---
10+
111
# ArduinoBLE
212

3-
[![Compile Examples Status](https://github.com/arduino-libraries/ArduinoBLE/workflows/Compile%20Examples/badge.svg)](https://github.com/arduino-libraries/ArduinoBLE/actions?workflow=Compile+Examples) [![Spell Check Status](https://github.com/arduino-libraries/ArduinoBLE/workflows/Spell%20Check/badge.svg)](https://github.com/arduino-libraries/ArduinoBLE/actions?workflow=Spell+Check)
13+
[![Compile Examples Status](https://github.com/rduino-libraries/rduinoBLE/workflows/Compile%20Examples/badge.svg)](https://github.com/arduino-libraries/ArduinoBLE/actions?workflow=Compile+Examples) [![Spell Check Status](https://github.com/arduino-libraries/ArduinoBLE/workflows/Spell%20Check/badge.svg)](https://github.com/arduino-libraries/ArduinoBLE/actions?workflow=Spell+Check)
414

515
Enables Bluetooth® Low Energy connectivity on the Arduino MKR WiFi 1010, Arduino UNO WiFi Rev.2, Arduino Nano 33 IoT, and Arduino Nano 33 BLE.
616

examples/Central/LedControl/LedControl.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
This example code is in the public domain.
1717
*/
1818

19-
#include <ArduinoBLE.h>
19+
#include <rduinoBLE.h>
2020

2121
// variables for button
2222
const int buttonPin = 2;

examples/Central/PeripheralExplorer/PeripheralExplorer.ino

Lines changed: 1 addition & 1 deletion
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 <rduinoBLE.h>
1818

1919
void setup() {
2020
Serial.begin(9600);

examples/Central/Scan/Scan.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
This example code is in the public domain.
1212
*/
1313

14-
#include <ArduinoBLE.h>
14+
#include <rduinoBLE.h>
1515

1616
void setup() {
1717
Serial.begin(9600);

examples/Central/ScanCallback/ScanCallback.ino

Lines changed: 1 addition & 1 deletion
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 <rduinoBLE.h>
1717

1818
void setup() {
1919
Serial.begin(9600);

examples/Central/SensorTagButton/SensorTagButton.ino

Lines changed: 1 addition & 1 deletion
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 <rduinoBLE.h>
1919

2020
void setup() {
2121
Serial.begin(9600);

examples/Peripheral/BatteryMonitor/BatteryMonitor.ino

Lines changed: 1 addition & 1 deletion
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 <rduinoBLE.h>
1919

2020
// Bluetooth® Low Energy Battery Service
2121
BLEService batteryService("180F");

examples/Peripheral/ButtonLED/ButtonLED.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
This example code is in the public domain.
1818
*/
1919

20-
#include <ArduinoBLE.h>
20+
#include <rduinoBLE.h>
2121

2222
const int ledPin = LED_BUILTIN; // set ledPin to on-board LED
2323
const int buttonPin = 4; // set buttonPin to digital pin 4

examples/Peripheral/CallbackLED/CallbackLED.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
This example code is in the public domain.
1717
*/
1818

19-
#include <ArduinoBLE.h>
19+
#include <rduinoBLE.h>
2020

2121
BLEService ledService("19B10000-E8F2-537E-4F6C-D104768A1214"); // create service
2222

examples/Peripheral/LED/LED.ino

Lines changed: 1 addition & 1 deletion
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 <rduinoBLE.h>
1919

2020
BLEService ledService("19B10000-E8F2-537E-4F6C-D104768A1214"); // Bluetooth® Low Energy LED Service
2121

library.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=ArduinoBLE
1+
name=rduinoBLE
22
version=1.2.2
3-
author=Arduino
4-
maintainer=Arduino <info@arduino.cc>
3+
author=rduino
4+
maintainer=rduino <info@arduino.cc>
55
sentence=Enables Bluetooth® Low Energy connectivity on the Arduino MKR WiFi 1010, Arduino UNO WiFi Rev.2, Arduino Nano 33 IoT, Arduino Nano 33 BLE and Nicla Sense ME.
6-
paragraph=This library supports creating a Bluetooth® Low Energy peripheral & central mode.
6+
paragraph=This library is an unofficial fork of the official ArduinoBLE library, with experimental contributions merged. This library supports creating a Bluetooth® Low Energy peripheral & central mode.
77
category=Communication
88
url=https://www.arduino.cc/en/Reference/ArduinoBLE
99
architectures=samd,megaavr,mbed,apollo3,mbed_nano,mbed_portenta,mbed_nicla
10-
includes=ArduinoBLE.h
10+
includes=rduinoBLE.h

0 commit comments

Comments
 (0)