Josh Goebel
Josh Goebel
Separate class or separate library? I really want to avoid the urge to make this much more complex (than swapping out fixed sized font) but I do think it's pretty...
Even the font is weird cause it feels like maybe that's a printing concept but right now drawing concerns (and therefor font) would be a graphics concern. Grrrr. :-)
> Also, since the starting character and number of characters are given, you can define just a (contiguous) subset of the entire 256 characters This is a great idea but...
Default font or "build your own" or "use this great font lib" isn't completely terrible asnwer.
We need to start coming up with great suggestions for a "full kit"... ArduboyLib + ArduboyExtra + [what music] + [what font] + ????. So when someone says "how can...
I think this would be better: ``` ranges = { {"az","A."}, }} ``` Much shorter and I bet the code would weigh in at less than 26*2 bytes.
We have about 10-15,000 process cycles we're wasting doing nothing while the slow SPI does it's thing... if we can think of any other housekeeping that can be done incrementally...
That's for EACH and every screen refresh... At 60 FPS we lose like almost 1Mhz of our 16Mhz just WAITING on the screen, not even doing anything. :-) I think...
> displayThenClear() I like it. Not 100% clear regarding what is happening, but effectively true as far as the results. Actually in order to understand it it really needs to...
> I would like to test it on Shadow Runner using arduboy.cpuLoad() to see the difference. You might not be able to. cpuLoad math is all done in ms... the...