Skip to main content

A bunch of fake interfaces for development when not using the RPi or unit testing

Project description

https://raw.githubusercontent.com/MomsFriendlyRobotCompany/fake_rpi/master/pics/pi-python.jpg

Fake Raspberry Pi

Latest Version License Travis-ci Python Versions

Why??

I do a lot of development on my Powerbook and I got tired of constantly creating a fake interface for dev on my laptop and testing on Travis.ci.

  • 2017 Apr 2: Beta Quality

  • 2017 Apr 8: Initial python3 support … this is a pain

So, does this simulate everything on a Raspberry Pi? No! Right now it simulates what I use and need. Over time, more will be added. You are also welcome to submit pull requests for things I haven’t added yet.

Adafruit

LSM303(accelerometer)

GPIO

gpio pins

picamera

camera

RPi

PWM

smbus

i2c

serial

not done yet

Install

The preferred way to install this is:

pip install fake_rpi

Development

To submit pull requests and do development:

git clone
cd fake_rpi
pip install -e .

Usage

To fake RPi.GPIO or smbus, this following code must be executed before your application:

# Replace libraries by fake ones
import sys
import fake_rpi

sys.modules['RPi'] = fake_rpi.RPi     # Fake RPi (GPIO)
sys.modules['smbus'] = fake_rpi.smbus # Fake smbus (I2C)

Then you can keep your usual imports in your application:

import RPi.GPIO as GPIO
import smbus

GPIO.setmode(io.BCM) # now use the fake GPIO
b = GPIO.input(21)

sm = smbus.SMBus(1) # now use the fake smbus
b = sm.read_byte_data(0x21, 0x32)  # read in a byte

Turning on/off fake calls logging:

from fake_rpi import toggle_print

# by default it prints everything to std.error
toggle_print(False)  # turn on/off printing

But I need smbus to return a specific byte for unit testing! Ok, then create a child of my smbus like below and modify only the methods you need changed:

from fake_rpi import smbus
from fake_rpi import printf

class MyBus(smbus.SMBus):
        @printf
        def read_byte_data(self, i2c_addr, register):
                ret = 0xff
                if i2c_addr == 0x21:
                        ret = 0x55
                elif i2c_addr == 0x25:
                        ret = 0x11
                return ret

sm = MyBus()
b = sm.read_byte_data(0x21, 0x32)  # read in a byte

Printing On or Off

Here is the output from example.py in the git repo when the printing is toggled on or off:

kevin@Logan fake_rpi $ ./example.py
<<< WARNING: using fake raspberry pi interfaces >>>
kevin@Logan fake_rpi $ ./example.py
<<< WARNING: using fake raspberry pi interfaces >>>
fake_rpi.RPi.PWM.__init__()
fake_rpi.RPi.PWM.start(5,)
fake_rpi.smbus.SMBus.__init__(1,)
fake_rpi.smbus.SMBus.write_byte_data(1, 2, 3)
fake_rpi.smbus.SMBus.read_byte_data(1, 2): 21
fake_rpi.smbus.SMBus.close()
__main__.MyBus.__init__()
__main__.MyBus.read_byte_data(1, 2): 72
__main__.MyBus.read_i2c_block_data(1, 2, 3): [90, 90, 90]

Change Log

2017-10-23

0.5.3

bug fix with randint

2017-09-05

0.5.1

flushing out interfaces

2017-07-07

0.3.0

fixed bugs, print statement, and reduced dups

2017-04-08

0.1.0

initial python3 setup and support

2017-04-02

0.0.2

pushed to pypi with landscape.io fixes

2017-04-01

0.0.1

created

MIT License

Copyright (c) 2017 Kevin J. Walchko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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_rpi-0.5.3.tar.gz (6.2 kB view details)

Uploaded Source

Built Distributions

fake_rpi-0.5.3-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

fake_rpi-0.5.3-py2-none-any.whl (11.8 kB view details)

Uploaded Python 2

File details

Details for the file fake_rpi-0.5.3.tar.gz.

File metadata

  • Download URL: fake_rpi-0.5.3.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for fake_rpi-0.5.3.tar.gz
Algorithm Hash digest
SHA256 e792cf962453ecab9e700981eb2c7f80206c16cfda355ef4b6cb46b027a6625e
MD5 f5013d91ba76b6de62f46396d06de201
BLAKE2b-256 827f73c71ebd0bf3581e206ec11f3027f092a37bb65c27a14f041bb27ec434b5

See more details on using hashes here.

File details

Details for the file fake_rpi-0.5.3-py3-none-any.whl.

File metadata

File hashes

Hashes for fake_rpi-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fe47b021cb8f17f2e444f5ad25db668fb8526fbe001ac55565999999acac94fd
MD5 c3c547dff44d9c1e97557940eec54676
BLAKE2b-256 d20cde7b3d8c7f4e4b3aa3ae4ca73a14a2d147551b63944a6f05b1160ed18e0d

See more details on using hashes here.

File details

Details for the file fake_rpi-0.5.3-py2-none-any.whl.

File metadata

File hashes

Hashes for fake_rpi-0.5.3-py2-none-any.whl
Algorithm Hash digest
SHA256 9e910bb0ecf4cfba3106ce0f5f654248189a254dfbb987b2eb1f32c207e2625f
MD5 4d2257d4d35c3bc02eef654d3f94aba1
BLAKE2b-256 cffecd4c4c61f8658e7047513885e2f1e1cc1d10b28939ac0502b4487afdc293

See more details on using hashes here.

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