Do you mean specifying the name itself? You can do that with NRF.setAdvertising({},{name:"foo"})
I'm not sure if that's actually how you'd go about changing the appearance? Either way it looks like you need a 16 bit value, so instead of [961] you'll need [0x03,0xC1] (I think - the endianness could be different).
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Do you mean specifying the name itself? You can do that with
NRF.setAdvertising({},{name:"foo"})
I'm not sure if that's actually how you'd go about changing the appearance? Either way it looks like you need a 16 bit value, so instead of
[961]
you'll need[0x03,0xC1]
(I think - the endianness could be different).