PHYTEC RPi.GPIO
Copyright (c) 2018 PHYTEC America, LLC
Copyright (c) 2012-2016 Ben Croston
------------------------

This Python library is intended to be a drop-in replacement for the
commonly-used RPi.GPIO library on PHYTEC hardware. This library is based upon
the original RPi.GPIO library but with a new core that utilizes libgpiod for
interfacing with GPIO chip banks.

The use of this library requires the target pins to be muxed by the platform
before being used by the library or you will likely not get the results you
expect. This is because we don't have user access to the raw GPIO registers
like on the Raspberry Pi platforms and can't directly control pin muxing and
function. This means that hardware pulls must be configured by the platform as
well.

Installation:
	python setup.py install

Usage (in Python):
	import RPi.GPIO as GPIO

For module usage details, please see the original RPi.GPIO documentation at
https://sourceforge.net/p/raspberry-gpio-python/wiki/Home/

Changelog
---------

v1.0.0 (first release)
-----------------------------
Implemented the following Python library commands:
* setup(channel, direction, [initial])
* cleanup([channel])
* output(channel, value)
* input(channel)
* setmode(mode)
* getmode()
* gpio_function(channel)
* setwarnings(state)