Hi! I am trying to use Make to interact with my Bluetooth device through Blecon. In one of their tutorials they teach you how to call a webhook and get the response data. The only thing is, the response data needs to be part of a JSON in hexadecimal format (see their docs).
For instance, if I want to write back Success to my device, the JSON needs to look like this:
{“payload”: “53756363657373“}, as the Success string converted to hex is 53756363657373.
However I cannot make this work with Make variables that exist in the scenario. Is I use toBinary on the Success string, the string is converted back to a readable string. I also tried using the JSON module, but now the String is converted to base64.
Does anyone know if this is possible in Make ?
Thanks for the help!