Variable Declaration and Use |
---|
Types |
---|
Type |
Bytes |
Integer Range |
Description |
---|---|---|---|
byte | 1 | 0 to 255 | 8 bit integer |
char | 1 | -128 to +127 | 8 bit character |
bool | 1 | zero or nonzero | 8 bit boolean value (true/false) |
word | 2 | 0 to 65535 | 16 bit integer |
pointer | 2 | 0x0000 to 0xFFFF | 16 bit address pointer integer |
struct | - | - | A collection of variables and data |
Variable Declarations & Manipulators |
---|