June 25, 2009, at 07:02 AM
by Paul Badger -
Changed lines 15-16 from:
to:
* [[http://arduino.cc/en/Reference/VariableDeclaration|Variable Declaration]]
February 08, 2009, at 08:45 AM
by David A. Mellis -
Changed lines 5-6 from:
Bytes store an 8-bit number, from 0 to 255. ''byte'' is an unsigned data type, meaning that it does not store negative numbers.
to:
A byte stores an 8-bit unsigned number, from 0 to 255.
Changed lines 13-20 from:
* [[int]]
* [[unsigned int]]
* [[long]]
* [[unsigned long]]
* [[integer constants]]
to:
* [[word]]
* [[ByteCast | byte]]()
September 07, 2008, at 10:55 PM
by Paul Badger -
Changed lines 9-10 from:
[=byte b = B10010; // "B" is the binary formatter (18 decimal) =]
to:
[=byte b = B10010; // "B" is the binary formatter (B10010 = 18 decimal) =]
March 09, 2008, at 08:35 PM
by David A. Mellis -
Changed lines 18-21 from:
* [[Serial/Println|Serial.println]]
to:
July 18, 2007, at 09:17 PM
by Paul Badger -
Changed lines 18-21 from:
* [[Serial/PrintLn|Serial.printLn]]
to:
* [[Serial/Println|Serial.println]]
July 18, 2007, at 09:16 PM
by Paul Badger -
July 18, 2007, at 09:15 PM
by Paul Badger -
Changed lines 5-6 from:
Bytes store an 8-bit number, from 0 to 255.
to:
Bytes store an 8-bit number, from 0 to 255. ''byte'' is an unsigned data type, meaning that it does not store negative numbers.
Changed lines 18-21 from:
to:
* [[Serial/PrintLn|Serial.printLn]]
May 28, 2007, at 11:21 PM
by David A. Mellis - bytes are actually unsigned chars, not chars (but saying so seems confusing)
Changed lines 5-6 from:
Bytes store an 8-bit number, from 0 to 255. Synonymous with type char.
to:
Bytes store an 8-bit number, from 0 to 255.
May 28, 2007, at 09:04 PM
by Paul Badger -
Changed lines 5-6 from:
Bytes store an 8-bit number, from 0 to 255.
to:
Bytes store an 8-bit number, from 0 to 255. Synonymous with type char.
April 16, 2007, at 06:10 PM
by David A. Mellis -
Added line 14:
Added line 16:
April 16, 2007, at 12:11 PM
by Paul Badger -
Changed line 19 from:
[[HomePage | Reference Home]]
to:
April 15, 2007, at 04:25 PM
by Paul Badger -
Changed lines 9-10 from:
to:
[=byte b = B10010; // "B" is the binary formatter (18 decimal) =]
December 02, 2006, at 11:17 AM
by David A. Mellis -
Changed lines 15-17 from:
to:
December 02, 2006, at 11:16 AM
by David A. Mellis -
Changed lines 11-14 from:
to:
!!!!See also
* [[int]]
* [[long]]
December 02, 2006, at 11:16 AM
by David A. Mellis -
Changed lines 5-6 from:
Bytes store an 8-bit number, from 0 to 255 (2^8 - 1).
to:
Bytes store an 8-bit number, from 0 to 255.
December 02, 2006, at 11:15 AM
by David A. Mellis -
Added lines 1-15:
!!byte
!!!!Description
Bytes store an 8-bit number, from 0 to 255 (2^8 - 1).
!!!!Example
[=byte b = B10010;=]
[[HomePage | Reference Home]]