Arduino Quick Start
M5StickC Plus2 power status light related APIs and case programs.
#include "M5StickCPlus2.h" void setup() { auto cfg = M5.config(); StickCP2.begin(cfg); StickCP2.Display.setRotation(1); StickCP2.Display.setTextColor(GREEN); StickCP2.Display.setTextDatum(middle_center); StickCP2.Display.setTextFont(&fonts::Orbitron_Light_24); StickCP2.Display.setTextSize(1); StickCP2.Display.drawString("Power LED", StickCP2.Display.width() / 2, StickCP2.Display.height() / 2);} void loop() { // inside power red led control StickCP2.Power.setLed(1); delay(1000); StickCP2.Power.setLed(0); delay(1000);}
The M5StickCPlus2 library is based on the M5Unified library implementation, the power supply part uses the Power_Class
from the M5Unified library, for more related APIs you can refer to the following document: