Просмотр исходного кода

clarify error message in Serial

Chris Mullins лет назад: 8
Родитель
Сommit
db21ce2827
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      lib/Udp/V6MiLightUdpServer.cpp

+ 1 - 1
lib/Udp/V6MiLightUdpServer.cpp

@@ -112,7 +112,7 @@ void V6MiLightUdpServer::sendResponse(uint16_t sessionId, uint8_t* responseBuffe
   }
   
   if (session == NULL || session->sessionId != sessionId) {
-    Serial.print("Tried to send response to untracked session id: ");
+    Serial.print("Received request with untracked session ID: ");
     Serial.println(sessionId);
     return;
   }