For instance: NRF.setAdvertising({},{interval:60}); will be about 10x faster than normal. You can also use NRF.setTxPower(4) to boost the Puck's output power
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.
Assuming you're not connected, the RSSI value will come every time there's an advertisement - so it's pretty easy to increase that with https://www.espruino.com/Reference#l_NRF_setAdvertising
For instance:
NRF.setAdvertising({},{interval:60});
will be about 10x faster than normal. You can also useNRF.setTxPower(4)
to boost the Puck's output power