Skip to main content

Fake Raspberry PI GPIO drop-in replacement for RPi.GPIO

Project description

fake-rpigpio

fake-rpigpio is a package intended to provide a lightweight (dependency-free) fake interface for Raspberry Pi GPIO. The GPIO functions match those in the RPi.GPIO library, however the functions do nothing. This makes it easier to test GPIO-related code and to get the code to run on non-pi machines.

Installation

This package can be installed via pip:

pip install fake-rpigpio

Usage

A basic example of using this package to run with RPi.GPIO on a Pi and fake-rpigpio on a non-Pi:

try:
    import RPi.GPIO
except (RuntimeError, ModuleNotFoundError):
    import fake_rpigpio.utils
    fake_rpigpio.utils.install()

This will install fake-rpigpio.RPi as RPi and fake-rpigpio.RPi.GPIO as RPi.GPIO, so you should not need to change imports for the RPi.GPIO library.

Acknowledgements

The following projects inspired this one. While all are similar, the usage and dependency weight varies between projects.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fake_rpigpio-0.1.1.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

fake_rpigpio-0.1.1-py3-none-any.whl (15.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page