// Update these with values suitable for your hardware/network.
byte mac[] = { 0xDE, 0xED, 0xBA, 0xFE, 0xFE, 0xED };
IPAddress ip(172, 16, 0, 100);
IPAddress server(172, 16, 0, 2);Do I update the mac[] line with the specific mac address of my Wemos D1 Mini?
...and what are the 'ip' & 'server' addresses? I assume that one of them will be the Mosquitto server IP address (127.0.0.1), but which one? and what is the remaining IPAddress?
A link to the library example - https://github.com/knolleary/pubsubclie ... no#L16-L18