Richard Hull
Richard Hull
Hi peter, sorry, I will try and get to this in the next few days ..
Just refreshing myself with that driver code and noticed your comment - https://github.com/rm-hull/luma.lcd/pull/45#issuecomment-296324693 Presume you're on python3?
So it looks like the ht1621 doesn't quite conform to the same interface as the other drivers, and because `gpio` is marked as a positional argument, but it looks like...
As to your other comment, in the headline about a missing config: as everything is defaulted in the constructor, the only thing a config file would contain is: ``` -d...
Also the constructor in the suggested fix different: ```diff -def __init__(self, gpio=None, width=6, rotate=0, WR=11, DAT=10, CS=8, **kwargs): +def __init__(self, serial_interface=None, width=6, rotate=0, WR=11, DAT=10, CS=8, **kwargs): ```
If the demo is printing weird characters then that implies the segments on your board are wired up differently, and that we need a different segment mapper that that provided:...
Oooh, interesting... _KLIPSE + monet + gists_ was what I originally wanted http://programming-enchiladas.destructuring-bind.org/ to become, but it kinda stalled - I never got to the point where it was properly...
It just integrated with the clojurescript compiler (see https://github.com/rm-hull/programming-enchiladas/blob/master/src/enchilada/util/compiler.clj#L36-L41) - this just spits out the transpiled javascript, caches it serverside, and then just serves it out on the page. It...
It is a structured way to update the entities value. If you look here: https://github.com/rm-hull/monet/blob/master/src/monet/canvas.cljs#L344-L350 you can see it pulls out the value and update function, and update is called...
Ooh, good spot. I haven’t done much with this in the last few years, so I need to refamiliarize myself before responding definitively