Compare commits

..

No commits in common. "e604f90a1424a21c3e9434dc235aeb7619082288" and "85d43231f54b7af73a458a6fac57c8defa0dac0e" have entirely different histories.

3 changed files with 5 additions and 33 deletions

View File

@ -87,15 +87,10 @@
flex: 1;
}
.initial {
text-align: right;
}
@media (min-width: 1000px) {
body {
font-size: 16px;
}
.relayBox {
width: 400px;
}
@ -135,15 +130,13 @@
function updateState(relayTag, state) {
const tag = relayTag.getElementsByClassName("state")[0];
if (state) {
tag.innerText = "Ein";
tag.classList.add("stateOn");
tag.classList.remove("stateOff");
relayTag.classList.add("stateOn");
relayTag.classList.remove("stateOff");
} else {
tag.innerText = "Aus";
tag.classList.add("stateOff");
tag.classList.remove("stateOn");
relayTag.classList.add("stateOff");
relayTag.classList.remove("stateOn");
}
}

View File

@ -21,12 +21,7 @@ void listDir(const String &path, const String &indent) {
}
if (child.isDirectory()) {
Serial.printf("%s[D] [ ] %s\n", indent.c_str(), child.name());
#ifdef ESP32
listDir(child.path(), indent + " ");
#endif
#ifdef ESP8266
listDir(child.fullName(), indent + " ");
#endif
}
child.close();
}
@ -45,15 +40,7 @@ void listDir(const String &path, const String &indent) {
}
void configSetup() {
#ifdef ESP32
LittleFS.begin(true)
#endif
#ifdef ESP8266
if (!LittleFS.begin()) {
LittleFS.format();
LittleFS.begin();
}
#endif
LittleFS.begin(true);
Serial.println("Filesystem-content:");
listDir("/", "");
}
@ -62,12 +49,7 @@ File configOpen(const String &path, const bool write) {
if (!write && !LittleFS.exists(path)) {
return {};
}
#ifdef ESP32
return LittleFS.open(path, write ? "w" : "r", write);
#endif
#ifdef ESP8266
return LittleFS.open(path, write ? "w" : "r");
#endif
}
void doLog(const String &path, const String &value, const bool isPassword, const CONFIG_LOG type, const bool enable) {

View File

@ -4,8 +4,5 @@ cd "$(dirname "$0")" || exit 1
minify index.html | sed 's|http://10.42.0.204||g' > index.html.min || exit 2
#curl -s 'http://10.42.0.204/upload/index' -F "file=@index.html.min"
#curl -s 'http://10.42.0.204/upload/icon' -F "file=@icon.svg"
curl -s 'http://10.0.0.178/upload/index' -F "file=@index.html.min"
curl -s 'http://10.0.0.178/upload/icon' -F "file=@icon.svg"
curl -s 'http://10.42.0.204/upload/index' -F "file=@index.html.min"
curl -s 'http://10.42.0.204/upload/icon' -F "file=@icon.svg"