Code: Select all
void callback(
char* topic,
byte* payload,
unsigned int length) {
And changing the constructor to the following:
Code: Select all
// Instantiate MQTT client
EthernetClient ethClient;
PubSubClient client(server, 1883, callback, ethClient);