Skip to content

Commit bc8a8b5

Browse files
committed
Julian feedback addressed
1 parent 75e8b38 commit bc8a8b5

File tree

1 file changed

+10
-6
lines changed
  • content/hardware/03.nano/boards/nano-matter/tutorials/user-manual

1 file changed

+10
-6
lines changed

content/hardware/03.nano/boards/nano-matter/tutorials/user-manual/content.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -827,9 +827,9 @@ With this done, Home Assistant should be forwarding the Nano Matter sensor data
827827

828828
## Bluetooth® Low Energy
829829

830-
### Silicon Labs BLE
830+
### Silicon Labs BLE Library
831831

832-
To enable Bluetooth® Low Energy communication on the Nano Matter, you must enable the "BLE" protocol stack in the Arduino IDE board configurations.
832+
To enable Bluetooth® Low Energy communication on the Nano Matter, you must enable the "BLE" protocol stack in the Arduino IDE board configurations. In this section we will use the official Silabs Bluetooth library.
833833

834834
In the upper menu, navigate to **Tools > Protocol stack** and select **BLE(Silabs)**.
835835

@@ -1171,7 +1171,7 @@ The `ble_initialize_gatt_db()` function is responsible for:
11711171

11721172
***Note that if you want to implement a different or custom Bluetooth® Low Energy service or characteristic, the UUID arrays have to start with the least significant bit (LSB) from left to right.***
11731173

1174-
After uploading the sketch to the Nano Matter, it is time to communicate with it via Bluetooth® Low Energy. For this, Silicon Labs has developed a **mobile app** that you can download from here:
1174+
After uploading the sketch to the Nano Matter, it is time to communicate with it via Bluetooth® Low Energy. To do this Silicon Labs has developed a **mobile app** that you can download from here:
11751175

11761176
- [Android](https://play.google.com/store/apps/details?id=com.siliconlabs.bledemo)
11771177
- [iOS](https://itunes.apple.com/us/app/silicon-labs-blue-gecko-wstk/id1030932759)
@@ -1180,7 +1180,9 @@ Open the **Simplicity Connect** app on your smartphone, in the lower menu, navig
11801180

11811181
![Blinky demo controlling the Nano Matter via Bluetooth® Low Energy](assets/ble-blinky.gif)
11821182

1183-
### Arduino BLE
1183+
***You can also manage the LED and button status manually from the Scan tab in the lower menu of the app.***
1184+
1185+
### Arduino BLE Library
11841186

11851187
Now let's do the same but using the `ArduinoBLE` library.
11861188

@@ -1295,12 +1297,12 @@ static void btn_handle() {
12951297
}
12961298
```
12971299

1298-
As you can see, using the `ArduinoBLE` library makes everything easier and cleaner. We end up with a simple `setup()` and `loop()` sketch.
1300+
As you can see, using the `ArduinoBLE` library makes the Bluetooth example more similar to the Bluetooth implementation of other Arduino boards, making it easier to migrate code from one board to another. We end up with a simple `setup()` and `loop()` sketch.
12991301

13001302
- In the `setup()` function the board outputs and inputs are set and configured alongside the BLE service and characteristics.
13011303
- In the `loop()` function we continuously ask if the peripheral is properly connected to a central and then start notifying the push button status and retrieving the app LED status.
13021304

1303-
After uploading the sketch to the Nano Matter, it is time to communicate with it via Bluetooth® Low Energy. For this, Silicon Labs has developed a **mobile app** that you can download from here:
1305+
After uploading the sketch to the Nano Matter, it is time to communicate with it via Bluetooth® Low Energy. To do this Silicon Labs has developed a **mobile app** that you can download from here:
13041306

13051307
- [Android](https://play.google.com/store/apps/details?id=com.siliconlabs.bledemo)
13061308
- [iOS](https://itunes.apple.com/us/app/silicon-labs-blue-gecko-wstk/id1030932759)
@@ -1309,6 +1311,8 @@ Open the **Simplicity Connect** app on your smartphone, in the lower menu, navig
13091311

13101312
![Blinky demo controlling the Nano Matter via Bluetooth® Low Energy](assets/ble-blinky-3.gif)
13111313

1314+
***You can also manage the LED and button status manually from the Scan tab in the lower menu of the app.***
1315+
13121316
## Onboard User Interface
13131317

13141318
### User Button

0 commit comments

Comments
 (0)