You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+47-2Lines changed: 47 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,8 @@ Here are the FQBNs of the Arduino boards that can be provisioned with this comma
114
114
*`arduino:samd:mkrnb1500`
115
115
*`arduino:mbed_opta:opta`
116
116
*`arduino:mbed_giga:giga`
117
+
*`arduino:esp32:nano_nora`
118
+
*`arduino:renesas_uno:unor4wifi`
117
119
118
120
If the device supports more than one connectivity type (Eg: WiFi and Ethernet) the --connection flag can be used to set the desired connectivity
119
121
@@ -327,10 +329,17 @@ Note that the binary file (`.bin`) should be compiled using an arduino core that
327
329
arduino-cloud-cli ota upload --device-id <deviceID> --file <sketch-file.ino.bin>
328
330
```
329
331
330
-
The default OTA upload should complete in 10 minutes. Use `--deferred` flag to extend this time to one week (see an example sketch [here](https://github.com/arduino-libraries/ArduinoIoTCloud/blob/ab0af75a5666f875929029ac6df59e04789269c5/examples/ArduinoIoTCloud-DeferredOTA/ArduinoIoTCloud-DeferredOTA.ino)):
332
+
This schedule a new OTA. Its ID is printed as output.
333
+
It is possible to check status for scheduled/executed OTAs using status command.
331
334
332
335
```bash
333
-
arduino-cloud-cli ota upload --device-id <deviceID> --file <sketch-file.ino.bin> --deferred
336
+
arduino-cloud-cli ota status --ota-id <otaID>
337
+
```
338
+
339
+
or by device
340
+
341
+
```bash
342
+
arduino-cloud-cli ota status --device-id <deviceID>
334
343
```
335
344
336
345
### Mass upload
@@ -383,3 +392,39 @@ Create a dashboard: dashboards can be created only starting from a template. Sup
It is possible to apply a given template to a device. Apply will generate required resources. Configure device connectivity using '-n' option (see --help for further details).
0 commit comments