-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from cotestatnt/master
update from upstream repo
- Loading branch information
Showing
16 changed files
with
1,056 additions
and
1,131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
If you want customize **/setup** webpage (headers, logo etc etc): | ||
* edit the source files as your needs (setup.htm, app.js, style.css) | ||
* open a terminal in *build_setup* folder and run `npm i` to install all nodejs modules needed | ||
* open a terminal in ***build_setup*** folder and run `npm i` to install all nodejs modules needed | ||
* run `node minify.js` | ||
* overwrite the content of *setup_htm.h* in src folder with the new generated file | ||
* overwrite the content of `setup_htm.h` inside `/src` folder with the new generated file | ||
|
||
|
||
# | ||
As alternative on Windows system, is possible to use the tool [SEGGER Bin2C](https://www.segger.com/free-utilities/bin2c/). | ||
|
||
`all.htm.gz` file need to be prepared manually (for example you could use online tools for minify CSS, JavaScript and HTML) | ||
|
||
This Bin2C program will create a file named `all.htm.c`, simply copy & past the content and overwrite `setup_htm.h` file |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
If you want customize **/setup** webpage (headers, logo etc etc): | ||
* edit the source files as your needs (setup.htm, app.js, style.css) | ||
* open a terminal in *build_setup* folder and run `npm i` to install all nodejs modules needed | ||
* open a terminal in ***build_setup*** folder and run `npm i` to install all nodejs modules needed | ||
* run `node minify.js` | ||
* overwrite the content of *setup_htm.h* in src folder with the new generated file | ||
* overwrite the content of `setup_htm.h` inside `/src` folder with the new generated file | ||
|
||
|
||
# | ||
As alternative on Windows system, is possible to use the tool [SEGGER Bin2C](https://www.segger.com/free-utilities/bin2c/). | ||
|
||
`all.htm.gz` file need to be prepared manually (for example you could use online tools for minify CSS, JavaScript and HTML) | ||
|
||
This Bin2C program will create a file named `all.htm.c`, simply copy & past the content and overwrite `setup_htm.h` file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{ | ||
"board": "esp32:esp32:esp32s3", | ||
"port": "COM3" | ||
"board": "esp8266:esp8266:d1_mini", | ||
"port": "COM16", | ||
"sketch": "customHTML.ino", | ||
"configuration": "xtal=80,vt=flash,exception=disabled,stacksmash=disabled,ssl=all,mmu=3232,non32xfer=fast,eesz=4M2M,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=921600" | ||
} |
Oops, something went wrong.