This library facilitates interactions between boards featuring a cryptography co-processor and the Arduino IoT Cloud service. It includes a ConnectionManager to handle connection/disconnection/reconnection flows and provides means to interface local sketch variables with cloud based Thing properties, enabling synchronization and on-change callbacks. Currently supported boards: MKR1000 (WiFi101) and MKR 1010 (WiFiNINA). Support for MKRGSM is nearing completion and more cryptography enabled boards are following.
Arduino IoT Cloud is a service which facilitates connections between cloud-based applications and the world around you. More information is available here and a detailed tutorial can be found on Arduino Project Hub. The platform is currently in public beta, we appreciate any feedback provided.
-
Devices: Physical objects built around a board (e.g. MKR WiFi 1010). This is the hardware which runs the sketch, reads sensors, controls actuators and communicates with the Arduino IoT Cloud.
-
Things: Logical representation of a connected object. They embody inherent properties of the object, with as little reference to the actual hardware or code used to implement them. Each Thing is represented by a collection of Properties (e.g., temperature, light, pressure...).
-
Properties: Qualities defining the characteristics of a system. A Property can be defined as read-only (RO) to indicate that Arduino IoT Cloud can read the data, but cannot change the value of such Property. On the other end it may be designated to be read-and-write (RW), allowing Arduino IoT Cloud to remotely change the property’s value and trigger an event notification on the device to be handled via code.
-
Events: When a physical event is triggered on the Device, Arduino IoT Cloud is made aware of it thanks to application messages. It might, for example, be notified that a proximity sensor detected someone or something outside a door.
-
Software: An Arduino Create sketch is automatically generated by Arduino IoT Cloud when setting up a new thing: this simplifies starting efforts. Because the connection to the cloud is handled by the library, the user can focus on implementing the last bits of code required to handle the change of variables linked to properties. The introductory tutorial linked above explains this in an easy and comprehensive way.
The library is made of multiple classes:
-
ArduinoIoTCloud
is the main class. It's responsible for the connection to the MQTT Broker and to Arduino IoT Cloud. This library has multiplebegin(...)
methods allowing you to take more control of its behavior when it comes to network Client or to use aConnectionManager
-
ConnectionManager
is an abstract Class defining methods to be implemented in derived classes, such asWiFiConnectionManager
,GSMConnectionManager
and so on. The rightConnectionManager
is chosen on a board basis during compilation. -
WiFiConnectionManager
handles connection, network time retrieval, disconnection, and reconnection to Internet for WiFi equipped boards (MKR1000, MKR WIFI 1010 and upcoming implementations). -
GSMConnectionManager
handles connection, network time retrieval, disconnection, and reconnection to Internet for GSM equipped boards (MKR GSM 1400) -
CloudSerial
is similar to Serial, but used in combination with the cloud, allowing the user to send and receive custom messages using Arduino IoT Cloud as a channel.
Connection Manager is configured via a series of compiler directives, including the correct implementation of the class based on which board is selected.
-
Instantiate the class with
ConnectionManager *ArduinoIoTPreferredConnection = new WiFiConnectionManager(SECRET_SSID, SECRET_PASS);
if you are using a WiFi board, otherwise replace WiFi with GSM or any future implementation. -
The
check()
method does all the work. It uses a finite state machine and is responsible for connection and reconnection to a network. The method is designed to be non-blocking by using time (milliseconds) to perform its tasks. -
getTime()
returns different implementations of thegetTIme()
method based on the board used. Time is retrieved from an NTP server and is required for the SSL connection to the cloud. -
&getClient()
returns a reference an instance of theClient
class used to connect to the network. -
getStatus()
returns the network connection status. The different states are defined in anenum
-
debugMessage(char *_msg, uint8_t _debugLevel, bool _timestamp = true, bool _newline = true)
is the method used to print debug messages on the physical serial. This helps providing troubleshooting information should anything go wrong. -
The
setDebugMessageLevel(int _debugLevel)
method is used to set a level of granularity in information output. Every debug message comes with a level which goes from 0 to 4. A higher level means more verbosity. Debug messages with level higher than_debugLevel
will not be shown. The lowest level has a higher importance and is usually used for errors, which are always printed. Passing -1 as a parameter will disable logging entirely, errors will also be ignored.
-
The
begin(ConnectionManager *connection = ArduinoIoTPreferredConnection, String brokerAddress = "mqtts-sa.iot.arduino.cc")
method is used to initialize a connection to the Arduino IoT Cloud through MQTT. Accepts an instance ofConnectionManager
and returns 0 in case of failure or 1 if object is successfully instantiated. -
begin(Client& net, String brokerAddress = "mqtts-sa.iot.arduino.cc")
if connection is managed manually and not via aConnectionManager
a reference to aClient
object can be used. -
The
connect()
method is used to connect to the MQTT broker. -
disconnect()
closes the connection to the MQTT Client. -
The
update()
method can be called periodically in the loop of the.ino
file. If aConnectionManager
is implemented it checks network connnections. It also makes sure that a connection with the MQTT broker is active and tries to reconnect otherwise. Duringupdate()
data from the Cloud is retrieved and changed values are posted to the proper MQTT topic. -
connected()
simply returns the current status of the MQTT connection. -
reconnect(Client&)
cleans up the existing MQTT connection, creates a new one and initializes it by callingconnect()
-
setThingId(String const thing_id)
sets the THING_ID to properly configure the MQTT topic. -
getThingId()
returns the THING_ID. -
connectionCheck()
invokes thecheck()
method from a ConnectionManager if it is implemented. Mainly it implements a state machine and is responsible for the connection to Arduino IoT Cloud.