Fixed typo: Successfull --> Successful

This commit is contained in:
Thomas Basler 2023-03-23 23:30:55 +01:00
parent cb4fd20a73
commit 8d8c7f8a71
6 changed files with 7 additions and 7 deletions

View File

@ -216,7 +216,7 @@ It is also possible to flash it via the web tools which might be more convenient
Once you have your OpenDTU running and connected to WLAN, you can do further updates through the web interface. Once you have your OpenDTU running and connected to WLAN, you can do further updates through the web interface.
Navigate to Settings --> Firmware upgrade and press the browse button. Select the firmware file from your local computer. Navigate to Settings --> Firmware upgrade and press the browse button. Select the firmware file from your local computer.
You'll find the firmware file (after a successfull build process) under `.pio/build/generic/firmware.bin`. You'll find the firmware file (after a successful build process) under `.pio/build/generic/firmware.bin`.
If you downloaded a precompiled zip archive, unpack it and choose `opendtu-generic.bin`. If you downloaded a precompiled zip archive, unpack it and choose `opendtu-generic.bin`.

View File

@ -25,7 +25,7 @@ void HoymilesRadio::init(SPIClass* initialisedSpiBus, uint8_t pinCE, uint8_t pin
_radio->setRetries(0, 0); _radio->setRetries(0, 0);
_radio->maskIRQ(true, true, false); // enable only receiving interrupts _radio->maskIRQ(true, true, false); // enable only receiving interrupts
if (_radio->isChipConnected()) { if (_radio->isChipConnected()) {
Hoymiles.getMessageOutput()->println(F("Connection successfull")); Hoymiles.getMessageOutput()->println(F("Connection successful"));
} else { } else {
Hoymiles.getMessageOutput()->println(F("Connection error!!")); Hoymiles.getMessageOutput()->println(F("Connection error!!"));
} }
@ -121,7 +121,7 @@ void HoymilesRadio::loop()
sendRetransmitPacket(verifyResult); sendRetransmitPacket(verifyResult);
} else { } else {
// Successfull received all packages // Successful received all packages
Hoymiles.getMessageOutput()->println(F("Success")); Hoymiles.getMessageOutput()->println(F("Success"));
_commandQueue.pop(); _commandQueue.pop();
_busyFlag = false; _busyFlag = false;

View File

@ -120,7 +120,7 @@ void WebApiSecurityClass::onAuthenticateGet(AsyncWebServerRequest* request)
AsyncJsonResponse* response = new AsyncJsonResponse(); AsyncJsonResponse* response = new AsyncJsonResponse();
JsonObject retMsg = response->getRoot(); JsonObject retMsg = response->getRoot();
retMsg[F("type")] = F("success"); retMsg[F("type")] = F("success");
retMsg[F("message")] = F("Authentication successfull!"); retMsg[F("message")] = F("Authentication successful!");
retMsg[F("code")] = WebApiError::SecurityAuthSuccess; retMsg[F("code")] = WebApiError::SecurityAuthSuccess;
response->setLength(); response->setLength();

View File

@ -86,7 +86,7 @@
"9009": "Second must be a number between {min} and {max}!", "9009": "Second must be a number between {min} and {max}!",
"9010": "Time updated!", "9010": "Time updated!",
"10001": "Password must between 8 and {max} characters long!", "10001": "Password must between 8 and {max} characters long!",
"10002": "Authentication successfull!", "10002": "Authentication successful!",
"11001": "@:apiresponse.2001", "11001": "@:apiresponse.2001",
"11002": "@:apiresponse:5004", "11002": "@:apiresponse:5004",
"12001": "Profil must between 1 and {max} characters long!" "12001": "Profil must between 1 and {max} characters long!"

View File

@ -87,7 +87,7 @@ export default defineComponent({
this.socket.onopen = function (event) { this.socket.onopen = function (event) {
console.log(event); console.log(event);
console.log("Successfully connected to the echo websocket server..."); console.log("Successfuly connected to the echo websocket server...");
}; };
// Listen to window events , When the window closes , Take the initiative to disconnect websocket Connect // Listen to window events , When the window closes , Take the initiative to disconnect websocket Connect

View File

@ -489,7 +489,7 @@ export default defineComponent({
this.socket.onopen = function (event) { this.socket.onopen = function (event) {
console.log(event); console.log(event);
console.log("Successfully connected to the echo websocket server..."); console.log("Successfuly connected to the echo websocket server...");
}; };
// Listen to window events , When the window closes , Take the initiative to disconnect websocket Connect // Listen to window events , When the window closes , Take the initiative to disconnect websocket Connect