-
Is it possible to rename Bangle.js on bluetooth? ex: (Name change from 'Bangle.js 1234' to 'Best Watch') It seems like something that should be possible without needing to dig too heavily into the firmware, but I don't know. If anyone knows the answer, could you tell me? To clarify: change the name that appears when trying to connect a bluetooth device like a phone to the bangle. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
sure you can, like so: NRF.setAdvertising({}, { name: "Best Watch"}); https://www.espruino.com/Reference#l_NRF_setAdvertising but I think gadgetbridge looks for "Bangle", "Espruino" etc on the name for finding the watch. If you have it set up already it is no problem changing the name, but keep it mind. |
Beta Was this translation helpful? Give feedback.
-
Alright, thanks! |
Beta Was this translation helpful? Give feedback.
sure you can, like so:
NRF.setAdvertising({}, { name: "Best Watch"});
https://www.espruino.com/Reference#l_NRF_setAdvertising
but I think gadgetbridge looks for "Bangle", "Espruino" etc on the name for finding the watch. If you have it set up already it is no problem changing the name, but keep it mind.