Skip to content

Commit 96c90a0

Browse files
author
Amanda Butler
authored
Fix branding in device-management.md
Update branding for consistency.
1 parent f22f8b3 commit 96c90a0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/pelion_ready/device-management.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<h2 id="device-management">Device Management for Mbed OS</h2>
22

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:
64

75
- Enables applications to connect and perform firmware updates in a few lines of code.
86
- Runs separately from your main application; it does not take over your main loop.
97
- Provides LWM2M resources, variables that sync automatically through Device Management.
108
- Helps users avoid doing blocking network operations in interrupt contexts, by automatically deferring actions to a separate thread.
119
- Provides end-to-end Greentea tests for Device Management.
1210

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).
1412

1513
### Device Management for your Mbed OS application
1614

@@ -35,15 +33,17 @@ Useful references:
3533

3634
#### Adding a device management feature to your application
3735

38-
1. Add this library to your Mbed OS project:
36+
1. Add Pelion Client to your Mbed OS project:
3937

4038
```
4139
$ mbed add https://github.com/ARMmbed/simple-mbed-cloud-client
4240
```
4341

4442
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.
4543

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:
4747

4848
```cpp NOCI
4949
#include "simple-mbed-cloud-client.h"

0 commit comments

Comments
 (0)