Reference.UnsignedChar History
Hide minor edits - Show changes to output
September 08, 2007, at 10:29 AM
by Paul Badger -
Changed lines 9-10 from:
For consistency of programming style, the ''byte'' data type is to be preferred.
to:
For consistency of Arduino programming style, the ''byte'' data type is to be preferred.
September 08, 2007, at 10:28 AM
by Paul Badger -
Changed lines 5-8 from:
An unsigned data type that takes up 1 byte of memory. Same as the [[byte]] datatype.
The unsigned char datatype encodes numbers from 0 to 128.
to:
An unsigned data type that occupies 1 byte of memory. Same as the [[byte]] datatype.
The unsigned char datatype encodes numbers from 0 to 255.
September 08, 2007, at 10:27 AM
by Paul Badger -
Added lines 1-20:
!!unsigned char
!!!!Description
An unsigned data type that takes up 1 byte of memory. Same as the [[byte]] datatype.
The unsigned char datatype encodes numbers from 0 to 128.
For consistency of programming style, the ''byte'' data type is to be preferred.
!!!!Example
[=unsigned char myChar = 240;=]
!!!!See also
*[[byte]]
*[[int]]
*[[array]]
*[[Serial/Println|Serial.println]]