Skip to content

Commit

Permalink
Some spelling corrections, thanks to @SciLor !
Browse files Browse the repository at this point in the history
  • Loading branch information
tueddy committed Jun 25, 2023
1 parent 78844c1 commit 63dc695
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## DEV-branch

* 25.06.2023: Some spelling corrections, thanks to @SciLor !
* 23.06.2023: CMD_TELL_IP_ADDRESS: IP as text (replace thousand separator with word "point")
* 23.06.2023: web-upload improvement (#249). Thank's to @Joe91 !!
* 23.06.2023: Refactor web: Move dependant html-code from web.cpp to management.html (#250)
Expand Down
2 changes: 1 addition & 1 deletion src/AudioPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ void AudioPlayer_Task(void *parameter) {
ipText.replace(".", "Punkt"); // make IP as text (replace thousand separator)
speechOk = audio->connecttospeech(ipText.c_str(), "de");
#else
MyIP.replace(".", "point");
ipText.replace(".", "point");
speechOk = audio->connecttospeech(ipText.c_str(),, "en");
#endif
if (!speechOk) {
Expand Down
9 changes: 1 addition & 8 deletions src/Battery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,8 @@
Battery_LogStatus();

Log_Println(batteryCriticalMsg, LOGLEVEL_NOTICE);

// Power down and enter deepsleep
Power_PeripheralOff();
delay(200);
#ifdef PN5180_ENABLE_LPCD
Rfid_Exit();
#endif
delay(1000);
esp_deep_sleep_start();
System_RequestSleep();
}
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/LogMessages_DE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
const char listingDirectory[] = "Verzeichnisinhalt anzeigen";
const char failedToOpenDirectory[] = "Öffnen des Verzeichnisses fehlgeschlagen";
const char notADirectory[] = "Kein Verzeichnis";
const char sdMountedMmc1BitMode[] = "Versuche SD-Karte wird im SD_MMC-Modus (1 Bit) zu mounten...";
const char sdMountedMmc1BitMode[] = "Versuche SD-Karte im SD_MMC-Modus (1 Bit) zu mounten...";
const char sdMountedSpiMode[] = "Versuche SD-Karte wird im SPI-Modus zu mounten...";
const char backupRecoveryWebsite[] = "<p>Das Backup-File wird eingespielt...<br />Zur letzten Seite <a href=\"javascript:history.back()\">zur&uuml;ckkehren</a>.</p>";
const char restartWebsite[] = "<p>Der ESPuino wird neu gestartet...<br />Zur letzten Seite <a href=\"javascript:history.back()\">zur&uuml;ckkehren</a>.</p>";
Expand Down
2 changes: 1 addition & 1 deletion src/LogMessages_EN.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
const char listingDirectory[] = "Listing directory";
const char failedToOpenDirectory[] = "Failed to open directory";
const char notADirectory[] = "Not a directory";
const char sdMountedMmc1BitMode[] = "SD card mounted in SPI-mode configured...";
const char sdMountedMmc1BitMode[] = "SD card mounted in SD-MMC 1-Bit mode...";
const char sdMountedSpiMode[] = "Mounting SD card in SPI-mode...";
const char backupRecoveryWebsite[] = "<p>Backup-file is being applied...<br />Back to <a href=\"javascript:history.back()\">last page</a>.</p>";
const char restartWebsite[] = "<p>ESPuino is being restarted...<br />Back to <a href=\"javascript:history.back()\">last page</a>.</p>";
Expand Down
2 changes: 1 addition & 1 deletion src/revision.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#include "gitrevision.h"
constexpr const char softwareRevision[] = "Software-revision: 20230624-1";
constexpr const char softwareRevision[] = "Software-revision: 20230625-1";

0 comments on commit 63dc695

Please sign in to comment.