Skip to content

Commit 41bdf58

Browse files
authored
Update Readme.md (#2)
1 parent 9d19be3 commit 41bdf58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Guid uuid1 = Utility.CreateUuidFromShortCode(0x2A19);
6565

6666
### Defining the service and associated Characteristics
6767

68-
The GattServiceProvider is used to create and advertise the primary service definition. An extra device information service will also be automatically created.
68+
The GattServiceProvider is used to create and advertise the primary service definition. An extra device information service will be automatically created.
6969

7070
```csharp
7171
GattServiceProviderResult result = GattServiceProvider.Create(uuid);
@@ -184,7 +184,7 @@ private static void UpdateNotifyValue(double newValue)
184184

185185
### Read requested event
186186

187-
When a client requests to read a characteristic the managed event will be called assuming a static value hasn't been set.
187+
When a client requests to read a characteristic, the managed event will be called assuming a static value hasn't been set.
188188
If no event handler is set or you don't respond in a timely manner an Unlikely bluetooth error will be returned to client.
189189
If reading the value from a peripheral device takes time then best to put this outside the event handler.
190190

@@ -215,7 +215,7 @@ set or you don't respond in a timely manner an Unlikely bluetooth error will be
215215
The data received is a array of bytes and this is formatted as required by characteristic. This could be a single
216216
value of Int16, Int32, string etc. or it could be a number of different values.
217217

218-
This shows the reading of a single Int32 value from buffer and returns and error if wrong number
218+
This shows the reading of a single Int32 value from buffer and returns an error if the wrong number
219219
of bytes has been supplied.
220220

221221
```csharp
@@ -264,7 +264,7 @@ private static void _notifyCharacteristic_SubscribedClientsChanged(GattLocalChar
264264
# Bluetooth Serial Port Profile(SPP)
265265

266266
This assembly has an implementation of the Nordic SPP which can easily be used to send messages between a Bluetooth client and the device
267-
running the SPP. This is a simple way of provisioning the device with any extra information required like WiFi details.
267+
running the SPP. This is a simple way of provisioning a device with any extra information like WiFi details.
268268

269269
There are a number of Android and IOS app that support Nordic SPP that can be used to send/receive messages.
270270

@@ -284,7 +284,7 @@ spp.Start("MySpp");
284284

285285
```
286286

287-
When complete call the Stop method to stop the SPP.
287+
When complete, call the Stop method to stop the SPP.
288288

289289
## Handling Read Data events
290290

0 commit comments

Comments
 (0)