Fix typos throughout code

Found with `codespell -w -i3 src/**` and reviewed manually.

Fixes: #1112
This commit is contained in:
Alexander Dahl 2023-08-23 06:37:55 +02:00
parent fd2fd206f0
commit ae3e98e77d
13 changed files with 30 additions and 30 deletions

View file

@ -205,7 +205,7 @@ void DisplayEPaper::actualPowerPaged(float totalPower, float totalYieldDay, floa
void DisplayEPaper::loop(float totalPower, float totalYieldDay, float totalYieldTotal, uint8_t isprod) {
// check if the IP has changed
if (_settedIP != WiFi.localIP().toString().c_str()) {
// save the new IP and call the Headline Funktion to adapt the Headline
// save the new IP and call the Headline Function to adapt the Headline
_settedIP = WiFi.localIP().toString().c_str();
headlineIP();
}