Skip to content

Commit

Permalink
added known bugs section, cosmetical changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yattien committed Apr 27, 2020
1 parent 04713d1 commit 30cdbc4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ESPEInk_ESP8266.ino
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ void saveConfig() {
Serial.println(" Saving config...");
File configFile = SPIFFS.open(CONFIG_FILE, "w");
if (!configFile) {
Serial.println("failed to open config file for writing");
Serial.println(" Failed to open config file for writing.");
}
DynamicJsonDocument jsonDocument(512);
jsonDocument["mqttServer"] = ctx.mqttServer;
Expand All @@ -168,7 +168,7 @@ void saveConfig() {
jsonDocument["sleepTime"] = ctx.sleepTime;
jsonDocument["firmwareUrl"] = ctx.firmwareUrl;
if (serializeJson(jsonDocument, configFile) == 0) {
Serial.println("Failed to write to file");
Serial.println(" Failed to write to file.");
}
configFile.close();
Serial.println(" Config saved.");
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ CLK|14|D5
GND|GND|G
VCC|3.3V|3V3

# Bekannte Fehler
* Das 2.13-Display funktioniert nicht mit einem "Wemos D1 mini" oder einem Clon davon im deepsleep-Mode. Grund dafür ist, dass die Reset-Leitung des Displays und die interne LED sich einen Port teilen und die LED irgendwo angesteuert wird - und sich das Display dann löscht. Falls jmd. eine Lösung hat, arbeite ich sie gern mit ein.

# MQTT-Szenario
Im Zusammenspiel mit dem FHEM-Modul `ESPEInk` kann man das EInk-Display dazu bringen, weniger Strom zu verbrauchen. Dazu kann man so vorgehen:
* das Attribut `interval` in ESPEInk steht auf einem hohen Wert, da kein automatischer Upload erfolgen soll (noch notwendiger Workaround)
Expand Down

0 comments on commit 30cdbc4

Please sign in to comment.