Giter Site home page Giter Site logo

Comments (2)

Gadgetoid avatar Gadgetoid commented on June 1, 2024

In my experience it's best to port the underlying transport libraries by "shimming" some custom code in their place. I'm surprised there's not a general purpose solution to this problem already out there.

You would need to create fake versions of spidev and RPi.GPIO that you install locally on your PC (or just have in the same folder, or virtual env, as your code). These fake versions would implement all the method calls that Inky uses (not many) and redirect them to equivalent GPIO Zero calls:

open(bus, cs)
max_speed_hz (property)
xfer3 (or xfer)

And do the same for RPi.GPIO calls:

setmode
setwarnings
setup
output
input

I can't say how fast this might be, but it should work.

from inky.

Gadgetoid avatar Gadgetoid commented on June 1, 2024

Some of the changes proposed to help support Inky pHAT simulation should also help you here.

These include the ability to specify an SPI bus, I2C bus and GPIO object to replace spidev, smbus2 and RPi.GPIO. ie:

inky = InkyPHAT(spi_bus=my_spi_bus, i2c_bus=my_i2c_bus, gpio=my_gpio)

You will, however, still need to write some code to translate the method calls.

from inky.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.