Hello , is there a node or a method to transform hex to text like this :
Thanks
Chris
Have a look at NodeJS Buffers, especially the Buffer.from(string[, encoding]) method:
You can use a function node for that.
Assuming you pass the hex-string as msg.payload the following could work:
msg.payload = Buffer.from(msg.payload, 'hex').toString();
return msg;
You were missing the Buffer part from the link I gave you.
thank you
it is working now 