Explorar el Código

clarify error message in Serial

Chris Mullins hace 8 años
padre
commit
db21ce2827
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
   }