Pako2

Results 7 comments of Pako2

1. There are different ways to evaluate the read value. We cannot know which method the manufacturer has chosen. 2. In fact, it is the same number, only it is...

In the end, I did it for my own needs myself. If anyone is interested, here is my new class SH1107: ```python class sh1107(device): """ Serial interface to a monochrome...

I would try experimenting with the multiplex and displayoffset parameters. For example like this: ``` settings = { (64, 128): dict(multiplex=0x7F, displayoffset=0x60), (80, 128): dict(multiplex=0x4F, displayoffset=0x68), }.get((width, height)) ``` I...

> Would you be willing to make a pull request @Pako2? I can copy your code and make one as well, just let me know. Hi. I am glad that...

I ran into another bug. This manifests itself in a certain situation when controlling via the web interface. How you can achieve the error behavior: 1. Select a track using...

I have another note. I had planned to use this "radio" as an audiobook player, but I found that in its current form it is unusable for this purpose. The...

I still have to add one correction to the adjustments I made. Although the following code is working `httpGet ( "trackinx=" + encodeURIComponent ( document.getElementById("seltrack").value ), false ) ;` that's...