ESP32-targz
ESP32-targz copied to clipboard
🗜️ An Arduino library to unpack/uncompress tar, gz, and tar.gz files on ESP32 and ESP8266
Results
12
ESP32-targz issues
Sort by
recently updated
recently updated
newest added
I have a byte array in PROGMEM (compressed html) that I want to decompres to SPIFFS. What I'm currently doing is copying the byte array in to index.html.gz and uncompressing...
Hi, I use SdFat library and use this code: ```cpp SdFat Sd; #define tarGzFS Sd #define FS_NAME "Sd" #include ... TarGzUnpacker *TARGZUnpacker = new TarGzUnpacker(); TARGZUnpacker->haltOnError( true ); // stop...