You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Node-RED node for providing access to generic BLE devices via GATT.
5
+
6
+
**ALPHA RELEASE** : not yet available in [flows.nodered.org](https://flows.nodered.org)
7
+
8
+
# How to install
9
+
10
+
```
11
+
cd ~/.node-red
12
+
npm install node-red-contrib-generic-ble
13
+
```
14
+
15
+
# HCI Dump Debugging
16
+
17
+
```
18
+
sudo apt-get update
19
+
sudo apt-get install bluez-hcidump
20
+
```
21
+
22
+
then
23
+
24
+
```
25
+
sudo hcidump -t -x
26
+
```
27
+
28
+
# Enabling trace log
29
+
30
+
Set `GENERIC_BLE_TRACE=true` on starting Node-RED.
31
+
32
+
# Known Issues
33
+
34
+
Connecting to peripherals keeps failing in some cases after selecting a BLE peripheral from the scan result select box in the Generic BLE node configuration dialog. If you get stuck in that case, stop Node-RED and run `sudo hciconfig hci0 reset` (replace `hci0` with a proper interface if necessary) then start Node-RED again.
0 commit comments