-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @bonatoc To eliminate the "Unknown" display in this list, you need to look at adding a The 0x1800 service you are showing above is only available after connection, so would not impact the display in this list, which can only use data in the advertising payloads. I suspect that the peripheral firmware is correctly setting the GAP name (which iOS will use), and not specifying an advertised local name, which Android uses. You can confirm this by looking at the advertising payloads in nrf Connect. You can see in this screenshot here that there is a If you want further customisation of the display dialog (e.g., to remove the MAC address), you may want to consider implementing your own list using requestLEScan and Quasar. |
Beta Was this translation helpful? Give feedback.
Exactly this. requestLEScan takes a callback, that you can wire into your javascript UI toolkit of choice. In this case, I presume you'd feed this into a Quasar dialog of some description. There should be no need to modify anything within this plugin itself, as you are going to be writing in your web tech, not native code.