Topic: RemoteXY + ESP32 + W5100
Hi,
I do some try with REmoteXY with the W5100.
And I want to make two connection streams: WI -FI_CLOUD and ETHERNET_CLOUD.
However, I am having problems connecting the W5100 module to the ESP32 that I have not encountered before.
In the project, I choose the following configuration: Cloud server / Arduino UNO / Ethernet shield W5100 / Arduino IDE
In library 2.4.6 (REMOTEXY_MODE__ETHERNET_LIB_CLOUD) Previously I did this:
remotexy = new CRemoteXY (RemoteXY_CONF_PROGMEM, &RemoteXY, REMOTEXY_ACCESS_PASSWORD ,
REMOTEXY_ETHERNET_MAC, REMOTEXY_CLOUD_SERVER,
REMOTEXY_CLOUD_PORT, REMOTEXY_CLOUD_TOKEN);
And there were no problems.
I am currently using library 3.1.6 and instantiate the class like this:
remotexy = new CRemoteXY (RemoteXY_CONF_PROGMEM, &RemoteXY, REMOTEXY_ACCESS_PASSWORD,
new CRemoteXYConnectionCloud (new CRemoteXYComm_Ethernet (REMOTEXY_ETHERNET_MAC),
REMOTEXY_CLOUD_SERVER, REMOTEXY_CLOUD_PORT, REMOTEXY_CLOUD_TOKEN))
Writes: compilation error for ESP32 board
Give an example of two streaming connections over WI-FI and ETHERNET for ESP32.