[SOLVED] ESP EASY SKETCH UPLOAD ERROR

Moderators: grovkillen, Stuntteam, TD-er

Post Reply
Message
Author
jeremiahlandi
New user
Posts: 2
Joined: 03 Jan 2016, 05:02

[SOLVED] ESP EASY SKETCH UPLOAD ERROR

#1 Post by jeremiahlandi » 03 Jan 2016, 05:10

Hello,

It has been a while since dealing with Arduino but I decided to dive back in!

I am following the instructions from:

Tutorial Arduino Firmware Upload
http://www.esp8266.nu/index.php/Tutoria ... are_Upload

I was receiving the following message:

Code: Select all

Arduino: 1.6.7 (Windows 7), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, 9600"

WARNING: Category '' in library EEPROM is not valid. Setting to 'Uncategorized'
WARNING: Category '' in library ESP8266httpUpdate is not valid. Setting to 'Uncategorized'
WARNING: Category '' in library Hash is not valid. Setting to 'Uncategorized'
WARNING: Category '' in library SPI is not valid. Setting to 'Uncategorized'
WARNING: Category '' in library Ticker is not valid. Setting to 'Uncategorized'
WARNING: Category '' in library Wire is not valid. Setting to 'Uncategorized'
Warning: platform.txt from core 'ESP8266 Modules' contains deprecated recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{build.path}/{archive_file}" "{object_file}", automatically converted to recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{archive_file_path}" "{object_file}". Consider upgrading this core.
C:\Users\Admin\Desktop\Easy IoT\ESPEasy\ESPEasy.ino: In function 'void setup()':

ESPEasy:327: error: 'emergencyReset' was not declared in this scope

   emergencyReset();

                  ^

ESPEasy:329: error: 'LoadSettings' was not declared in this scope

   LoadSettings();

                ^

ESPEasy:347: error: 'ResetFactory' was not declared in this scope

     ResetFactory();

                  ^

ESPEasy:355: error: 'addLog' was not declared in this scope

     addLog(LOG_LEVEL_INFO, log);

                               ^

ESPEasy:360: error: 'WifiAPconfig' was not declared in this scope

     WifiAPconfig();

                  ^

ESPEasy:361: error: 'WifiConnect' was not declared in this scope

     WifiConnect();

                 ^

ESPEasy:363: error: 'hardwareInit' was not declared in this scope

     hardwareInit();

                  ^

ESPEasy:364: error: 'PluginInit' was not declared in this scope

     PluginInit();

                ^

ESPEasy:365: error: 'CPluginInit' was not declared in this scope

     CPluginInit();

                 ^

ESPEasy:367: error: 'WebServerInit' was not declared in this scope

     WebServerInit();

                   ^

ESPEasy:379: error: 'getProtocolIndex' was not declared in this scope

     byte ProtocolIndex = getProtocolIndex(Settings.Protocol);

                                                            ^

ESPEasy:381: error: 'MQTTConnect' was not declared in this scope

       MQTTConnect();

                   ^

ESPEasy:383: error: 'sendSysInfoUDP' was not declared in this scope

     sendSysInfoUDP(3);

                     ^

ESPEasy:395: error: 'readFromRTC' was not declared in this scope

     if (readFromRTC(&bootMode))

                              ^

ESPEasy:407: error: 'saveToRTC' was not declared in this scope

     saveToRTC(0);

                ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\ESPEasy.ino: In function 'void loop()':

ESPEasy:436: error: 'PluginCall' was not declared in this scope

     if(!PluginCall(PLUGIN_SERIAL_IN, 0, dummyString))

                                                    ^

ESPEasy:437: error: 'serial' was not declared in this scope

       serial();

              ^

ESPEasy:442: error: 'checkUDP' was not declared in this scope

     checkUDP();

              ^

ESPEasy:450: error: 'WifiDisconnect' was not declared in this scope

             WifiDisconnect();

                            ^

ESPEasy:469: error: 'FreeMem' was not declared in this scope

       sprintf_P(str, PSTR("Uptime %u ConnectFailures %u FreeMem %u"), wdcounter / 2, connectionFailures, FreeMem());

                                                                                                                  ^

ESPEasy:472: error: 'addLog' was not declared in this scope

       addLog(LOG_LEVEL_INFO, log);

                                 ^

ESPEasy:473: error: 'sendSysInfoUDP' was not declared in this scope

       sendSysInfoUDP(1);

                       ^

ESPEasy:474: error: 'refreshNodeList' was not declared in this scope

       refreshNodeList();

                       ^

ESPEasy:475: error: 'MQTTCheck' was not declared in this scope

       MQTTCheck();

                 ^

ESPEasy:483: error: 'PluginCall' was not declared in this scope

       PluginCall(PLUGIN_TEN_PER_SECOND, 0, dummyString);

                                                       ^

ESPEasy:491: error: 'PluginCall' was not declared in this scope

       PluginCall(PLUGIN_ONCE_A_SECOND, 0, dummyString);

                                                      ^

ESPEasy:495: error: 'WifiCheck' was not declared in this scope

       WifiCheck();

                 ^

ESPEasy:518: error: 'SensorSend' was not declared in this scope

       SensorSend();

                  ^

ESPEasy:521: error: 'saveToRTC' was not declared in this scope

         saveToRTC(1);

                    ^

ESPEasy:523: error: 'addLog' was not declared in this scope

         addLog(LOG_LEVEL_INFO, log);

                                   ^

ESPEasy:529: error: 'delayedReboot' was not declared in this scope

       delayedReboot(60);

                       ^

ESPEasy:531: error: 'backgroundtasks' was not declared in this scope

     backgroundtasks();

                     ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\ESPEasy.ino: In function 'void SensorSend()':

ESPEasy:546: error: 'getDeviceIndex' was not declared in this scope

       byte DeviceIndex = getDeviceIndex(Settings.TaskDeviceNumber[x]);

                                                                     ^

ESPEasy:547: error: 'LoadTaskSettings' was not declared in this scope

       LoadTaskSettings(x);

                         ^

ESPEasy:559: error: 'PluginCall' was not declared in this scope

       success = PluginCall(PLUGIN_READ, &TempEvent, dummyString);

                                                                ^

ESPEasy:576: error: 'Calculate' was not declared in this scope

             byte error = Calculate(TmpStr, &result);

                                                   ^

ESPEasy:581: error: 'sendData' was not declared in this scope

         sendData(&TempEvent);

                            ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'boolean sendData(EventStruct*)':

Controller:6: error: 'LoadTaskSettings' was not declared in this scope

   LoadTaskSettings(event->TaskIndex);

                                    ^

Controller:7: error: 'getProtocolIndex' was not declared in this scope

   byte ProtocolIndex = getProtocolIndex(Settings.Protocol);

                                                          ^

Controller:10: error: 'PluginCall' was not declared in this scope

   PluginCall(PLUGIN_EVENT_OUT, event, dummyString);

                                                  ^

Controller:16: error: 'addLog' was not declared in this scope

     addLog(LOG_LEVEL_DEBUG_MORE, log);

                                     ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'void callback(const MQTT::Publish&)':

Controller:36: error: 'addLog' was not declared in this scope

   addLog(LOG_LEVEL_DEBUG, log);

                              ^

Controller:41: error: 'getProtocolIndex' was not declared in this scope

   byte ProtocolIndex = getProtocolIndex(Settings.Protocol);

                                                          ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'void MQTTConnect()':

Controller:66: error: 'addLog' was not declared in this scope

       addLog(LOG_LEVEL_INFO, log);

                                 ^

Controller:78: error: 'addLog' was not declared in this scope

       addLog(LOG_LEVEL_ERROR, log);

                                  ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'void MQTTCheck()':

Controller:91: error: 'getProtocolIndex' was not declared in this scope

   byte ProtocolIndex = getProtocolIndex(Settings.Protocol);

                                                          ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'boolean nodeVariableCopy(byte, byte)':

Controller:121: error: 'addLog' was not declared in this scope

     addLog(LOG_LEVEL_DEBUG, log);

                                ^

Controller:133: error: 'addLog' was not declared in this scope

   addLog(LOG_LEVEL_DEBUG, log);

                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'void checkUDP()':

Controller:233: error: 'addLog' was not declared in this scope

       addLog(LOG_LEVEL_DEBUG, packetBuffer);

                                           ^

Controller:234: error: 'ExecuteCommand' was not declared in this scope

       ExecuteCommand(packetBuffer);

                                  ^

Controller:264: error: 'addLog' was not declared in this scope

             addLog(LOG_LEVEL_DEBUG_MORE, log);

                                             ^

Controller:272: error: 'PluginCall' was not declared in this scope

             PluginCall(PLUGIN_UDP_IN, &TempEvent, dummyString);

                                                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Controller.ino: In function 'void sendSysInfoUDP(byte)':

Controller:308: error: 'addLog' was not declared in this scope

   addLog(LOG_LEVEL_DEBUG_MORE, log);

                                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Hardware.ino: In function 'void hardwareInit()':

Hardware:11: error: 'addLog' was not declared in this scope

       addLog(LOG_LEVEL_INFO,log);

                                ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void SaveSettings()':

Misc:167: error: 'SaveToFlash' was not declared in this scope

   SaveToFlash(0, (byte*)&Settings, sizeof(struct SettingsStruct));

                                                                 ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'boolean LoadSettings()':

Misc:182: error: 'LoadFromFlash' was not declared in this scope

   LoadFromFlash(0, (byte*)&Settings, sizeof(struct SettingsStruct));

                                                                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void SaveTaskSettings(byte)':

Misc:196: error: 'SaveToFlash' was not declared in this scope

   SaveToFlash(4096 + (TaskIndex * 1024), (byte*)&ExtraTaskSettings, sizeof(struct ExtraTaskSettingsStruct));

                                                                                                           ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void LoadTaskSettings(byte)':

Misc:212: error: 'LoadFromFlash' was not declared in this scope

   LoadFromFlash(4096 + (TaskIndex * 1024), (byte*)&ExtraTaskSettings, sizeof(struct ExtraTaskSettingsStruct));

                                                                                                             ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void SaveCustomTaskSettings(int, byte*, int)':

Misc:227: error: 'SaveToFlash' was not declared in this scope

   SaveToFlash(4096 + (TaskIndex * 1024) + 512, memAddress, datasize);

                                                                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void LoadCustomTaskSettings(int, byte*, int)':

Misc:242: error: 'LoadFromFlash' was not declared in this scope

   LoadFromFlash(4096 + (TaskIndex * 1024) + 512, memAddress, datasize);

                                                                      ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void SaveToFlash(int, byte*, int)':

Misc:334: error: 'addLog' was not declared in this scope

   addLog(LOG_LEVEL_INFO,log);

                            ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void EraseFlash()':

Misc:386: error: 'addLog' was not declared in this scope

         addLog(LOG_LEVEL_INFO,log);

                                  ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void ResetFactory()':

Misc:402: error: 'readFromRTC' was not declared in this scope

   if (readFromRTC(&bootCount))

                             ^

Misc:416: error: 'saveToRTC' was not declared in this scope

   saveToRTC(bootCount);

                      ^

Misc:469: error: 'WifiDisconnect' was not declared in this scope

   WifiDisconnect();

                  ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Misc.ino: In function 'void addLog(byte, String&)':

Misc:537: error: invalid initialization of non-const reference of type 'String&' from an rvalue of type 'char*'

   addLog(loglevel, log);

                       ^

Misc:533: error: in passing argument 2 of 'void addLog(byte, String&)'

 void addLog(byte loglevel, String& string)

      ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\Serial.ino: In function 'void ExecuteCommand(char*)':

Serial:57: error: 'WifiScan' was not declared in this scope

     WifiScan();

              ^

Serial:60: error: 'WifiConnect' was not declared in this scope

     WifiConnect();

                 ^

Serial:63: error: 'WifiDisconnect' was not declared in this scope

     WifiDisconnect();

                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void WebServerInit()':

WebServer:7: error: 'handle_root' was not declared in this scope

   WebServer.on("/", handle_root);

                     ^

WebServer:8: error: 'handle_config' was not declared in this scope

   WebServer.on("/config", handle_config);

                           ^

WebServer:9: error: 'handle_hardware' was not declared in this scope

   WebServer.on("/hardware", handle_hardware);

                             ^

WebServer:10: error: 'handle_devices' was not declared in this scope

   WebServer.on("/devices", handle_devices);

                            ^

WebServer:11: error: 'handle_log' was not declared in this scope

   WebServer.on("/log", handle_log);

                        ^

WebServer:12: error: 'handle_tools' was not declared in this scope

   WebServer.on("/tools", handle_tools);

                          ^

WebServer:13: error: 'handle_i2cscanner' was not declared in this scope

   WebServer.on("/i2cscanner", handle_i2cscanner);

                               ^

WebServer:14: error: 'handle_wifiscanner' was not declared in this scope

   WebServer.on("/wifiscanner", handle_wifiscanner);

                                ^

WebServer:15: error: 'handle_login' was not declared in this scope

   WebServer.on("/login", handle_login);

                          ^

WebServer:16: error: 'handle_control' was not declared in this scope

   WebServer.on("/control", handle_control);

                            ^

WebServer:17: error: 'handle_download' was not declared in this scope

   WebServer.on("/download", handle_download);

                             ^

WebServer:18: error: 'handle_upload' was not declared in this scope

   WebServer.on("/upload", handle_upload);

                           ^

WebServer:19: error: 'handleFileUpload' was not declared in this scope

   WebServer.onFileUpload(handleFileUpload);

                          ^

WebServer:24: error: 'handle_css' was not declared in this scope

   WebServer.on("/esp.css", handle_css);

                            ^

WebServer:26: error: 'handle_advanced' was not declared in this scope

   WebServer.on("/advanced", handle_advanced);

                             ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_root()':

WebServer:113: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

WebServer:120: error: 'urlDecode' was not declared in this scope

   urlDecode(command);

                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_config()':

WebServer:232: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

WebServer:256: error: 'urlDecode' was not declared in this scope

     urlDecode(tmpString);

                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_hardware()':

WebServer:392: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

WebServer:409: error: 'addPinSelect' was not declared in this scope

   addPinSelect(true, reply, "pini2csda", Settings.Pin_i2c_sda);

                                                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_devices()':

WebServer:425: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

WebServer:493: error: 'urlDecode' was not declared in this scope

       urlDecode(tmpString);

                          ^

WebServer:532: error: 'PluginCall' was not declared in this scope

       PluginCall(PLUGIN_WEBFORM_SAVE, &TempEvent, dummyString);

                                                              ^

WebServer:569: error: 'PluginCall' was not declared in this scope

       PluginCall(PLUGIN_GET_DEVICEVALUENAMES, &TempEvent, dummyString);

                                                                      ^

WebServer:591: error: 'PluginCall' was not declared in this scope

     customConfig = PluginCall(PLUGIN_WEBFORM_SHOW_CONFIG, &TempEvent, reply);

                                                                            ^

WebServer:655: error: 'PluginCall' was not declared in this scope

       PluginCall(PLUGIN_GET_DEVICEVALUENAMES, &TempEvent, dummyString);

                                                                      ^

WebServer:660: error: 'addDeviceSelect' was not declared in this scope

     addDeviceSelect(reply, "taskdevicenumber", Settings.TaskDeviceNumber[index - 1]);

                                                                                    ^

WebServer:687: error: 'addPinSelect' was not declared in this scope

           addPinSelect(false, reply, "taskdevicepin1", Settings.TaskDevicePin1[index - 1]);

                                                                                          ^

WebServer:692: error: 'addPinSelect' was not declared in this scope

           addPinSelect(false, reply, "taskdevicepin2", Settings.TaskDevicePin2[index - 1]);

                                                                                          ^

WebServer:714: error: 'PluginCall' was not declared in this scope

       PluginCall(PLUGIN_WEBFORM_LOAD, &TempEvent, reply);

                                                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void addDeviceSelect(String&, String, int)':

WebServer:770: error: 'sortDeviceArray' was not declared in this scope

   sortDeviceArray();

                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_log()':

WebServer:1003: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_tools()':

WebServer:1040: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

WebServer:1046: error: 'urlDecode' was not declared in this scope

   urlDecode(command);

                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_i2cscanner()':

WebServer:1090: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_wifiscanner()':

WebServer:1167: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_login()':

WebServer:1206: error: 'urlDecode' was not declared in this scope

   urlDecode(command);

                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_control()':

WebServer:1246: error: 'urlDecode' was not declared in this scope

   urlDecode(command);

                    ^

WebServer:1267: error: 'PluginCall' was not declared in this scope

   if (!PluginCall(PLUGIN_WRITE, &TempEvent, webrequest))

                                                       ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\WebServer.ino: In function 'void handle_advanced()':

WebServer:1282: error: 'isLoggedIn' was not declared in this scope

   if (!isLoggedIn()) return;

                   ^

WebServer:1304: error: 'urlDecode' was not declared in this scope

     urlDecode(tmpString);

                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_C005.ino: In function 'boolean CPlugin_005(byte, EventStruct*)':

_C005:52: error: 'PluginCall' was not declared in this scope

         PluginCall(PLUGIN_WRITE, &TempEvent, cmd);

                                                 ^

_C005:62: error: 'PluginCall' was not declared in this scope

           PluginCall(PLUGIN_GET_DEVICEVALUENAMES, event, dummyString);

                                                                     ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_C006.ino: In function 'boolean CPlugin_006(byte, EventStruct*)':

_C006:63: error: 'PluginCall' was not declared in this scope

           PluginCall(PLUGIN_WRITE, &TempEvent, cmd);

                                                   ^

_C006:73: error: 'PluginCall' was not declared in this scope

           PluginCall(PLUGIN_GET_DEVICEVALUENAMES, event, dummyString);

                                                                     ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P003_Pulse.ino: In function 'boolean Plugin_003(byte, EventStruct*, String&)':

_P003_Pulse:87: error: 'Plugin_003_pulseinit' was not declared in this scope

         Plugin_003_pulseinit(Settings.TaskDevicePin1[event->TaskIndex], event->TaskIndex);

                                                                                         ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P004_Dallas.ino: In function 'boolean Plugin_004(byte, EventStruct*, String&)':

_P004_Dallas:52: error: 'Plugin_004_DS_scan' was not declared in this scope

         byte devCount = Plugin_004_DS_scan(choice, addr);

                                                        ^

_P004_Dallas:86: error: 'Plugin_004_DS_scan' was not declared in this scope

         byte devCount = Plugin_004_DS_scan(Settings.TaskDevicePluginConfig[event->TaskIndex][0], addr);

                                                                                                      ^

_P004_Dallas:117: error: 'Plugin_004_DS_readTemp' was not declared in this scope

         if (Plugin_004_DS_readTemp(addr, &value))

                                                ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P004_Dallas.ino: In function 'byte Plugin_004_DS_scan(byte, uint8_t*)':

_P004_Dallas:152: error: 'Plugin_004_DS_reset' was not declared in this scope

   Plugin_004_DS_reset();

                       ^

_P004_Dallas:154: error: 'Plugin_004_DS_reset_search' was not declared in this scope

   Plugin_004_DS_reset_search();

                              ^

_P004_Dallas:155: error: 'Plugin_004_DS_search' was not declared in this scope

   while (Plugin_004_DS_search(tmpaddr))

                                      ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P004_Dallas.ino: In function 'boolean Plugin_004_DS_readTemp(uint8_t*, float*)':

_P004_Dallas:174: error: 'Plugin_004_DS_reset' was not declared in this scope

   Plugin_004_DS_reset();

                       ^

_P004_Dallas:175: error: 'Plugin_004_DS_write' was not declared in this scope

   Plugin_004_DS_write(0x55);           // Choose ROM

                           ^

_P004_Dallas:189: error: 'Plugin_004_DS_read' was not declared in this scope

     ScratchPad[i] = Plugin_004_DS_read();

                                        ^

_P004_Dallas:191: error: 'Plugin_004_DS_crc8' was not declared in this scope

   if (Plugin_004_DS_crc8(ScratchPad, 8) != ScratchPad[8])

                                       ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P004_Dallas.ino: In function 'uint8_t Plugin_004_DS_search(uint8_t*)':

_P004_Dallas:282: error: 'Plugin_004_DS_write' was not declared in this scope

     Plugin_004_DS_write(0xF0);

                             ^

_P004_Dallas:288: error: 'Plugin_004_DS_read_bit' was not declared in this scope

       id_bit = Plugin_004_DS_read_bit();

                                       ^

_P004_Dallas:328: error: 'Plugin_004_DS_write_bit' was not declared in this scope

         Plugin_004_DS_write_bit(search_direction);

                                                 ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P004_Dallas.ino: In function 'uint8_t Plugin_004_DS_read()':

_P004_Dallas:380: error: 'Plugin_004_DS_read_bit' was not declared in this scope

     if (Plugin_004_DS_read_bit())

                                ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P004_Dallas.ino: In function 'void Plugin_004_DS_write(uint8_t)':

_P004_Dallas:394: error: 'Plugin_004_DS_write_bit' was not declared in this scope

     Plugin_004_DS_write_bit( (bitMask & ByteToWrite)?1:0);

                                                         ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P005_DHT.ino: In function 'boolean Plugin_005(byte, EventStruct*, String&)':

_P005_DHT:110: error: 'Plugin_005_read_dht_dat' was not declared in this scope

               byte data = Plugin_005_read_dht_dat();

                                                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P006_BMP085.ino: In function 'boolean Plugin_006(byte, EventStruct*, String&)':

_P006_BMP085:50: error: 'Plugin_006_bmp085_begin' was not declared in this scope

           Plugin_006_bmp085_begin();

                                   ^

_P006_BMP085:52: error: 'Plugin_006_bmp085_readTemperature' was not declared in this scope

         UserVar[event->BaseVarIndex] = Plugin_006_bmp085_readTemperature();

                                                                          ^

_P006_BMP085:53: error: 'Plugin_006_bmp085_readPressure' was not declared in this scope

         UserVar[event->BaseVarIndex + 1] = ((float)Plugin_006_bmp085_readPressure()) / 100;

                                                                                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P006_BMP085.ino: In function 'boolean Plugin_006_bmp085_begin()':

_P006_BMP085:95: error: 'Plugin_006_bmp085_read8' was not declared in this scope

   if (Plugin_006_bmp085_read8(0xD0) != 0x55) return false;

                                   ^

_P006_BMP085:98: error: 'Plugin_006_bmp085_read16' was not declared in this scope

   ac1 = Plugin_006_bmp085_read16(BMP085_CAL_AC1);

                                                ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P006_BMP085.ino: In function 'uint16_t Plugin_006_bmp085_readRawTemperature()':

_P006_BMP085:117: error: 'Plugin_006_bmp085_write8' was not declared in this scope

   Plugin_006_bmp085_write8(BMP085_CONTROL, BMP085_READTEMPCMD);

                                                              ^

_P006_BMP085:119: error: 'Plugin_006_bmp085_read16' was not declared in this scope

   return Plugin_006_bmp085_read16(BMP085_TEMPDATA);

                                                  ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P006_BMP085.ino: In function 'uint32_t Plugin_006_bmp085_readRawPressure()':

_P006_BMP085:128: error: 'Plugin_006_bmp085_write8' was not declared in this scope

   Plugin_006_bmp085_write8(BMP085_CONTROL, BMP085_READPRESSURECMD + (oversampling << 6));

                                                                                        ^

_P006_BMP085:132: error: 'Plugin_006_bmp085_read16' was not declared in this scope

   raw = Plugin_006_bmp085_read16(BMP085_PRESSUREDATA);

                                                     ^

_P006_BMP085:134: error: 'Plugin_006_bmp085_read8' was not declared in this scope

   raw |= Plugin_006_bmp085_read8(BMP085_PRESSUREDATA + 2);

                                                         ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P008_RFID.ino: In function 'boolean Plugin_008(byte, EventStruct*, String&)':

_P008_RFID:66: error: 'Plugin_008_interrupt1' was not declared in this scope

         attachInterrupt(Settings.TaskDevicePin1[event->TaskIndex], Plugin_008_interrupt1, FALLING);

                                                                    ^

_P008_RFID:67: error: 'Plugin_008_interrupt2' was not declared in this scope

         attachInterrupt(Settings.TaskDevicePin2[event->TaskIndex], Plugin_008_interrupt2, FALLING);

                                                                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P009_MCP.ino: In function 'boolean Plugin_009(byte, EventStruct*, String&)':

_P009_MCP:46: error: 'Plugin_009_Read' was not declared in this scope

         switchstate[event->TaskIndex] = Plugin_009_Read(Settings.TaskDevicePort[event->TaskIndex]);

                                                                                                  ^

_P009_MCP:48: error: 'Plugin_009_Config' was not declared in this scope

         Plugin_009_Config(Settings.TaskDevicePort[event->TaskIndex], 1);

                                                                       ^

_P009_MCP:55: error: 'Plugin_009_Read' was not declared in this scope

         int state = Plugin_009_Read(Settings.TaskDevicePort[event->TaskIndex]);

                                                                              ^

_P009_MCP:82: error: 'Plugin_009_Write' was not declared in this scope

           Plugin_009_Write(event->Par1, event->Par2);

                                                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P013_HCSR04.ino: In function 'boolean Plugin_013(byte, EventStruct*, String&)':

_P013_HCSR04:101: error: 'Plugin_013_interrupt' was not declared in this scope

         attachInterrupt(Settings.TaskDevicePin2[event->TaskIndex], Plugin_013_interrupt, CHANGE);

                                                                    ^

_P013_HCSR04:111: error: 'Plugin_013_read' was not declared in this scope

           float value = Plugin_013_read();

                                         ^

_P013_HCSR04:133: error: 'Plugin_013_read' was not declared in this scope

           float value = Plugin_013_read();

                                         ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P014_SI7021.ino: In function 'boolean Plugin_014(byte, EventStruct*, String&)':

_P014_SI7021:118: error: 'Plugin_014_si7021_begin' was not declared in this scope

           Plugin_014_init = Plugin_014_si7021_begin(res);

                                                        ^

_P014_SI7021:122: error: 'Plugin_014_si7021_readValues' was not declared in this scope

         if (Plugin_014_init && Plugin_014_si7021_readValues(res) == 0) {

                                                                ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P014_SI7021.ino: In function 'boolean Plugin_014_si7021_begin(uint8_t)':

_P014_SI7021:158: error: 'Plugin_014_si7021_setResolution' was not declared in this scope

   ret = Plugin_014_si7021_setResolution(resolution);

                                                   ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P015_TLS2561.ino: In function 'boolean Plugin_015(byte, EventStruct*, String&)':

_P015_TLS2561:157: error: 'Plugin_015_tls2561_begin' was not declared in this scope

           Plugin_015_init = Plugin_015_tls2561_begin(integration);

                                                                 ^

_P015_TLS2561:162: error: 'Plugin_015_tsl2561_calcLux' was not declared in this scope

           ret = Plugin_015_tsl2561_calcLux(integration);

                                                       ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P015_TLS2561.ino: In function 'boolean Plugin_015_tls2561_begin(uint8_t)':

_P015_TLS2561:194: error: 'Plugin_015_tsl2561_writeRegister' was not declared in this scope

   ret = Plugin_015_tsl2561_writeRegister(TSL2561_CONTROL, TSL2561_POWER_UP); 

                                                                           ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P017_PN532.ino: In function 'boolean Plugin_017(byte, EventStruct*, String&)':

_P017_PN532:85: error: 'getFirmwareVersion' was not declared in this scope

           uint32_t versiondata = getFirmwareVersion();

                                                     ^

_P017_PN532:101: error: 'writeCommand' was not declared in this scope

           if (writeCommand(Plugin_017_pn532_packetbuffer, 4))

                                                            ^

_P017_PN532:107: error: 'readPassiveTargetID' was not declared in this scope

         success = readPassiveTargetID(PN532_MIFARE_ISO14443A, uid, &uidLength);

                                                                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P017_PN532.ino: In function 'uint32_t getFirmwareVersion()':

_P017_PN532:139: error: 'writeCommand' was not declared in this scope

   if (writeCommand(Plugin_017_pn532_packetbuffer, 1)) {

                                                    ^

_P017_PN532:144: error: 'readResponse' was not declared in this scope

   int16_t status = readResponse(Plugin_017_pn532_packetbuffer, sizeof(Plugin_017_pn532_packetbuffer),10);

                                                                                                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P017_PN532.ino: In function 'bool readPassiveTargetID(uint8_t, uint8_t*, uint8_t*)':

_P017_PN532:171: error: 'writeCommand' was not declared in this scope

   if (writeCommand(Plugin_017_pn532_packetbuffer, 3)) {

                                                    ^

_P017_PN532:176: error: 'readResponse' was not declared in this scope

   if (readResponse(Plugin_017_pn532_packetbuffer, sizeof(Plugin_017_pn532_packetbuffer), timeout) < 0) {

                                                                                                 ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P017_PN532.ino: In function 'int8_t writeCommand(const uint8_t*, uint8_t)':

_P017_PN532:231: error: 'readAckFrame' was not declared in this scope

   return readAckFrame();

                       ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P019_PCF8574.ino: In function 'boolean Plugin_019(byte, EventStruct*, String&)':

_P019_PCF8574:46: error: 'Plugin_019_Read' was not declared in this scope

         switchstate[event->TaskIndex] = Plugin_019_Read(Settings.TaskDevicePort[event->TaskIndex]);

                                                                                                  ^

_P019_PCF8574:53: error: 'Plugin_019_Read' was not declared in this scope

         int state = Plugin_019_Read(Settings.TaskDevicePort[event->TaskIndex]);

                                                                              ^

_P019_PCF8574:80: error: 'Plugin_019_Write' was not declared in this scope

           Plugin_019_Write(event->Par1, event->Par2);

                                                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P022_PCA9685.ino: In function 'boolean Plugin_022(byte, EventStruct*, String&)':

_P022_PCA9685:56: error: 'Plugin_022_writeRegister' was not declared in this scope

           Plugin_022_writeRegister(PCA9685_MODE1, (byte)0x01); // reset the device

                                                             ^

_P022_PCA9685:69: error: 'Plugin_022_Write' was not declared in this scope

           Plugin_022_Write(event->Par1, event->Par2);

                                                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'boolean Plugin_023(byte, EventStruct*, String&)':

_P023_OLED:92: error: 'Plugin_023_StartUp_OLED' was not declared in this scope

         Plugin_023_StartUp_OLED();

                                 ^

_P023_OLED:93: error: 'Plugin_023_clear_display' was not declared in this scope

         Plugin_023_clear_display();

                                  ^

_P023_OLED:94: error: 'Plugin_023_sendStrXY' was not declared in this scope

         Plugin_023_sendStrXY((char*)"ESP Easy ", 0, 0);

                                                      ^

_P023_OLED:166: error: 'Plugin_023_sendStrXY' was not declared in this scope

             Plugin_023_sendStrXY(tmp, x, 0);

                                           ^

_P023_OLED:186: error: 'Plugin_023_sendStrXY' was not declared in this scope

           Plugin_023_sendStrXY(tmp, event->Par1 - 1, event->Par2 - 1);

                                                                     ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'void Plugin_023_reset_display()':

_P023_OLED:298: error: 'Plugin_023_displayOff' was not declared in this scope

   Plugin_023_displayOff();

                         ^

_P023_OLED:299: error: 'Plugin_023_clear_display' was not declared in this scope

   Plugin_023_clear_display();

                            ^

_P023_OLED:300: error: 'Plugin_023_displayOn' was not declared in this scope

   Plugin_023_displayOn();

                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'void Plugin_023_StartUp_OLED()':

_P023_OLED:306: error: 'Plugin_023_init_OLED' was not declared in this scope

   Plugin_023_init_OLED();

                        ^

_P023_OLED:308: error: 'Plugin_023_displayOff' was not declared in this scope

   Plugin_023_displayOff();

                         ^

_P023_OLED:309: error: 'Plugin_023_setXY' was not declared in this scope

   Plugin_023_setXY(0, 0);

                        ^

_P023_OLED:310: error: 'Plugin_023_clear_display' was not declared in this scope

   Plugin_023_clear_display();

                            ^

_P023_OLED:311: error: 'Plugin_023_displayOn' was not declared in this scope

   Plugin_023_displayOn();

                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'void Plugin_023_displayOn()':

_P023_OLED:317: error: 'Plugin_023_sendcommand' was not declared in this scope

   Plugin_023_sendcommand(0xaf);        //display on

                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'void Plugin_023_displayOff()':

_P023_OLED:323: error: 'Plugin_023_sendcommand' was not declared in this scope

   Plugin_023_sendcommand(0xae);    //display off

                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'void Plugin_023_clear_display()':

_P023_OLED:332: error: 'Plugin_023_setXY' was not declared in this scope

     Plugin_023_setXY(k, 0);

                          ^

_P023_OLED:336: error: 'Plugin_023_SendChar' was not declared in this scope

         Plugin_023_SendChar(0);         //clear all COL

                              ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P023_OLED.ino: In function 'void Plugin_023_sendCharXY(unsigned char, int, int)':

_P023_OLED:357: error: 'Plugin_023_setXY' was not declared in this scope

   Plugin_023_setXY(X, Y);

                        ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\_P090_Event.ino: In function 'boolean Plugin_090(byte, EventStruct*, String&)':

_P090_Event:257: error: 'Plugin_090_Action' was not declared in this scope

           Plugin_090_Action(event->TaskIndex, ExtraTaskSettings.TaskDevicePluginConfigLong[0], ExtraTaskSettings.TaskDevicePluginConfigLong[1], ExtraTaskSettings.TaskDevicePluginConfigLong[2]);

                                                                                                                                                                                                ^

_P090_Event:275: error: 'Plugin_090_Action' was not declared in this scope

             Plugin_090_Action(event->TaskIndex, ExtraTaskSettings.TaskDevicePluginConfigLong[0], ExtraTaskSettings.TaskDevicePluginConfigLong[1], ExtraTaskSettings.TaskDevicePluginConfigLong[2]);

                                                                                                                                                                                                  ^

_P090_Event:292: error: 'Plugin_090_Action' was not declared in this scope

             Plugin_090_Action(event->TaskIndex, ExtraTaskSettings.TaskDevicePluginConfigLong[0], ExtraTaskSettings.TaskDevicePluginConfigLong[1], ExtraTaskSettings.TaskDevicePluginConfigLong[2]);

                                                                                                                                                                                                  ^

_P090_Event:359: error: 'Plugin_090_Action' was not declared in this scope

               Plugin_090_Action(event->TaskIndex, ExtraTaskSettings.TaskDevicePluginConfigLong[0], ExtraTaskSettings.TaskDevicePluginConfigLong[1], ExtraTaskSettings.TaskDevicePluginConfigLong[2]);

                                                                                                                                                                                                    ^

_P090_Event:361: error: 'Plugin_090_Action' was not declared in this scope

               Plugin_090_Action(event->TaskIndex, ExtraTaskSettings.TaskDevicePluginConfigLong[4], ExtraTaskSettings.TaskDevicePluginConfigLong[5], ExtraTaskSettings.TaskDevicePluginConfigLong[6]);

                                                                                                                                                                                                    ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\__CPlugin.ino: In function 'void CPluginInit()':

__CPlugin:118: error: 'CPluginCall' was not declared in this scope

   CPluginCall(CPLUGIN_PROTOCOL_ADD, 0);

                                      ^

C:\Users\Admin\Desktop\Easy IoT\ESPEasy\__Plugin.ino: In function 'void PluginInit()':

__Plugin:442: error: 'PluginCall' was not declared in this scope

   PluginCall(PLUGIN_DEVICE_ADD, 0, dummyString);

                                               ^

exit status 1
'emergencyReset' was not declared in this scope

Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-1084-ga39ce29\libraries\esp8266

  This report would have more information with
  "Show verbose output during compilation"
  enabled in File > Preferences.
I then updated the libraries and I am getting a new error:

Code: Select all

Arduino: 1.6.7 (Windows 7), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, 9600"

Board nodemcuv2 (platform esp8266, package esp8266) is unknown

Error compiling.
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-947-g39819f0\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-947-g39819f0\libraries\esp8266
Invalid library found in C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-947-g39819f0\libraries\esp8266: C:\Users\Admin\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\1.6.5-947-g39819f0\libraries\esp8266

  This report would have more information with
  "Show verbose output during compilation"
  enabled in File > Preferences.
I am x-posting this from the ESP8266 Forums (http://www.esp8266.com/viewtopic.php?f=32&t=7424). Any help is appreciated. Thank you!
Last edited by jeremiahlandi on 03 Jan 2016, 21:11, edited 1 time in total.

User avatar
costo
Normal user
Posts: 500
Joined: 21 Nov 2015, 15:03
Location: NL, zw-NB

Re: ESP EASY SKETCH UPLOAD ERROR

#2 Post by costo » 03 Jan 2016, 10:59

1. It looks like you are using an old ESP8266 library in the boardmanager you can check the version. Your's is 1.6.5-947-g39819f0.
2. You are using Arduino 1.6.7. and version 1.6.5 is the version which is advised for using with the esp8266 library.

So my advice is to go back to IDE 1.6.5 , then go into preferences and verify/change the 'Additional Boards Manager URL's' to
http://arduino.esp8266.com/stable/packa ... index.json
Then go into the boards Manager in Tools and install ESP8266 libraries Version 2.0.0

That should fix the problems

edit: The URL is: http ://arduino.esp8266.com/stable/package_esp8266com_index.json (without the space between http and : )

jeremiahlandi
New user
Posts: 2
Joined: 03 Jan 2016, 05:02

Re: ESP EASY SKETCH UPLOAD ERROR

#3 Post by jeremiahlandi » 03 Jan 2016, 21:10

costo,

I switched to the 1.6.5 version and everything started to work! Thank you for the help.

MonkeyTown
Normal user
Posts: 25
Joined: 08 May 2016, 02:29

Re: ESP EASY SKETCH UPLOAD ERROR

#4 Post by MonkeyTown » 08 May 2016, 02:43

costo wrote:1. It looks like you are using an old ESP8266 library in the boardmanager you can check the version. Your's is 1.6.5-947-g39819f0.
2. You are using Arduino 1.6.7. and version 1.6.5 is the version which is advised for using with the esp8266 library.

So my advice is to go back to IDE 1.6.5 , then go into preferences and verify/change the 'Additional Boards Manager URL's' to
http://arduino.esp8266.com/stable/packa ... index.json
Then go into the boards Manager in Tools and install ESP8266 libraries Version 2.0.0

That should fix the problems

edit: The URL is: http ://arduino.esp8266.com/stable/package_esp8266com_index.json (without the space between http and : )
THANK YOU!! I was about to pull the last few remaining hair from my poor head...and your post has finally allowed me to upload the sketch.

From my current trial and error I conclude this:

A) Running Arduino 1.6.4 / 1.6.5 / 1.6.8 - NO DIFFERENCE
B) MQTT Library - ANYTHING ELSE THAN 1.9.1 (as bundled with stable R_78 of EASYESP) WILL NOT COMPILE WITH MQTT LIB RELATED ERRORS - sad as the latest version is 2.6!
C) BOARD MANAGER - ESP 8266 2.0 - WORKS, 2.1 or 2.2 DOESN'T - resulting in compile errors "invalid conversion from 'byte ...."
D) LIQUID_CRYSTAL_I2C library bundled in R_78 WORKS without warnings, updated version has warning about library specifies support for AVR based devices, might not work with current board...

Is there any reason why only MQTT 1.9.1 works and why the latest stable release uses such an outdated version? I mean it in a very sincere way, I am a newbie when it comes to NodeMcu/ESP and MQTT, but is seems weird to use library that is several versions outdated... same with Board manager package for ESP....

THANKS for any info on this and also for the help provided already..much appreciated!!

zuzalite
New user
Posts: 1
Joined: 19 Jul 2016, 20:45

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#5 Post by zuzalite » 19 Jul 2016, 20:58

This guy(pspranav7) was solved this problem, NOT NEED to GO BACK to IDE 1.6.5!!!!!!!
Works fine in IDE 1.6.9 and the newest (2.3.0) Esp board.txt!!!!!!!!!!!!!!!!!

http://www.instructables.com/id/Program ... /?ALLSTEPS

http://www.instructables.com/id/Program ... /?ALLSTEPS

MonkeyTown
Normal user
Posts: 25
Joined: 08 May 2016, 02:29

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#6 Post by MonkeyTown » 20 Jul 2016, 02:12

The ONLY way I managed to compile and upload the latest build 110:

IDE 1.6.8 (presume it would work with latest)
Boards manager 2.3.0
PubSubClient by Nick O'Leary version 2.4.0. (actually worked with 2.3.0, but not higher)

Short of digging through the code and changing stuff, the only way it would compile for me without PubSub MQTT errors on compile is with this combo. Just thought someone can have similar problems...

Olivier
New user
Posts: 6
Joined: 21 Jul 2016, 22:17

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#7 Post by Olivier » 21 Jul 2016, 22:42

+1 helping me a lot

Arduino IDE 1.6.9
ESP8266 2.3.0
PubSubClient 2.6 (seemingly CHANGES.TXT doesn't mention the 2.6 updates and remain @ 2.4).

thks

PeteK
New user
Posts: 2
Joined: 30 Jul 2016, 21:15

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#8 Post by PeteK » 31 Jul 2016, 17:41

Not quite sure this problem is actually solved!

My environment:
Arduino IDE 1.6.9
ESP8266 2.3.0 which includes PubSubClient 2.6
ESP Easy R108 which includes PubSubClient 1.9

At least one example from PubSubClient 2.6 (mqtt_esp8266 which is not in the 1.9 examples) will not compile with version 1.9 and ESP Easy will not compile with 2.6.

Hopefully the ESP Easy package can be altered to use the more up to date PubSubClient.
Thanks

Drum
Normal user
Posts: 300
Joined: 07 Feb 2016, 11:56

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#9 Post by Drum » 01 Aug 2016, 05:50

For R108 read the tutorial. The configuration you are using does not work corrctly until R114, which is stated in the ESPEasy realeses thread. Reading the instructions and searching the forum will answer most questions.

PeteK
New user
Posts: 2
Joined: 30 Jul 2016, 21:15

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#10 Post by PeteK » 01 Aug 2016, 18:49

Thank you for pointing me in the right direction (and doing so politely) - now working fine.
Pete

piokuc
Normal user
Posts: 15
Joined: 22 Jul 2016, 13:44

Re: [SOLVED] ESP EASY SKETCH UPLOAD ERROR

#11 Post by piokuc » 14 Mar 2017, 09:57

Hi
I try upload sketch and i have a problem.

On Arduino ISE 1.6.9 i have an error downloading http://arduino.esp8266.com/stable/packa ... index.json

But on other PC on arduino IDE 1.6.5 i have this error:

Code: Select all

ESPEasy.ino: In function 'void setup()':
ESPEasy:610: error: 'FreeMem' was not declared in this scope
ESPEasy:614: error: 'initLog' was not declared in this scope
ESPEasy:617: error: 'SpiffsSectors' was not declared in this scope
ESPEasy:624: error: 'emergencyReset' was not declared in this scope
ESPEasy:628: error: 'addLog' was not declared in this scope
ESPEasy:630: error: 'fileSystemCheck' was not declared in this scope
ESPEasy:631: error: 'LoadSettings' was not declared in this scope
ESPEasy:649: error: 'ResetFactory' was not declared in this scope
ESPEasy:656: error: 'BuildFixes' was not declared in this scope
ESPEasy:666: error: 'hardwareInit' was not declared in this scope
ESPEasy:669: error: 'WifiAPconfig' was not declared in this scope
ESPEasy:670: error: 'WifiConnect' was not declared in this scope
ESPEasy:685: error: 'PluginInit' was not declared in this scope
ESPEasy:686: error: 'CPluginInit' was not declared in this scope
ESPEasy:687: error: 'NPluginInit' was not declared in this scope
ESPEasy:689: error: 'WebServerInit' was not declared in this scope
ESPEasy:700: error: 'getProtocolIndex' was not declared in this scope
ESPEasy:702: error: 'MQTTConnect' was not declared in this scope
ESPEasy:704: error: 'sendSysInfoUDP' was not declared in this scope
ESPEasy:707: error: 'readFromRTC' was not declared in this scope
ESPEasy:709: error: 'readUserVarFromRTC' was not declared in this scope
ESPEasy:726: error: 'saveToRTC' was not declared in this scope
ESPEasy:738: error: 'initTime' was not declared in this scope
ESPEasy:753: error: 'rulesProcessing' was not declared in this scope
ESPEasy:757: error: 'saveToRTC' was not declared in this scope
ESPEasy.ino: In function 'void loop()':
ESPEasy:772: error: 'WifiConnect' was not declared in this scope
ESPEasy:778: error: 'PluginCall' was not declared in this scope
ESPEasy:779: error: 'serial' was not declared in this scope
ESPEasy:788: error: 'deepSleep' was not declared in this scope
ESPEasy.ino: In function 'void run50TimesPerSecond()':
ESPEasy:820: error: 'PluginCall' was not declared in this scope
ESPEasy.ino: In function 'void run10TimesPerSecond()':
ESPEasy:830: error: 'PluginCall' was not declared in this scope
ESPEasy:831: error: 'checkUDP' was not declared in this scope
ESPEasy:834: error: 'rulesProcessing' was not declared in this scope
ESPEasy.ino: In function 'void runOncePerSecond()':
ESPEasy:850: error: 'saveToRTC' was not declared in this scope
ESPEasy:853: error: 'addLog' was not declared in this scope
ESPEasy:862: error: 'delayedReboot' was not declared in this scope
ESPEasy:870: error: 'WifiDisconnect' was not declared in this scope
ESPEasy:884: error: 'checkTime' was not declared in this scope
ESPEasy:887: error: 'PluginCall' was not declared in this scope
ESPEasy:892: error: 'rulesTimers' was not declared in this scope
ESPEasy.ino: In function 'void runEach30Seconds()':
ESPEasy:930: error: 'FreeMem' was not declared in this scope
ESPEasy:933: error: 'addLog' was not declared in this scope
ESPEasy:934: error: 'sendSysInfoUDP' was not declared in this scope
ESPEasy:935: error: 'refreshNodeList' was not declared in this scope
ESPEasy:936: error: 'MQTTCheck' was not declared in this scope
ESPEasy:938: error: 'SSDP_update' was not declared in this scope
ESPEasy:947: error: 'WifiCheck' was not declared in this scope
ESPEasy.ino: In function 'void checkSensors()':
ESPEasy:971: error: 'saveUserVarToRTC' was not declared in this scope
ESPEasy.ino: In function 'void SensorSendTask(byte)':
ESPEasy:997: error: 'getDeviceIndex' was not declared in this scope
ESPEasy:998: error: 'LoadTaskSettings' was not declared in this scope
ESPEasy:1011: error: 'PluginCall' was not declared in this scope
ESPEasy:1028: error: 'Calculate' was not declared in this scope
ESPEasy:1033: error: 'sendData' was not declared in this scope
ESPEasy.ino: In function 'boolean checkSystemTimers()':
ESPEasy:1098: error: 'timeOut' was not declared in this scope
ESPEasy:1113: error: 'timeOut' was not declared in this scope
ESPEasy:1116: error: 'parseCommandString' was not declared in this scope
ESPEasy:1117: error: 'PluginCall' was not declared in this scope
ESPEasy:1118: error: 'ExecuteCommand' was not declared in this scope
ESPEasy.ino: In function 'void backgroundtasks()':
ESPEasy:1136: error: 'statusLED' was not declared in this scope
ESPEasy:1137: error: 'checkUDP' was not declared in this scope
Multiple libraries were found for "Servo.h"
 Used: C:\Users\pkuchciak\AppData\Roaming\Arduino15\packages\esp8266\hardware\esp8266\2.3.0\libraries\Servo
 Not used: C:\Users\pkuchciak\Desktop\arduino-1.6.5-r5-windows\arduino-1.6.5-r5\libraries\Servo
Multiple libraries were found for "SD.h"
 Used: C:\Users\pkuchciak\AppData\Roaming\Arduino15\packages\esp8266\hardware\esp8266\2.3.0\libraries\SD
 Not used: C:\Users\pkuchciak\Desktop\arduino-1.6.5-r5-windows\arduino-1.6.5-r5\libraries\SD
'FreeMem' was not declared in this scope
Please help me...

Post Reply

Who is online

Users browsing this forum: No registered users and 25 guests