Metadata-Version: 2.1
Name: fakeRPiGPIO
Version: 1.0.0
Summary: fakeRPiGPIO is a package to simulate the RPi.GPIO package
Home-page: https://github.com/luxedo/fakeRPiGPIO
Author: Luiz Eduardo Amaral
Author-email: luizamaral306@gmail.com
License: GPL3
Keywords: RPi fake GPIO
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: Hardware
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# fakeRPiGPIO

[![PyPI version](https://badge.fury.io/py/fakeRPiGPIO.svg)](https://badge.fury.io/py/fakeRPiGPIO)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

This package is used to simulate the
[RPi.GPIO](https://pypi.python.org/pypi/RPi.GPIO) module.
This package only contains the functions in the RPi.GPIO package without
the functionality. Useful to debug code outside the RPi.
To avoid printing the function calls to the package, set `VERBOSE`
to `False`:

```python
from RPi import GPIO
GPIO.VERBOSE = False

more_code()
```

The following functions have minimal functionality without any error
checking: `setmode`, `getmode`, `gpio_function`, `setup`, `output`, 
`input`, `cleanup`.


## License
> Python fake RPi.GPIO library
> Copyright (C) 2020 Luiz Eduardo Amaral <luizamaral306@gmail.com>
>
> This program is free software: you can redistribute it and/or modify
> it under the terms of the GNU General Public License as published by
> the Free Software Foundation, either version 3 of the License, or
> (at your option) any later version.
> This program is distributed in the hope that it will be useful,
> but WITHOUT ANY WARRANTY; without even the implied warranty of
> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> GNU General Public License for more details.
> You should have received a copy of the GNU General Public License
> along with this program.  If not, see <http://www.gnu.org/licenses/>.


