Skip to content
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dan3143 authored Aug 10, 2020
1 parent 822f453 commit e228a11
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ For example, if you want to start a server that sends "Hello" to any client that
```c#
BluetoothServer server = new BluetoothServer();
server.Start();
server.DeviceStateChanged += (sender, e) => {
if (e.IsConnected) {
server.SendTo("Hello", e.Sender.address);
}
server.ClientConnected += (sender, e) => {
server.SendTo("Hello", e.Sender.address);
}
```

Expand Down

0 comments on commit e228a11

Please sign in to comment.