Char()
From Microduino Wiki
Unsigned char
- Description
An unsigned character takes 1-byte memory, same with byte type.
Unsigned char can code the numbers from 0 to 255.
To keep the consistency of the compiling style of Arduino, byte type is preferred.
- Example
unsigned char myChar = 240;