Now a package with timer and clock support
This is now a package (aka folder) instead of a module (aka file). Imports will need to change at minimum. The smallest change is to replace this:
import adafruit_pcf8563
with
from adafruit_pcf8563 import pcf8563 as adafruit_pcf8563
This release also adds clock
and timer
modules for those specific features. Thanks to @bablokb for implementing them.
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-pcf8563
.
Read the docs for info on how to use it.