File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 27
27
- name: Arduino_DebugUtils
28
28
- name: ArduinoMqttClient
29
29
- name: Arduino_SecureElement
30
- - name: Arduino_CloudUtils
30
+ - source-url: https://github.com/fabik111/Arduino_CloudUtils.git
31
+ version: add-standard-encoders
31
32
# sketch paths to compile (recursive) for all boards
32
33
UNIVERSAL_SKETCH_PATHS : |
33
34
- examples/ArduinoIoTCloud-Advanced
Original file line number Diff line number Diff line change @@ -118,6 +118,11 @@ ArduinoCloudDevice::State ArduinoCloudDevice::handleSendCapabilities() {
118
118
deliver (reinterpret_cast <Message*>(&deviceNetConfig));
119
119
}
120
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));
125
+ #endif
121
126
/* Subscribe to device topic to request */
122
127
ThingBeginCmd thingBegin = { ThingBeginCmdId };
123
128
deliver (reinterpret_cast <Message*>(&thingBegin));
Original file line number Diff line number Diff line change 17
17
#include <stdint.h>
18
18
#include <stddef.h>
19
19
#include <interfaces/message.h>
20
+ #include <cbor/standards/StandardMessages.h>
20
21
#include <connectionHandlerModels/settings.h>
21
22
22
23
/******************************************************************************
You can’t perform that action at this time.
0 commit comments