Skip to content

Commit

Permalink
Prep for v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Jun 1, 2021
1 parent 7e1af30 commit 51a3045
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
5 changes: 5 additions & 0 deletions library/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.0.2
-----

* Call read/write in a single i2c_rdwr to maintain thread safety

0.0.1
-----

Expand Down
14 changes: 14 additions & 0 deletions library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
[![PyPi Package](https://img.shields.io/pypi/v/pimoroni-ioexpander.svg)](https://pypi.python.org/pypi/pimoroni-ioexpander)
[![Python Versions](https://img.shields.io/pypi/pyversions/pimoroni-ioexpander.svg)](https://pypi.python.org/pypi/pimoroni-ioexpander)

IO Expander Breakout uses a Nuvoton MS51 microcontroller and I2C to give you 14 additional input/output pins to connect things up to. Eight of the pins are hooked up to an Analog to Digital Converter and six of the pins can be used as (up to 16-bit) PWM outputs.

This library is also used to power our other Nuvoton-based boards and breakouts!

## Where to buy

* IO Expander Breakout: https://shop.pimoroni.com/products/io-expander
* RGB Potentiometer Breakout: https://shop.pimoroni.com/products/rgb-potentiometer-breakout
* RGB Encoder Breakout: https://shop.pimoroni.com/products/rgb-encoder-breakout

# Installing

Expand All @@ -29,6 +38,11 @@ In some cases you might need to use `sudo`.

# Changelog

0.0.2
-----

* Call read/write in a single i2c_rdwr to maintain thread safety

0.0.1
-----

Expand Down
2 changes: 1 addition & 1 deletion library/ioexpander/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from smbus2 import SMBus, i2c_msg


__version__ = '0.0.1'
__version__ = '0.0.2'


I2C_ADDR = 0x18
Expand Down
2 changes: 1 addition & 1 deletion library/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
[metadata]
name = pimoroni-ioexpander
version = 0.0.1
version = 0.0.2
author = Philip Howard
author_email = phil@pimoroni.com
description = Python library for the Pimoroni IO Expander
Expand Down

0 comments on commit 51a3045

Please sign in to comment.