Write hex value to a characteristic? #2013
Replies: 30 comments
-
Posted at 2017-01-14 by @gfwilliams In Espruino you just need to split it off into an array of bytes - so take each pair of 2 characters and put
hope that helps! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-19 by pdominique Thanks Gordon. I just tried but this does nothing (just displays Done! in the console). If I set the same value using the nrf app, the color is set to red. I believe the Puck can connect to the device, get the service and characteristic because I don't have any exception but the color is not modified when I write a value to the characteristic.
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-19 by @gfwilliams I'm not sure what to suggest there - what you've got looks fine. Are you sure you've got the right characteristic there? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-19 by pdominique Yes I checked multiple times. And I don't get any exception so I guess the Puck is able to write the value. If I specify a non-existing characteristic, I do get an exception. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-19 by @gfwilliams Just checking - do you have up to date firmware on Puck.js (1v91?) - I guess it could help. You could also try waiting a second with setTimeout before disconnecting. I guess the bulb may fail if it doesn't think it can update the status. Out of interest, what's the light bulb you're trying to write to? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-19 by pdominique I just updated the firmware but it didn't change anything. I also tried with a timeout. Here are the devices I want to control: http://www.playbulb.com/en/playbulb-candle-bluetooth-smart-led-flameless-candle.html |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-19 by @gfwilliams Ahh, great! I actually saw that blog post when I was looking around at BLE lightbulbs :) Really strange though - I've used a few BLE bulb like devices and haven't found one I couldn't control yet. Have you tried reading the characteristic (if it supports it?) |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-23 by pdominique Well actually this is what I get when I use readValue() and stringify it:
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-24 by @gfwilliams And what colour is the light when that happens? I'm wondering if the value has actually been set correctly and hasn't taken effect for some reason, or if it just hasn't set the value at all |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-24 by pdominique I can set the color with the nrf app and readValue returns the right value. But I can't set the color with the Puck for some reason. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-25 by @gfwilliams Strange - not sure what to suggest I'm afraid. Do you have any Bluetooth sniffing devices you might be able to use to see if there's a difference in how Espruino writes to the Playbulb? The only thing I can think is that the Playbulb maybe has the handles for the characteristic in a strange order, and that's confusing Puck.js? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-25 by ChristianW I just bought me a playbulb, too (because I was curious) and will have a look at it tonight. What I'd try: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-25 by pdominique I don't have a sniffing device but using LightBlue to simulate the candle is a good idea. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-25 by @gfwilliams Can you run this on your Puck, with the PlayBulb's address? It could take a while to complete.
It should dump what I thinks all the characteristics are - I've just noticed having some trouble grabbing the UUID from one smart bulb (I get |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-25 by pdominique Here you go:
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-26 by @gfwilliams Wow, that all looks totally fine. Sorry - not sure what could be the issue there at all then. All I can think is that the characteristic you're writing to expects 'Write with Response' when Puck.js only performs a 'Write'? I guess you could check with nRF Connect/LightBlue/etc and see what flags are set on the characteristic |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-26 by pdominique nRF Connect says Read and WriteWithoutResponse. I tried to simulate the device with LightBlue but the Puck can't connect to the fake device (unhandled exception in promise or something). The official app doesn't seem to work with the fake device either. nRF Connect can connect and write to the characteristic just fine though. I can see the new value being written in the LightBlue app. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-26 by ChristianW I also tried the simulation. At first the PlayBulb app always crashed. However, I have just now started testing the puck against the real device. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-26 by ChristianW OK - does not work for me either. I have not hardcoded the MAC but search for devices with the corresponding service:
But @gfwilliams: You are right. LightBlue shows Is that something the puck BLE code does not handle yet? Attachments: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-27 by @gfwilliams I just checked - actually Puck.js does do WriteWithResponse (it doesn't do a simple write). So I'm not really sure what the issue could be here - I think realistically we're going to need to sniff the BLE traffic while writing with the Puck and with another device, and compare the two |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-03 by pdominique I just ordered a BLE sniffer, I'll see if I can use it to sniff the communication and find out what's wrong. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-03 by @gfwilliams Great, thanks! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-09 by pdominique Ok I just sniffed the communication between the nrf app and the candle and then the Puck and the candle. The opcode is definitely different and that seems to be the issue (WriteWithResponse not supported by the candle?). nrf app Write Request:
Puck Write Request:
Puck Error Response:
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-09 by @gfwilliams Thanks for checking that - it looks likely that's the issue then. The opcodes aren't the ones I send to the BLE stack (eg. If you're able to compile yourself, you could change the opcode used in Otherwise it looks like I need to add code to the I've just filed a bug for it here: espruino/Espruino#1059 |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-09 by @gfwilliams Ok, please could you try uploading the attached firmware, and see if that helps? Attachments: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-09 by pdominique Thanks Gordon. How do you upload an hex file? I used nrf toolbox before to update the firmware with a zip file. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-09 by @gfwilliams Sorry, my mistake - it's this file you need.Attachments: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-09 by pdominique It's working now, thanks Gordon! Would it be a good idea to have a WriteWithResponse and a WriteWithoutResponse? Might be useful for other devices to have the option. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-10 by @gfwilliams Great! It should be automatic now - based on what the device reports it can support. If you absolutely want to force it you can change |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-02-11 by ChristianW I just tried the new build and it works for me, too. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2017-01-13 by pdominique
Hi,
I'd like to control some BLE light bulbs with my Puck and I just read the following tutorial: https://www.espruino.com/Puck.js+and+Bluetooth+Lightbulbs
However the lightbulb I want to control expects hex values and I don't know how to write these values with writeValue(). In the nRF Connect app I have to send a byte array: 0x 00FF0000 for red or 0x 0000FF00 for green for instance.
Any idea?
Beta Was this translation helpful? Give feedback.
All reactions