I have placed 16 bit hex code into the flash using the PROGMEM function:
const unsigned short pacman[0x2774] PROGMEM ={ 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, etc...
but when I use this function to retrieve it
"uint16_t colour = pgm_read_byte_near(pacman + i);"
I only get 8 bit hex back. (used serial.print to view the code)
what am I doing wrong?