Van Kichline

Results 11 issues of Van Kichline

Right now Rop is working hard on adding some much needed Touch functionality to the M5Core2 library. I'm doing reviews and developing test apps. This is critical right now, because...

If block 1 of blocks.fb contains the following code, it works as expected: `2 3 thru` If, on the other hand, it contains the following, only block 2 is loaded:...

Using build e41325a from 11/5, I get the following non-fatal warning when compiling in PlatformIO, standard compiler settings. M5Core2 is current, not 0.0.1: ``` C:/users/van/.platformio/lib/Core2ez/src/ezSound.h:13:0: warning: "TWO_PI" redefined #define TWO_PI...

With a screen manager, `update()` could refer to output as well as input. For example, you could set the values of all your display controls, then call `update()` to display...

I am trying to set up a form with some different attributes. Nothing's working: ``` #include #include ezLabel label(20, 60, 280, 50, "10000"); int32_t count = 0; void setup() {...

Haven't dug deep yet, but it's clear you have to be careful to set certain values before using windows. I have a window w/ spriteBuffer. When I receive a key...

In M5ez, Canvas was derived from class Print, so one inherited extremely powerful functions like printf. Printf is one of those things that make programming ez, so it should be...

I would like to propose a Usability Test Plan for the Core2ez framework. *Objective*: define a set of progressively complex applications, and implement them with Core2ez. Review each exercise for...

I can create, add and render ezLabels with no trouble, but not ezButtons: ``` ezWindow test(50, 50, 220, 80); ezButton ok(110, 200, 100, 32, "OK"); ... test.setTextColor(TFT_BLACK); test.drawString(testString, 0 ,...

There are a number of Singleton classes in Core2ez, but they don't follow the Singleton Pattern, designed for the kind of safety a library to be used by non-experts can...