bfrenchrit
About
- Username
- bfrenchrit
- Joined
- Visits
- 23
- Last Active
- Roles
- Member
Comments
-
Also scanning using: var noble = require('noble'); // import the noble library //Bluetooth ON or OFF noble.on('stateChange', function(state) { if (state === 'poweredOn') { // if Bluetooth is on console.log("start scanning")…
-
UPDATE: The downgrading and upgrading or just downgrading didn't work for all of the devices. What seems to be happening now, is the devices still seem to think they are paired with a specific computer. For example, one device will be discovered an…
-
Unfortunately, I don't have an external USB adapter. I can see and connect to the device using everything (the Metabase App, the nFR Connect App, Swift SDK) but the Javascript SDK I reverted back to 1.4.1 and everything worked fine. I re-updat…
-
Integrated radio. I can also see the device service uuid and characteristics if I use just the noble library. I have trouble with noble-device, it hangs just like the metawear sdk. How do I revert back to 1.4.1? What do I put in for DFU version o…
-
I tried your script too. Same results, the 1.4.1 works fine, the 1.4.2 hangs and never gets discovered. I'm running Node.js version 8.11.3 on Mac OSX 10.13.6
-
Here's the script (the one that doesn't work, just hangs, it never discovers the device): var MetaWear = require('metawear'); //MetaWear.discoverByAddress("c0:4f:26:cf:7e:77",function(device){ //1.4.2 doesn't work hardware 0.1 MetaWear.discov…
-
I just tried via Noble directly and I can see the device there, just not through the MetaWear SDK. I've done a soft reset as well but still no luck with the MetaWear SDK. I also tried with noble-device, but this time it only connected but didn't …
-
Thanks!
-
It seems there are a lot of old entries in there maybe based on the dates on the downloaded log and it's taking a long time to download them all. I've tried calling MetaWear.mbl_mw_metawearboard_tear_down(device.board); and MetaWear.mbl_mw_debug_r…
-
It was an older version of the SDK. Installing the new version fixed the logging example. I then had to go and update the code for reading the data in all of my other code. Thanks!