Philip Howard
Philip Howard
Okay I have replaced the ugly preprocessor hack with CMake's `configure_file` which is likely to be much, much less fragile and potentially allows for more config vars to make it...
The main issue with adjusting rp2_flash is the inability to use the “dynamic” linker symbols in the “bi_decl” macro. I don’t see an obvious way around this, though that may...
Apart from this not being marked "Ready for review" is there anything that needs to be addressed? Getting input is tricky here because I'm probably the only person screaming out...
I have encountered issues where failing to explicitly ".close()" a wrapped socket immediately after use will eventually lead to system level OOM errors, and that's with - imho - fairly...
> Do you mean RAM taken when you create a wrapped socket? If you close the socket that RAM should be returned to the uPy heap automatically. (Note that on...
Thank you @dpgeorge I may have to look into this. Someone off-topic, but the sad truth is that we're also making quite a lot of unchecked, temporary (and not so...
Just to weigh in here, I've been shipping a MicroPython build for PicoSystem that includes this patch since October 2021 and - so far - have had no problems with...
Try the `refactor` branch that's currently pending. See: https://raw.githubusercontent.com/pimoroni/scroll-phat-hd/refactor/examples/hello-pigpiod.py You should: ``` git clone https://github.com/pimoroni/scroll-phat-hd -b refactor cd scroll-phat-hd/library sudo python setup.py install cd ../examples PIGPIO_ADDR=your.pi.ip.addr python hello-pigpiod.py ```
You can make all the examples work by shimming the `smbus` library. Create a file `smbus.py` in the examples folder and stick the following into it: ```python import pigpio class...
Oof- nothing like continuously moving goalposts, eh! I think we have some other code *somewhere* that works although it looks like a combo of OpenWeatherMap and https://github.com/csparpa/pyowm would be the...