Skip to content

Commit

Permalink
made the changelog more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Preston committed Sep 17, 2013
1 parent 02967fd commit b52db27
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ v3.1.1
IODIR_ON: 0 -> 1
IODIR_OFF: 1 -> 0

Remember the difference:
# switch is unpressed
pifacecommon.read_bit(0, INPUT_PORT)
1 # physical
pifacedigitalio.PiFaceDigital().input_pins[0].value
0 # logical
Remember that PiFace Digital Inputs are active low:
>>> pifacecommon.read_bit(0, INPUT_PORT)
>>> 1 # physical
>>> pifacedigitalio.PiFaceDigital().input_pins[0].value
>>> 0 # logical

- Fixed Debian package bug where setup script would not be executed.

Expand Down

0 comments on commit b52db27

Please sign in to comment.