From 495a5fffd994d282b1448f7cdcda60cef6c51506 Mon Sep 17 00:00:00 2001 From: Dicion Date: Thu, 30 May 2024 07:31:53 -0500 Subject: [PATCH] Update ocpp.cpp Fixed spelling errors on 'unknown' that have been bothering me while testing NFC on my project. --- src/ocpp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ocpp.cpp b/src/ocpp.cpp index 2150ed08..dfd61242 100644 --- a/src/ocpp.cpp +++ b/src/ocpp.cpp @@ -331,7 +331,7 @@ void ArduinoOcppTask::loadEvseBehavior() { setTxNotificationOutput([this] (ArduinoOcpp::TxNotification notification, ArduinoOcpp::Transaction*) { switch (notification) { case ArduinoOcpp::TxNotification::AuthorizationRejected: - LCD_DISPLAY("Card unkown"); + LCD_DISPLAY("Card unknown"); break; case ArduinoOcpp::TxNotification::AuthorizationTimeout: LCD_DISPLAY("Server timeout"); @@ -343,7 +343,7 @@ void ArduinoOcppTask::loadEvseBehavior() { LCD_DISPLAY("Aborted / no EV"); break; case ArduinoOcpp::TxNotification::DeAuthorized: - LCD_DISPLAY("Card unkown"); + LCD_DISPLAY("Card unknown"); break; case ArduinoOcpp::TxNotification::RemoteStart: if (!evse->isVehicleConnected()) {