Giter VIP home page Giter VIP logo

Comments (3)

Blueforcer avatar Blueforcer commented on May 30, 2024

Well i found it :)
https://github.com/cotestatnt/esp-fs-webserver/tree/master/setup-ui/extras

will this also minified with node?

edit: also found this in the code:)

echo '// WARNING: Auto-generated file. Please do not modify by hand.' > edit_htm.h
echo '// This file is an embeddable version of the gzipped index.htm file.' >> edit_htm.h
echo '// To update it, please rerun the reduce_index.sh script located in the extras subfolder' >> edit_htm.h
echo '// then recompile the sketch after each change to the index.html file.' >> edit_htm.h

does it mean i can or cant edit the code. my problem is that i want to have a fix size of preview pictures. And the top right bar wich displays free space doesnt work

from esp-fs-webserver.

cotestatnt avatar cotestatnt commented on May 30, 2024

Hi Stephan.
The ACE editor came as is from the FSBrowser.ino example included in ESP8266 Arduino core

You can try to edit, but it's very hard because it's mostly minified javascript and is very hard to interpret due to the meaningless function and variable names.

The free space info missing it's a well known bug, but came from the C++ sources due to the different methods used in the filesystem management libraries with ESP32
LittleFS for example has the usedBytes() method while SPIFFS uses the freeBytes() method.

I promised myself I'd find a solution, but I didn't spend any more time on it.

from esp-fs-webserver.

Blueforcer avatar Blueforcer commented on May 30, 2024

The free space info missing it's a well known bug, but came from the C++ sources due to the different methods used in the filesystem management libraries with ESP32 LittleFS for example has the usedBytes() method while SPIFFS uses the freeBytes() method.

thanks for this hint. since im using littleFS, i just replaced #include <FS.h> with <LittleFS.h>

#elif defined(ESP32)
totalBytes = LittleFS.totalBytes();
usedBytes = LittleFS.usedBytes();
#endif

image

from esp-fs-webserver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.