Skip to content

Commit

Permalink
fix title case
Browse files Browse the repository at this point in the history
  • Loading branch information
khusmann committed Dec 24, 2024
1 parent 9f01b00 commit 0c60bac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pip install .
(If you are developing the package, you can use `pip install -e .` to install it
in "editable" mode.)

## Quick start
## Quick Start

First, make sure your radio is paired with your computer, and get its device
UUID (e.g. `XX:XX:XX:XX:XX:XX`).
Expand All @@ -70,7 +70,7 @@ async def main():
asyncio.run(main())
```

### Next steps
### Next Steps

To see what else you can do with this library, check out the examples in the
`benlink.client` module documentation.
Expand Down
6 changes: 3 additions & 3 deletions src/benlink/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
locate the radio's device UUID (e.g. `XX:XX:XX:XX:XX:XX`), and substitute it
into the example code.
## Connecting to the device
## Connecting To The Device
The following will connect to a radio and print its device info:
Expand All @@ -25,7 +25,7 @@ async def main():
asyncio.run(main())
```
## Changing settings
## Changing Settings
The following will connect to a radio and change the name of the first channel:
Expand All @@ -44,7 +44,7 @@ async def main():
asyncio.run(main())
```
## Handling events
## Handling Events
The `RadioClient` class provides a `register_event_handler` method for
registering a callback function to handle events. The callback function
Expand Down

0 comments on commit 0c60bac

Please sign in to comment.