Philip Howard

Results 958 comments of Philip Howard

The tcs3472 library is a work in progress - https://github.com/pimoroni/tcs3472-python/ Possible alternate approach to this issue would be to leave the Enviro pHAT library as-is, and simply change the examples...

This is odd, since the `bme280` module *requires* i2cdevice, and installation should fail where it's not available. In your case you're running under Python 3, so you should try: ```...

An alternative hack would be to discard the RuntimeError like so: ```python try: inky.show() except RuntimeError: pass ``` Which saves modifying the library, at least for now. I'm not totally...

> @Gadgetoid I don't see how catching the exception would help. The RuntimeError causes the inky module to exit before the display is updated. So catching the exception would prevent...

I have as yet been unable tor replicate this, and am wondering if I've made a flawed assumption about how/when the busy signal should be asserted. Either way if increasing...

Nice work! I would probably package this separately- as a general purpose way to adapt Python SMBus dependent libraries to MicroPython. While it's convenient, it has too much utility to...

It's tricky to find any good examples of displaying to an LED matrix like ours - so perhaps we need one - but here's some discussion suggesting that python-gstreamer and...

A few reasons: 1. Time - there's not enough of it to support/test/debug installers on more than one OS 2. Experience - I have limited experience in Arch, I've been...

Speaker pHAT I’m not surprised by since it requires proper configuration of the i2s audio output and ALSA. FourLetter pHAT I’m surprised by since it’s just an i2c device.

Does `python3 -m pip install mock` not work?