Creating A Constant
const int ledPin = 13;
Storing constants in Program Memory instead of RAM
You need to use the PROGMEM modifier – see here.
Reading the values also requies special handling by using pgm_read_byte_near() or pgm_read_word_near()
