======unsigned char ====== ====Description ==== An unsigned data type that occupies 1 byte of memory. Same as the [[arduino:data types:Byte]] datatype. The unsigned char datatype encodes numbers from 0 to 255. For consistency of Arduino programming style, the ''byte'' data type is to be preferred. ====Example ==== [=unsigned char myChar = 240;=] ====See also ==== *[[arduino:data types:Byte]] *[[arduino:data types:Int]] *[[arduino:data types:Array]] *[[arduino:communication:Serial/Println|Serial.println]] Source: arduino.cc