I'm trying to figure out how to used the M5Stack, Core2 and using the Examples. I'm trying to write some code to generate some on-screen buttons and found the "events_buttons_gestures_rotation" sample script.
OK, it works, but it doesn't explain some of the details that I need. For example there is a code line:
Button tl(0, 0, 0, 0, false ,"top-left", off_clrs, on_clrs, TL_DATUM);
I'm assuming that the "0,0,0,0" is the coordinates (but what order???). But what is the binary "false" arg, etc...
But I can't find any document that explains what all of the function arguments are.
This is not only for this function, but all of the other functions in the library.
I went to the https://github.com/m5stack/M5Core2 which is the download for the library and found the Keywords.txt which lists all of the functions, but none of the definitions.
Where can I find the definitions for the various function arguments?
Sir Michael