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: docs/pelion_ready/device-management.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,14 @@
1
1
<h2id="device-management">Device Management for Mbed OS</h2>
2
2
3
-
This feature provides a way to add device management capabilities to Mbed OS devices using the Pelion Device Management service.
4
-
5
-
It:
3
+
Pelion Client provides a way to add device management capabilities to Mbed OS devices using the Pelion Device Management service. It:
6
4
7
5
- Enables applications to connect and perform firmware updates in a few lines of code.
8
6
- Runs separately from your main application; it does not take over your main loop.
9
7
- Provides LWM2M resources, variables that sync automatically through Device Management.
10
8
- Helps users avoid doing blocking network operations in interrupt contexts, by automatically deferring actions to a separate thread.
11
9
- Provides end-to-end Greentea tests for Device Management.
12
10
13
-
This library makes it trivial to expose sensors, actuators and other variables to a cloud service. For a complete Device Management Client API, please see our [documentation](https://cloud.mbed.com/docs/current/client-api-references/index.html).
11
+
Pelion Client makes it trivial to expose sensors, actuators and other variables to a cloud service. For a complete Device Management Client API, please see our [documentation](https://cloud.mbed.com/docs/current/client-api-references/index.html).
14
12
15
13
### Device Management for your Mbed OS application
16
14
@@ -35,15 +33,17 @@ Useful references:
35
33
36
34
#### Adding a device management feature to your application
If you do not have an Mbed OS project to add, you can create one with `mbed new <your_application_name>` and then the `mbed add` step above.
45
43
46
-
1. Reference the library from the `main.cpp` file, and add network and storage drivers. Finally, initialize the SimpleMbedCloudClient library. This is the architecture of a device management application with Mbed OS:
44
+
1. Reference the library from the `main.cpp` file, and add network and storage drivers.
45
+
46
+
1. Finally, initialize the `simple-mbed-cloud-client` library:
0 commit comments