Skip to content

Commit

Permalink
Change includes to to rduinoBLE.h
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed May 7, 2022
1 parent 66096b8 commit 2e46581
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/Central/LedControl/LedControl.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

// variables for button
const int buttonPin = 2;
Expand Down
2 changes: 1 addition & 1 deletion examples/Central/PeripheralExplorer/PeripheralExplorer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

void setup() {
Serial.begin(9600);
Expand Down
2 changes: 1 addition & 1 deletion examples/Central/Scan/Scan.ino
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

void setup() {
Serial.begin(9600);
Expand Down
2 changes: 1 addition & 1 deletion examples/Central/ScanCallback/ScanCallback.ino
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

void setup() {
Serial.begin(9600);
Expand Down
2 changes: 1 addition & 1 deletion examples/Central/SensorTagButton/SensorTagButton.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

void setup() {
Serial.begin(9600);
Expand Down
2 changes: 1 addition & 1 deletion examples/Peripheral/BatteryMonitor/BatteryMonitor.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

// BLE Battery Service
BLEService batteryService("180F");
Expand Down
2 changes: 1 addition & 1 deletion examples/Peripheral/ButtonLED/ButtonLED.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

const int ledPin = LED_BUILTIN; // set ledPin to on-board LED
const int buttonPin = 4; // set buttonPin to digital pin 4
Expand Down
2 changes: 1 addition & 1 deletion examples/Peripheral/CallbackLED/CallbackLED.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

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

Expand Down
2 changes: 1 addition & 1 deletion examples/Peripheral/LED/LED.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This example code is in the public domain.
*/

#include <ArduinoBLE.h>
#include <rduinoBLE.h>

BLEService ledService("19B10000-E8F2-537E-4F6C-D104768A1214"); // BLE LED Service

Expand Down

0 comments on commit 2e46581

Please sign in to comment.