-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from martinohanlon/dev
v1.3.1
- Loading branch information
Showing
9 changed files
with
45 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ Table of Contents | |
bluedotpythonapp | ||
dotapi | ||
btcommapi | ||
mockapi | ||
protocol | ||
build | ||
changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Mock API | ||
======== | ||
Blue Dot also contains a useful :mod:`mock` API for simulating Blue Dot and | ||
bluetooth comms. This is useful for testing and allows for prototyping | ||
without having to use a Blue Dot client. | ||
|
||
.. module:: bluedot.mock | ||
|
||
MockBlueDot | ||
----------- | ||
|
||
.. autoclass:: MockBlueDot | ||
|
||
MockBluetoothServer | ||
------------------- | ||
|
||
.. autoclass:: MockBluetoothServer | ||
|
||
MockBluetoothClient | ||
------------------- | ||
|
||
.. autoclass:: MockBluetoothClient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
|
||
__project__ = 'bluedot' | ||
__desc__ = 'A zero boiler plate bluetooth remote' | ||
__version__ = '1.3.0' | ||
__version__ = '1.3.1' | ||
__author__ = "Martin O'Hanlon" | ||
__author_email__ = '[email protected]' | ||
__license__ = 'MIT' | ||
|
@@ -49,15 +49,15 @@ | |
1. Install | ||
```bash | ||
``` | ||
sudo pip3 install bluedot | ||
``` | ||
2. Get the [Android Blue Dot app](http://play.google.com/store/apps/details?id=com.stuffaboutcode.bluedot) or use the [Python Blue Dot app](http://bluedot.readthedocs.io/en/latest/bluedotpythonapp.html) | ||
3. Pair your Raspberry Pi | ||
4. Write some code: | ||
4. Write some code | ||
```python | ||
from bluedot import BlueDot | ||
|
@@ -82,7 +82,7 @@ | |
## Even more | ||
The [online documentation](http://bluedot.readthedocs.io/en/latest/) describes how to use Blue Dot and the Python library including Recipes and ideas. | ||
The [online documentation](http://bluedot.readthedocs.io/en/latest/) describes how to use Blue Dot and the Python library including recipes and ideas. | ||
""" | ||
|
||
|
@@ -97,6 +97,7 @@ | |
author_email = __author_email__, | ||
license= __license__, | ||
keywords=__keywords__, | ||
classifiers=__classifiers__, | ||
packages = [__project__], | ||
#install_requires = __requires__, | ||
entry_points={ | ||
|