Pako2
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...
I thank you for the answer. Of course, I was already looking for possible solutions. Unfortunately, I didn't find anything useful. That's why I reported it here - with the...
I only use the latest version: framework-arduinoespressif32 @ 3.20014.231204 (2.0.14). This is the same for both Arduino IDE and PlatformIO.
In the end, I decided to solve it myself. It worked pretty well, but I found that it didn't really suit me. I arrived at a completely different (actually completely...