Skip to content

Commit 2c8f85e

Browse files
committed
Typo correction for the inclusion of the ArduinoBLE library
1 parent 2bec1ad commit 2c8f85e

File tree

1 file changed

+1
-1
lines changed
  • content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble

1 file changed

+1
-1
lines changed

content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/enabling-ble.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ ___
103103
First, we need to include the **ArduinoBLE** library, and create a new service. We will name the service **"180A"** which is translated to **"Device Information"**. We will then create two characteristics, one for the LED, and one for the analog pin. The name **"2A57"** is translated to **"Digital Output"** and **"2A58** is translated to **"Analog"**.
104104

105105
```arduino
106-
#include <ArduinoBLE.h
106+
#include <ArduinoBLE.h>
107107
BLEService newService("180A"); // creating the service
108108
109109
BLEUnsignedCharCharacteristic randomReading("2A58", BLERead | BLENotify); // creating the Analog Value characteristic

0 commit comments

Comments
 (0)