NRF.findDevices(function(devices) {
devices.forEach(function(device) {
console.log(device);
// I believe you'll find a device.servicedata field that'll contain the raw information for any Eddystone beacons
});
}, 1000);
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.
NRF.findDevices
should be what you need: http://www.espruino.com/Reference#l_NRF_findDevices