Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I am trying to use the leds on the m5go bottom2 with a core2. I have tried several arduino programs and cannot get the leds to light. Has anyone been able to accomplish this? Thanks
Hello @KAYDE1
maybe checkout this example here?
To make it work I had to adapt the GPIO used for the LEDs:
// buscfg.pin_data = 26; buscfg.pin_data = 25;
I also added a delay(1000); at the end of the loop().
delay(1000);
loop()
Thanks Felix