hicksan

Results 18 comments of hicksan

Yes I know. SdFat works with ESP8266 once you delete the standard version of the library. It would be good to find a better way. I got the above solution...

Here is an example of initializing an option without macros for an non-AVR (PROGMEM) device. //define "Op 1" void op1Func(); promptShadow op1Info("Op 1",(callback)op1Func,enterEvent); prompt op1(op1Info); And here the same for...

I'm afraid Neu-rah appears to have stopped supporting this library, which is a pity because it is the best library out there. There are no direct examples if what you...

Yes it is. I did it by following the examples in the standard EEPROM.h library and then setting up a action subroutine called from an OP menu item to save...

We finally found the cause. These libraries both require a declaration of MENU_USERAM variable. This has the effect, in items.h, of converting menu node items from garbage pointers to text...

If this is the filePickMenu as used in SDCard.ino or SdFat.ino (example sketches) then I would be very interested to know how you got it to work because it doesn't...

Here is SdFat01.ino as modified. I am using it with a basic Uno clone and an SD card - no u8g2 here at all in this instance - input and...

I have switched from a Mega to an ESP8266, to avoid the AVR Progmem memory issues. But am now getting loads of compile errors about type File (from SdFat.h) not...

Thanks Rui. That's great. Can you point me towards an example please?

Thank you for this. An actual "panels.ino" example would really help, to show how 2 panels can be used with a basic menu in one and some text in the...