Hi,
My maiden post here.
Just updated the BLE extension to the latest version. I am trying to send RGB (byte) values to a NeoPixel ledstrip. I have 3 RGB sliders (dec.base2 0-255) which I try to convert (each one separate) into a single byte to send it over BLE. On my ESP32 side I can read (BLE works fine with the Bluefruit Connect-LE app) the data that has been sent. Whatever I try (converted in all possibilities) App Invertor keep sending the dec.base2-ASCII-byte slider values. I am using the WriteBytes function in App Invertor. I read about (2017) some WriteBytes problems in the BLE extension so I thought maybe by updating the extension problems would have gone. Anyone who can explain/help
Thanks for answering Chris,
corr. dec.base2.... = dec.base10.. off course (previous post)
The ESP32 side sketch works perfect with the BLE app 'connectLE' from Adafruit.
Adafruit format = ['!'] ['C'] [byte red] [byte green] [byte blue] first 2 are char values last 3 are bytes
Tried all possible converters left it in the PNG on binairy
Here are Block and script (only relevant, if you need all -big- let me know)
Problem could be initialising global 'colorMessage' as text
Better to initialise it as number/integer. Do not know (yet) how to initialise as an array (list??)
Your WriteBytes value parameter should be
make list(asc('!'),asc('C'),global red_value, global green_value, global blue_value)
Also, be aware that the convert number base 10 to binary block is a fraud. It outputs a fluffy text string of character '1's and '0's, not some compressed internal binary format.