/fakeRPiGPIO

Fake RPi.GPIO module for testing

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

fakeRPiGPIO

This package is used to simulate the 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 callings to the package, set VERBOSE to False:

from RPi import GPIO
GPIO.VERBOSE = False
more_code()