-
• #2
I'm also a beginner, so you might get better responses from other users.
Gordon mentioned a change for the upcomming release (v92), see http://forum.espruino.com/comments/13525853/
you might need to add
0xff20
to the advertised services.
-
• #4
Great! Glad you got it sorted!
In terms of decoding, given what you're doing you should hopefully just be receiving a 1-element array, where the single element is an integer value which is the temperature.
Not sure if it helps, but I've tended to use
noble
for interfacing via BLE. I think it's a bit more common so you might find documentation better.
Hi there!
I'm trying to set up a GATT service on my ruuvitag. I have successfully installed the firmware following https://www.espruino.com/Ruuvitag and I can talk with the device and upload code 🎉
I've got the following code running:
What I am wondering however, is how I can connect to this service using a
node.js
application. I've been trying theespurino
module but can't figure out how to use it to "scan" for GATT services. Using thebleat
module I can find other BLE devices, but not my ruuvitag running espurino.Any ideas what I might be getting wrong?
NB! I'm new to this whole BLE and GATT stuff, so I might be confused about a few things 😝