Now I tried to do it extrem more on a basic level with the latest available versions of everything with Arduino
#include <Arduino.h>
#include <M5Atom.h>
void setup() {
M5.begin(true, false, true);
M5.dis.begin();
}
void loop() {
M5.update();
M5.dis.drawpix(0, 0xFF0000);
delay(500);
}
I assumed that this simply meant a permanent "RED", but it results in a random play of colours.