Raymond... c'est de la simple représentation binaire, décimale, hexadecimale, rien à convertir si tu désire l'afficher ou l'envoyer via communication série... cherche HEX.
HSERIN should work to grab the data. Windows Calc in Scientific mode can help youCode:For MyVar = 0 to 255 HSEROUT [DEC MyVar, " = ", BIN8 MyVar, " = ", HEX MyVar,13,10] NEXT
Code:0011 1001 0100 0011 0010 0000 0011 1001 0011 1001 0010 0000 3 9 4 3 2 0 3 9 3 9 2 0
Bookmarks