It should be incredibly simple, but I should not look in the right place.
I get this line through the FTDI USB connection:
'UUU'
I would like to get this as an array of bytes
[85,85,85]
In Python, I would convert the string to an array of bytes as follows: [ord (c) for c to "UUU"]
I looked around, but did not understand this. How to do it in Visual Basic?
source share