| 67 | } |
| 68 | |
| 69 | void gotIP(IpAddress ip, IpAddress netmask, IpAddress gateway) |
| 70 | { |
| 71 | Serial << _F("Connected: ") << ip << endl; |
| 72 | startMqttClient(); |
| 73 | publishMessage(); // run once publishMessage |
| 74 | |
| 75 | mqtt.subscribe(F("$aws/things/Basic_AWS/shadow/get")); |
| 76 | } |
| 77 | |
| 78 | } // namespace |
| 79 |
nothing calls this directly
no test coverage detected