Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

byte

   
Examples  
byte a;         // Declare variable "a" of type byte 
a = 23;         // Assign "a" the value 23 
byte b = -128;  // Declare variable "b" and assign it the value -128 
byte c = a + b; // Declare variable "c" and assign it the sum of "a" and "b" 

Description   Datatype for bytes, 8 bits of information storing numerical values from 127 to -128. Bytes are a convenient datatype for sending information to and from the serial port and for representing letters in a simpler format than the char datatype.
   
Syntax  
byte var
byte var = value
   
Parameters  
var   variable name referencing the value

value   a number between 127 to -128

   
Usage   Web & Application
   
Related   int
float
boolean
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas