makeEspArduino & esp8266 mqtt gateway
-
Hi folks,
I'm having a bit of an issue with re-building my esp8266 mqtt gateway using the make file from the makeEspArduino project.
What I'm seeing is an issue compiling the following:
/home/sf/Arduino/libraries/MySensors/core/MyGatewayTransportEthernet.cpp:103:1: error: 'EthernetServer' does not name a type
EthernetServer _ethernetServer(_ethernetGatewayPort);
^
/home/sf/Arduino/libraries/MySensors/core/MyGatewayTransportEthernet.cpp:118:8: error: 'EthernetClient' does not name a type
static EthernetClient client = EthernetClient();From the looks of it the defines at the start of my sketch are not being passed down to the MySensors components As those types are defined a few lines above the ones with the error in an ifdef block.
Before I disappear down a rabbit hole, does anyone have any suggestions as to how I can address this error?
TIA
Steve
-
Were you able to find a resolution to this problem? I'm getting a similar issue.