Richard Hull
Richard Hull
I suspect the string parsing part does not understand that `.` is a valid operator whereas the macro part does
No plans to slot that functionality into the infix library, but it looks interesting and I can see how you would use our `$=` to convert an infix expression into...
Hmm, diving in a bit further, I see there is a test case: ```golang // malformed string func() { defer func() { if r := recover(); r == nil {...
There are some differences in how some breakout boards have their LEDs 'oriented' with regards the MAX7219 driver chips, and there are plenty of folks reporting this if you look...
Try `block_orientation=270` Different breakout boards will be wired up (internally) differently, hence the need to have the block_orientation parameter in the first place!!
Are they 5 separate modules that you have daisychained or 5 LED blocks on a single PCB? Where did you buy them from (link) ?
@thijstriemstra - Package arrived today
I connected this up, but not getting anything displayed (connected to an RPi Zero) using the scripts from https://raspberrytips.nl/tm1637-4-digit-led-display-raspberry-pi/ Not sure if it's a dud or something specific to the...
I seem to think we (mis)used Python's `__all__` variable so that the demos could introspect which devices were available. [https://docs.python.org/3/tutorial/modules.html#importing-from-a-package] What do mean by proper names?
How about __deviceNames__ = { ... } __all__ = __deviceNames__.keys() ?