Skip to content

Add example exercising the GattClient API. #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jul 18, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions BLE_GattClient/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# BLE Gatt Client example

This application demonstrate detailed uses of the GattClient APIs.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"demonstrate" -> "demonstrates"


When the application is started it advertise itself to its environment with the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"advertise" -> "advertises"

device name `GattClient`. Once you connected the device with your mobile phone,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"you connected the" -> "you have connected to the" or "you connect to the" ?

the application starts a discovery of the GATT server exposed by your mobile phone.

After the discovery, this application reads the value of the characteristics
discovered and subscribes to the characteristics emitting notifications or
indications.

The device print the value of any indication or notification received from the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"print" -> "prints"

mobile phone.

# Running the application

## Requirements

You may us a generic BLE scanners:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"us" -> "use"
"scanners" -> "scanner"


- [nRF Master Control Panel](https://play.google.com/store/apps/details?id=no.nordicsemi.android.mcp) for Android.

- [LightBlue](https://itunes.apple.com/gb/app/lightblue-bluetooth-low-energy/id557428110?mt=8) for iPhone.

Hardware requirements are in the [main readme](https://github.com/ARMmbed/mbed-os-example-ble/blob/master/README.md).

## Building instructions

Building instructions for all samples are in the [main readme](https://github.com/ARMmbed/mbed-os-example-ble/blob/master/README.md).


Loading