Reference Language | Libraries | Comparison | Changes
A short
is a 16-bit data-type.
On all Arduinos (ATMega and ARM based) a short
stores a 16-bit (2-byte) value. This yields a range of -32,768 to 32,767 (minimum value of -2^15 and a maximum value of (2^15) - 1).
short ledPin = 13;
short var = val;
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.