diff --git a/.gitignore b/.gitignore index ee55dbd..77348db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,36 +1,40 @@ +# IDE and Tooling .theia/ +.vscode/ +.claude/ +.pio/ debug_custom.json +debug.cfg + +# Hardware / SVD Files esp32.vsd esp32s3.svd -debug.cfg -data/ + +# Build and Output Folders build/ -coredump_report.txt -coredump.bin +data/ logs/ managed_components/ -#Ignore Somfy INO/Bin files -SomfyController.ino.XIAO_ESP32S3.bin -SomfyController.ino.esp32c3.bin -SomfyController.ino.esp32s2.bin - -#Ignore IDE files -.vscode/ -.claude/ - -# Ignore ELF binary archives -elf_archive/ -*.elf - -# Ignore PlatformIO build folder -.pio/ - -# Ignore auto-generated ESP-IDF files +# ESP-IDF Specific sdkconfig sdkconfig.old sdkconfig.* -# Ignore temporary backup files +# Binary and Archive Files +*.elf +elf_archive/ +coredump_report.txt +coredump.bin + +# Project Specific / Generated Source +src/SomfyController.ino.cpp + +# Ignore Somfy INO/Bin files +SomfyController.ino.XIAO_ESP32S3.bin +SomfyController.ino.esp32c3.bin +SomfyController.ino.esp32s2.bin + +# Temporary and Backup Files *.orig -*.bak +*.bak \ No newline at end of file diff --git a/data-src/appversion b/data-src/appversion index f1cb5ae..e4a0720 100644 --- a/data-src/appversion +++ b/data-src/appversion @@ -1 +1 @@ -3.0.10 \ No newline at end of file +3.0.11 \ No newline at end of file diff --git a/data-src/index.html b/data-src/index.html index ed72d80..3875bb3 100644 --- a/data-src/index.html +++ b/data-src/index.html @@ -8,9 +8,9 @@ - - - + + + @@ -114,7 +114,7 @@ rel="apple-touch-startup-image"> - +
diff --git a/data-src/index.js b/data-src/index.js index b7654a1..062b93e 100644 --- a/data-src/index.js +++ b/data-src/index.js @@ -1,4 +1,8 @@ -//var hst = '192.168.1.208'; +/** + * hst is a development convenience variable: it's a hardcoded IP address used when the HTML file is opened directly + * from the filesystem (i.e., file:// protocol) rather than served from the ESP32. + * Adapt the IP accordingly based on your router configuration. +**/ var hst = '192.168.178.20'; var _rooms = [{ roomId: 0, name: 'Home' }]; diff --git a/src/ConfigSettings.h b/src/ConfigSettings.h index 3fdc33c..0638b7c 100644 --- a/src/ConfigSettings.h +++ b/src/ConfigSettings.h @@ -5,7 +5,6 @@ #ifndef configsettings_h #define configsettings_h #include "WResp.h" -// #define FW_VERSION "v2.4.8" #ifndef FW_VERSION #define FW_VERSION "v0.0.0" // Fallback if app_version.py script fails #endif