I am trying to fetch the central device name where central is Javascript based web-app and pheripheral is Nano ble 33.
I am using web-bluetooth API and I am able to get pheripheral device name following this enter link description here
and on the other hand, I am able to get the central address using central.address() but I am getting nothing when I am using central.deviceName() or central.localName().
I am wondering where should I setDeviceName() in central. Is it required ?
Thanks in advance.
According to arduino example at https://docs.arduino.cc/retired/archived-libraries/CurieBLE#example-1, it seems like you should be able to get the
BLECentral
with the code below:However, BLECentral does not allow you get the central device name information according to https://github.com/arduino/ArduinoCore-arc32/blob/master/libraries/CurieBLE/src/BLECentral.h
I'd suggest you use the address and use
"Central 00:11:22:33:44:55"
for the name if that's required for you.To be clear, Web Bluetooth does not allow you to get the Central device name. It allows web pages running in the Central role, to connect to GATT Servers over either a Bluetooth connection.
Having said that, nothing prevents you though to have a custom Bluetooth Characteristic on your BLE peripheral that returns the device address of the Central as a value so that you can access it from the web page. See JS example below: