Modify static variable in Arduino libraries

271 Views Asked by At

Lots of Web/Http based libraries on Arduino come with their own predefined web content, e.g

static const char serverIndex[] PROGMEM =
    R"(<html><body>....</body></html>)";

Aside from modifying the library is there a way to intervene on the variable content directly in the program sketch?

Regards,

1

There are 1 best solutions below

2
On

You can change static class properties like any other, but you cannot change data that is stored in PROGMEM. That's why this variable is also delcared as const.

PROGMEM data is stored in flash memory and is part of the sketch binary file.

A possible solution would be to use SPIFFS but that would require a change in the libraries code.

Another solution would be to write your own derived class: see Are static variables in a base class shared by all derived classes?

But that's a lot of clutter so IMHO it's easier to just change to original class.