Skip to content

Commit 37081bb

Browse files
committed
Add little exlanation about various classes
1 parent fdd66d0 commit 37081bb

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The supported boards are MKRGSM, MKR1000 (Wifi101) and MKR 1010 (WifiNINA).
55

66
## Arduino IoT Cloud
77

8-
Arduino IoT Cloud is a service which allows connecting the cloud to the world around you.
8+
[Arduino IoT Cloud](https://create.arduino.cc/iot/things) is a service which allows connecting the cloud to the world around you. [Here](https://www.arduino.cc/en/IoT/HomePage) an introduction.
99
Now the platform is in public beta, feedbacks are welcome.
1010

1111

@@ -20,3 +20,20 @@ Now the platform is in public beta, feedbacks are welcome.
2020
- **Events**: When something happens the Arduino IoT Cloud is aware of it thanks to application messages. For example, it might be informed by a face-recognition application that someone is at a door, or it has received a request from another app that a light be turned on.
2121

2222
- **Software**: It's quickly autogenerated automatically by the Arduino IoT Cloud when setting up a new thing: in this way everything that you need it's almost done and ready. The connection to the cloud it's already made possible by this library. You have only to implement the callbacks linked to the properties.
23+
24+
## ArduinoIoTCloud library
25+
26+
The library is divided in various classes:
27+
- `ConnectionManager` which is responsable for the connection to the internet and to the Arduino IoT Cloud through `WiFiConnectionManager` or `GSMConnectionManager`. The selection is done using the type of board used.
28+
29+
- `ArduinoIoTCloud` it's the leading class. It's responsable for the connection to the MQTT Broker.
30+
31+
- `CloudSerial` it's similar to [Serial](https://www.arduino.cc/reference/en/language/functions/communication/serial/), but it's used in combination with the cloud.
32+
33+
### ConnectionManager
34+
[todo]
35+
36+
### ArduinoIoTCloud
37+
[todo]
38+
### CloudSerial
39+
[todo]

0 commit comments

Comments
 (0)