Hi
I need to put a large bitmap into code space on a ESP8266 Arduino (Wemos D1 mini).
static const unsigned char BitmapExample1[] =
{
0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,
0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,
0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,
// and many more
PROGMEM has no effect for ESP8266.
The compiler certainly has a means for this, but I don't know how yet.
This may have been answered many times, but there are so many PROGMEM related posts that I did not find the answer.
Jean-Marc