easytarget / microPyEZfonts

A font writer plus a collection of MicroPython fonts for small Mono displays and devices
Other
27 stars 1 forks source link

Force rendering of `\n` #15

Closed easytarget closed 3 months ago

easytarget commented 4 months ago

Observation; unifont has glyphs for all control-chars, including one for (U+000A) , the \n char.

But ezFBfont currently cannot render that since the it splits the string on the newline. It would be nice to have a raw() method? (or something...) so that we can claim to properly render any char.

:bulb: :+1: Add another init option; split='\n' that can be tweaked as needed for raw output; may also be useful for data lists seperated by commas etc..

easytarget commented 4 months ago

Also for marquee? sigh?

easytarget commented 3 months ago

Done, also some changes for the way this and gap options are set (only default now, not per-operation)