Petr Kracík

Results 126 comments of Petr Kracík

"id": auth is NOT valid JSON reply, because auth is not in " ", so it's not string... If it works in CGMiner they have some workaround... This is BUG...

Well.. It's half/half problem on both side. From name "ID" should be number, not string.. But on other hand, antpool should reply string and not unquoted string (which is NOT...

Prerequest uqr native library ```python class QRWidget(Widget): def __init__(self, writer, row, col, value, scale = 4, border = None): self._qr = uqr.make(value) self._border = border or scale * 2 self._scale...

Parse BMP image problem with pixel color.. Because my LCD is not RGB. That is why what should be orange is pink now... But maybe if I will fill ti...

Well... I recognized, library uses 8bit for all three colors (not RGB565 as I thought)... So I did (read found on google) covnert 565 to 888 then used ssd.rgb() to...

> That looks good. > > ```python > self._qr = uqr.make(value) > ``` > > Do you plan to open source the QR code generation? Or is it already out...

I think I can close this already, because I was able to do custom components already. Thanks

I will try, thanks. I have to do some dummy acrive widget to achieve that workflow where I really do not want user to interact and learn how to close...

Yes, it seems nice, also I can define textbox in this async. ```python async def do_bootscreen(): global wifi, rfid await asyncio.sleep_ms(10) writb = CWriter(ssd, arial10, GREEN, BLACK) Screen.change(BootScreen, args=(2, 2,...

meanwhile I did this construct... Maybe in asyncio can be better way? But for my knowledge this is best what I did ```python def boot_done(self, obj): self._boot_done = True self._wifi...