I have a question regarding buffers.
The buffer appears as shown in the current image.
The problem arises when the buffer is only one digit.
For example, it comes out in the form of 0x7, but in the case of , it should come out in the form of 0x07.
As you can see in the picture, 0x42 0x7 should be combined to come out in the form of 0x4207, but in NordRed, if you combine the buffers, it comes out in the form of 0x427.
To summarize again:
- Appears in the form of a 0x42 0x7 buffer
- Combining the two buffers should result in 0x4207.
- However, in NodeRed, when combining buffers, it comes out in the form of 0x427.
Is it possible to convert a single-digit buffer to a two-digit format?