Standard definition works:
- Code: Select all | TOGGLE FULL SIZE
AdafruitIO_Feed *T_0 = io.feed("b.t-0");
This defintion throws a compiler error:
- Code: Select all | TOGGLE FULL SIZE
AdafruitIO_Feed *T_0 = io.feed(F("b.t-0"));
This definition results in program crash:
- Code: Select all | TOGGLE FULL SIZE
const char *b_t_0 PROGMEM = "b.t-0";
AdafruitIO_Feed *T_0 = io.feed(b_t_0);
Thanks a lot for your support.