JusJJ 0 Posted January 26, 2024 I try to receive hex data from serial port using AsyncPro. However, 0x80 returns 0x20AC. How to fix this? Share this post Link to post
Lajos Juhász 303 Posted January 26, 2024 You can fix it by changing your code. Share this post Link to post
JusJJ 0 Posted January 26, 2024 Clever! 👏You must be very proud of yourself. Share this post Link to post
Cristian Peța 108 Posted January 26, 2024 Probably you are reading binary data as Unicode string. x80 is euro symbol in ANSI/Windows-1252. 0x20AC is also euro symbol in Unicode. Share this post Link to post