Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reflect preferred installation and changelog update #31

Merged
merged 4 commits into from
Apr 30, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

v4.2.2
------
- Set explicit SPI frequency to allow board to work in newer kernels which has too high default frequency (PR#23)

v4.2.0
------
- Added daemon flag for PortEventListener.
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,16 @@ Make sure you are using the lastest version of Raspbian:
$ sudo apt-get update
$ sudo apt-get upgrade

Install `pifacecommon` (for Python 3 and 2) with the following command:
Install `pifacecommon` with the following commands:

$ sudo apt-get install python{,3}-pifacecommon
Python 2:
$ sudo pip pifacecommon
psytester marked this conversation as resolved.
Show resolved Hide resolved

Python 3:
$ sudo pip3 pifacecommon
psytester marked this conversation as resolved.
Show resolved Hide resolved

Notice: Installation from Raspbian repository with apt is not longer the preferred way, take a look into [https://github.com/piface/pifacecommon/issues/27#issuecomment-451400154](issue 27)


You will also need to set up automatic loading of the SPI kernel module which
can be done with the lastest version of `raspi-config`. Run:
Expand Down