mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2026-04-20 11:02:14 +02:00
cleaned code, as per inputs from cjkas
This commit is contained in:
commit
174f9a2287
5 changed files with 37 additions and 30 deletions
50
.gitignore
vendored
50
.gitignore
vendored
|
|
@ -1,36 +1,40 @@
|
||||||
|
# IDE and Tooling
|
||||||
.theia/
|
.theia/
|
||||||
|
.vscode/
|
||||||
|
.claude/
|
||||||
|
.pio/
|
||||||
debug_custom.json
|
debug_custom.json
|
||||||
|
debug.cfg
|
||||||
|
|
||||||
|
# Hardware / SVD Files
|
||||||
esp32.vsd
|
esp32.vsd
|
||||||
esp32s3.svd
|
esp32s3.svd
|
||||||
debug.cfg
|
|
||||||
data/
|
# Build and Output Folders
|
||||||
build/
|
build/
|
||||||
coredump_report.txt
|
data/
|
||||||
coredump.bin
|
|
||||||
logs/
|
logs/
|
||||||
managed_components/
|
managed_components/
|
||||||
|
|
||||||
#Ignore Somfy INO/Bin files
|
# ESP-IDF Specific
|
||||||
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
|
|
||||||
sdkconfig
|
sdkconfig
|
||||||
sdkconfig.old
|
sdkconfig.old
|
||||||
sdkconfig.*
|
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
|
*.orig
|
||||||
*.bak
|
*.bak
|
||||||
|
|
@ -1 +1 @@
|
||||||
3.0.10
|
3.0.11
|
||||||
|
|
@ -8,9 +8,9 @@
|
||||||
<meta name="apple-mobile-web-app-title" content="ESPSomfy RTS App">
|
<meta name="apple-mobile-web-app-title" content="ESPSomfy RTS App">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||||
|
|
||||||
<link rel="stylesheet" href="main.css?v=3.0.10c" type="text/css" />
|
<link rel="stylesheet" href="main.css?v=3.0.11c" type="text/css" />
|
||||||
<link rel="stylesheet" href="widgets.css?v=3.0.10c" type="text/css" />
|
<link rel="stylesheet" href="widgets.css?v=3.0.11c" type="text/css" />
|
||||||
<link rel="stylesheet" href="icons.css?v=3.0.10c" type="text/css" />
|
<link rel="stylesheet" href="icons.css?v=3.0.11c" type="text/css" />
|
||||||
<link rel="icon" type="image/png" href="favicon.png" />
|
<link rel="icon" type="image/png" href="favicon.png" />
|
||||||
|
|
||||||
<!-- iPad retina icon -->
|
<!-- iPad retina icon -->
|
||||||
|
|
@ -114,7 +114,7 @@
|
||||||
rel="apple-touch-startup-image">
|
rel="apple-touch-startup-image">
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="index.js?v=3.0.10c"></script>
|
<script type="text/javascript" src="index.js?v=3.0.11c"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="divContainer" class="container main" data-auth="false">
|
<div id="divContainer" class="container main" data-auth="false">
|
||||||
|
|
|
||||||
|
|
@ -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 hst = '192.168.178.20';
|
||||||
var _rooms = [{ roomId: 0, name: 'Home' }];
|
var _rooms = [{ roomId: 0, name: 'Home' }];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@
|
||||||
#ifndef configsettings_h
|
#ifndef configsettings_h
|
||||||
#define configsettings_h
|
#define configsettings_h
|
||||||
#include "WResp.h"
|
#include "WResp.h"
|
||||||
// #define FW_VERSION "v2.4.8"
|
|
||||||
#ifndef FW_VERSION
|
#ifndef FW_VERSION
|
||||||
#define FW_VERSION "v0.0.0" // Fallback if app_version.py script fails
|
#define FW_VERSION "v0.0.0" // Fallback if app_version.py script fails
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue