Closed ondrovic closed 1 year ago
Is it not possible to set the broadcast network name, so it's something other than CIRCUITPY<xxxx>? Looks like doing a ble.name = "TestName" only sets the local name but the broadcast name still remains the same
CIRCUITPY<xxxx>
ble.name = "TestName"
looks like it can be done like this
from adafruit_ble.advertising import Advertisement advertisement = Advertisement() advertisement.short_name = "TestName" ...
Is it not possible to set the broadcast network name, so it's something other than
CIRCUITPY<xxxx>
? Looks like doing able.name = "TestName"
only sets the local name but the broadcast name still remains the same