I’m setting bytes from hex codes for serial communication using the rs232 node.
Currently I’m doing this -
[spread of single byte hex codes](spread of single byte hex codes) >
Ord (to decimal) >
Spellvalue (to ascii) >
Add string spectral >
AsRaw
when all I really want is to input that data straight into raw format (as is displayed when I hover the cursor over the AsRaw output.
Is there a neater way?
EDIT: ok can go AsRaw straight after the ord. That’s probably neat enough