I First created something with RemoteXY, then FLProg to create the arduino file to upload it to my ESP8266 ESP01 device. But it keeps coming back with the error:
'FLProgOnBoardWifiInterface' does not name a type.
What does this mean and how do I solve this. I am not a programmer so every step i took was via internet and youtube movies.
I put the full code below this.
Arduino:1.8.19 (Windows 10), Board:"Generic ESP8266 Module, 80 MHz, Flash, Disabled (new aborts on oom), Disabled, All SSL ciphers (most compatible), 32KB cache + 32KB IRAM (balanced), Use pgm_read macros for IRAM/PROGMEM, no dtr (aka ck), 26 MHz, 40MHz, DOUT (compatible), 512KB (FS:none OTA:~246KB), 2, nonos-sdk 2.2.1 (legacy), v2 Lower Memory, Disabled, None, Only Sketch, 115200"
C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino:10: warning: "REMOTEXY_ACCESS_PASSWORD" redefined
10 | #define REMOTEXY_ACCESS_PASSWORD "Trigion@3125"
|
In file included from C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino:4:
c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\RemoteXY\src/RemoteXY.h:165: note: this is the location of the previous definition
165 | #define REMOTEXY_ACCESS_PASSWORD ""
|
In file included from c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\RemoteXY\src/RemoteXY.h:159,
from C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino:4:
c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\RemoteXY\src/RemoteXYComm_WiFi.h: In member function 'virtual uint8_t CRemoteXYServer_WiFi::available(CRemoteXYClient*)':
c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\RemoteXY\src/RemoteXYComm_WiFi.h:94:40: warning: 'WiFiClient WiFiServer::available(uint8_t*)' is deprecated: Renamed to accept(). [-Wdeprecated-declarations]
94 | WiFiClient cl = server->available ();
| ^
In file included from C:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\packages\esp8266\hardware\esp8266\3.1.2\libraries\ESP8266WiFi\src/ESP8266WiFi.h:40,
from C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino:3:
C:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\packages\esp8266\hardware\esp8266\3.1.2\libraries\ESP8266WiFi\src/WiFiServer.h:85:14: note: declared here
85 | WiFiClient available(uint8_t* status = NULL) attribute((deprecated("Renamed to accept().")));
| ^~~~~~~~~
C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino: At global scope:
pr3:5:1: error: 'FLProgOnBoardWifiInterface' does not name a type
5 | FLProgOnBoardWifiInterface WifiInterface_132345825;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino: In function 'void setup()':
pr3:30:5: error: 'WifiInterface_132345825' was not declared in this scope
30 | WifiInterface_132345825.setSkippingEvents(0);
| ^~~~~~~~~~~~~~~~~~~~~~~
C:\Users\mkok7\AppData\Local\Temp\flprog\pr3\pr3.ino: In function 'void loop()':
pr3:47:5: error: 'WifiInterface_132345825' was not declared in this scope
47 | WifiInterface_132345825.pool();
| ^~~~~~~~~~~~~~~~~~~~~~~
Meerdere bibliotheken gevonden voor "Wire.h"
Gebruikt: C:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\packages\esp8266\hardware\esp8266\3.1.2\libraries\Wire
Niet gebruikt: c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\Wire
Meerdere bibliotheken gevonden voor "RemoteXY.h"
Gebruikt: c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\RemoteXY
Niet gebruikt: c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\RemoteXYV3
Niet gebruikt: c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\arduino_960425
Meerdere bibliotheken gevonden voor "SoftwareSerial.h"
Gebruikt: C:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\packages\esp8266\hardware\esp8266\3.1.2\libraries\SoftwareSerial
Niet gebruikt: c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\Esp32-SoftwareSerial
Niet gebruikt: c:\Users\mkok7\Downloads\FLProg_9-1-0_Win64\ideV8\portable\sketchbook\libraries\SoftwareSerial
exit status 1
'FLProgOnBoardWifiInterface' does not name a type