We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f50f82 commit e1eafbbCopy full SHA for e1eafbb
src/ArduinoIoTCloudDevice.cpp
@@ -120,8 +120,8 @@ ArduinoCloudDevice::State ArduinoCloudDevice::handleSendCapabilities() {
120
121
#if defined(BOARD_HAS_WIFI)
122
String WiFiFWVersion = WiFi.firmwareVersion();
123
- WiFiFWVersionMessage wifiFWVersionMessage = { WiFiFWVersionMessageId, WiFiFWVersion.c_str() };
124
- deliver(reinterpret_cast<Message*>(&wifiFWVersionMessage));
+ VersionMessage versionMessage = { WiFiFWVersionMessageId, WiFiFWVersion.c_str() };
+ deliver(reinterpret_cast<Message*>(&versionMessage));
125
#endif
126
/* Subscribe to device topic to request */
127
ThingBeginCmd thingBegin = { ThingBeginCmdId };
0 commit comments