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
46
.gitignore
vendored
46
.gitignore
vendored
|
|
@ -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/
|
||||
|
||||
# ESP-IDF Specific
|
||||
sdkconfig
|
||||
sdkconfig.old
|
||||
sdkconfig.*
|
||||
|
||||
# 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
|
||||
|
||||
#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.old
|
||||
sdkconfig.*
|
||||
|
||||
# Ignore temporary backup files
|
||||
# Temporary and Backup Files
|
||||
*.orig
|
||||
*.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-status-bar-style" content="black">
|
||||
|
||||
<link rel="stylesheet" href="main.css?v=3.0.10c" type="text/css" />
|
||||
<link rel="stylesheet" href="widgets.css?v=3.0.10c" type="text/css" />
|
||||
<link rel="stylesheet" href="icons.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.11c" 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" />
|
||||
|
||||
<!-- iPad retina icon -->
|
||||
|
|
@ -114,7 +114,7 @@
|
|||
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>
|
||||
<body>
|
||||
<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 _rooms = [{ roomId: 0, name: 'Home' }];
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue