=================================
Fork based on the great original project by visualapproach.
This version includes:
-
🌐 Internationalization (i18n) The UI is now available in six languages:
🇬🇧 English 🇫🇷 Français 🇪🇸 Español 🇮🇹 Italiano 🇩🇪 Deutsch 🇵🇹 Português
-
🎨 Updated CSS styles (modern, mobile-first layout)
-
🖼️ Refreshed UI with a pseudo-LCD display and icon tweaks
-
📁 All web files are stored under
/data/and easily editable (HTML, CSS, JS, TXT)
No changes were made to the ESP8266 core logic – only the web interface.
Here are a few screenshots of the updated UI with multilingual support and enhanced styling:
Each language is defined in a .txt file (e.g., Langue_fr-FR.txt) located in the /data directory. These files are fully editable and allow easy customization or translation updates.
➕ Add a new language
To add support for another language:
-
Create a new
.txtfile namedLangue_xx-XX.txtin the/datafolder, using the same key/value structure. -
Edit the file
webconfig.htmland:-
Add a new
<option>entry inside the hidden<select>used by the script:<option value="xx-XX">YourLanguage</option>
-
Add a new flag inside the
#lang-flagsblock:<span class="flag" data-lang="xx-XX" title="YourLanguage">🌐</span>
-
That’s all — the system will automatically pick up and apply the new language file via i18n.js.
This fork exists thanks to the amazing original work of visualapproach.
All license terms from the original repo still apply.





