Skip to content

Commit a0f54fe

Browse files
committed
Adding comment describing the compatible boards for each sketch
1 parent 6a4193e commit a0f54fe

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

examples/ArduinoIoTCloud_LED_switch/ArduinoIoTCloud_LED_switch.ino

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
By default, settings for WiFi are chosen. If you prefer to use a GSM board take a look at thingProperties.h arduino_secrets.h,
1111
to make sure you uncomment what's needed and comment incompatible instructions.
1212
13+
This sketch is compatible with:
14+
- MKR 1000
15+
- MKR WIFI 1010
16+
- MKR GSM 1400
1317
*/
1418
#include "arduino_secrets.h"
1519
#include "thingProperties.h"

examples/ArduinoIoTCloud_Travis_CI/ArduinoIoTCloud_Travis_CI.ino

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
This sketch is used in combination with Travis CI to check if
33
unintentional breaking changes are made to the used facing
44
Arduino IoT Cloud API.
5+
6+
This sketch is compatible with:
7+
- MKR 1000
8+
- MKR WIFI 1010
9+
- MKR GSM 1400
510
*/
611

712
#include "arduino_secrets.h"

examples/GSM_Cloud_Blink/GSM_Cloud_Blink.ino

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/* This sketch is used during the getting started tutorial when
2+
initialising a Arduino cloud-enabled board with the Arduino
3+
cloud for the first time.
4+
5+
This sketch is compatible with:
6+
- MKR GSM 1400
7+
*/
8+
19
#include <ArduinoIoTCloud.h>
210
#include <ConnectionManager.h>
311
#include <GSMConnectionManager.h>

examples/MultiValue_example/MultiValue_example.ino

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
Properties which are marked as READ/WRITE in the Cloud Thing will also have functions
1313
which are called when their values are changed from the Dashboard.
1414
These functions are generated with the Thing and added at the end of this sketch.
15+
16+
This sketch is compatible with:
17+
- MKR 1000
18+
- MKR WIFI 1010
1519
*/
1620

1721
#include "thingProperties.h"

examples/WiFi_Cloud_Blink/WiFi_Cloud_Blink.ino

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* This sketch is used during the getting started tutorial when
2+
initialising a Arduino cloud-enabled board with the Arduino
3+
cloud for the first time.
4+
5+
This sketch is compatible with:
6+
- MKR 1000
7+
- MKR WIFI 1010
8+
*/
9+
110
#include <ArduinoIoTCloud.h>
211
#include <ConnectionManager.h>
312
#include <WiFiConnectionManager.h>

0 commit comments

Comments
 (0)