1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

Fix typo.

This commit is contained in:
Stavros Korokithakis
2015-11-28 16:37:36 +02:00
parent 14949f50d6
commit e9f2f1c989
3 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ void setup() {
if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed");
else if (error == OTA_BEGIN_ERROR) Serial.println("Begin Failed");
else if (error == OTA_CONNECT_ERROR) Serial.println("Connect Failed");
else if (error == OTA_RECIEVE_ERROR) Serial.println("Receive Failed");
else if (error == OTA_RECEIVE_ERROR) Serial.println("Receive Failed");
else if (error == OTA_END_ERROR) Serial.println("End Failed");
});
ArduinoOTA.begin();