BLE Device Name

Hey @NJD

You’ll have to do something like this:

BleAdvertisingData data;
data.appendLocalName("Test");
BLE.advertise(&data); 

Where you’d want to replace “Test” with whatever name you want to use.

Here’s a whole thread on the subject.

1 Like