Hello, would someone be so kind as to list the steps for configuring PlatformIO to support the M5Dial...for a non specialist. Thank you in advance. Etienne
E
Latest posts made by etiennedursel
-
M5Dial and MS VisualStudio/PlatformIO
-
Dial Documentation
Hello I am new to this, I struggle to find documentation. For instance in the example there is code like #include "M5Dial.h"
M5Canvas img(&M5Dial.Display);void setup() {
auto cfg = M5.config();
M5Dial.begin(cfg, true, true);
M5Dial.Rtc.setDateTime( { { 2023, 10, 25 }, { 15, 56, 56 } } );
M5Dial.Display.setBrightness(24);
img.createSprite(240,240);
img.setTextDatum(5);
delay(200);
}I can guess and see what is does but where do I find de documentation of the methods and the arguments of for example M5Dial.rtc. the meaning of the arguments of img.createSprite. Reconstructing the documentation by scouting all the examples is a tedious process, is there a better way? Thanks Etienne