Frank

Results 470 comments of Frank

> Even if all pixels are redrawn in `WS2812FX::show()`? The only "drawback" I see in that chain is the conversion from 2D to 1D and then back to 2D (which...

@DedeHai i found an old feature request, which asks for integrating the "lametric icons" PixelArt database: * https://github.com/wled/WLED/issues/3063#issuecomment-1759297071 maybe this would be a cool addition to your new image tools?

@bsveselov-rgb will your cyrilic letters replace the normal "roman" ASCII 32 thru 127 ? currently WLED scrolling text does not support unicode, or any other extended character set. For example,...

you would need to replace the content of wled00/src/font/console_font_6x8.h https://github.com/wled/WLED/blob/aaad450175c38dd228146fd81940e707023c8059/wled00/src/font/console_font_6x8.h#L788-L798 by exchanging all "roman" letters like 'A' with a Cyrillic letter (bitmap encoded in bytes), one by one. I don't...

> Can I ask you for help by posting or sending the code for the Cyrillic characters? sorry, not myself - I'm too busy with other stuff atm :-( But...

> Yes, I understood that and found the necessary code for the characters. Here's an example: > > // А (0xC0) PS: maybe you still did not do it right...

Just for the curious - i've made a rough overview of what would be needed to support the full CP437, and later even add fonts for other codepages * https://github.com/MoonModules/WLED-MM/issues/281...

@DedeHai so for the full picture, we'd need a string conversion from UTF-8 (or unicode?) to _codepage xyz_ encoding, to have an index for the font tables ... any ideas?...

@DedeHai so we would still need a way to convert [unicode (UTF-8)](https://en.wikipedia.org/wiki/UTF-8) - which is used by the WebUI when you name your segment in greek, or even you name...

> To support all languages, we'd need UTF-8 suport which I dont think is feasible with reasonable effort. A possible solution for the "codepage mapping" might be to translate UTF-8...