result = byte ( value ) ;
byte variable [= value] ;
list value
- A value of any type.
byte result
- byteacter
A signed 8 bit value.
The STATUS variable is set to $ACKNOWLEDGE
- When the argument is an array variable, all the elements in the array are converted, and the result will be a vector array
%ARGUMENT : Invalid arguments. Usage: byte variable [= value] ;
%IDENTIFIER : 'variable' argument is not a valid identifier, literal, or reference
byte -128 to +127
ubyte 0 to 255
- byte and ubyte are interchangable, the sign bit is never lost.
- The ubyte format is the same as the binary format except in the manner in which the value is displayed, decimal for ubyte and hexidecimal for binary.
A byte and ubyte formats are a one-byte signed and unsigned integer, respectively. The values range from0x00 through 0xff, which in the signed byte case is between -128 and +127, and between 0 and 255 for the unsigned byte.