Skip to main content
added 189 characters in body
Source Link
Juraj
  • 18.3k
  • 4
  • 32
  • 50

const byte* const message[] PROGMEM =

to use an item, load it in RAM

strcpy_P(buffer, (byte*)pgm_read_word(&(message[i])));

source Arduino reference - PROGMEM

const byte* const message[] PROGMEM =

const byte* const message[] PROGMEM =

to use an item, load it in RAM

strcpy_P(buffer, (byte*)pgm_read_word(&(message[i])));

source Arduino reference - PROGMEM

Source Link
Juraj
  • 18.3k
  • 4
  • 32
  • 50

const byte* const message[] PROGMEM =