Hi all,
I need to do a rather simple task. I would like to format this Buffer:
var char = Buffer.from([0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xef])
in a function node (or any other way) as a HexString:
var str = "7e000000000000ffef"
To be able to send this hex stream via gatttool to bluetooth client.
Unfortunately I got completely stuck. Could you please help me ?
