Skip to content

Commit

Permalink
minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
majuss committed Oct 11, 2019
1 parent e2066ee commit 4cc0d77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ pip install pypca

## Usage

You can integrate the library into your own project, or simply use it in the command line.
You can integrate the library into your own project, or simply use it in the command line. Please turn your PCAs on via the button to initially scan for devices, otherwise they cannot be identified.
```
pypca --devices
```
This will retrieve a simple list of all devices.

---
---
3 changes: 1 addition & 2 deletions pypca/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ def call():
for device in devices:
_LOGGER.info("Found PCA 301 with ID: " + device)
else:
_LOGGER.info("No PCA devices found, please make sure\
you plug them in")
_LOGGER.info("No PCA devices found, please make sure you plug them in and turn them on")

except pypca.PCAException as exc:
_LOGGER.error(exc)
Expand Down
2 changes: 1 addition & 1 deletion pypca/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Used in setup.py
# -*- coding: utf-8 -*-
VERSION = '0.0.5'
VERSION = '0.0.6'
PROJECT_PACKAGE_NAME = 'pypca'
PROJECT_LICENSE = 'MIT'
PROJECT_URL = 'http://www.github.com/majuss/pypca'
Expand Down

0 comments on commit 4cc0d77

Please sign in to comment.