【M5Stack】バッテリー残量を取得する
2023/12/21
M5Stack シリーズでバッテリー残量を取得して表示するコード
M5StickC Plus2 で動作確認した
#include <M5Unified.h>
void setup() {
M5.begin();
M5.Power.begin();
M5.Lcd.setTextSize(2);
M5.Lcd.setRotation(3);
M5.Lcd.print("Battery: ");
M5.Lcd.print(M5.Power.getBatteryLevel());
}
void loop() {
}