M5Stack icon indicating copy to clipboard operation
M5Stack copied to clipboard

M5Stack Arduino Library

Results 44 M5Stack issues
Sort by recently updated
recently updated
newest added

I would like to know the difference between this two code of activating and deactivating the ExtEn of Axp192. [From Tough](https://github.com/m5stack/M5Tough/blob/215fb2cee54ae351caeb658e4dd51811de969037/src/AXP192.cpp#L573) vs [From Core2](https://github.com/m5stack/M5Core2/blob/0b905c583003eaccdf81c2f82b235f186903ca69/src/AXP192.cpp#L570)

I've the following scenario: ``` long lastCheck = 0; void loop() { M5.update(); if (millis() - lastCheck > 200) { lastCheck = millis(); if (M5.BtnA.wasReleased()) { //do something - never...

I'm working with M5Stack Core basic. Including bluetooth in a project causes BtnA to be pressed at some random time. Mainly while having a bluetooth connection established. ``` #include #include...

This sketch doesn't work unless I comment out line 48 Serial.begin(115200);

Compiling .pio\build\m5stack-core-esp32\src\main.cpp.o Generating partitions .pio\build\m5stack-core-esp32\partitions.bin Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\Fonts\Font16.c.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\Fonts\Font32rle.c.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\Fonts\Font64rle.c.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\Fonts\Font72rle.c.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\Fonts\Font7srle.c.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\Fonts\glcdfont.c.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\LoRaWan.cpp.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\M5Display.cpp.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\M5Faces.cpp.o Compiling .pio\build\m5stack-core-esp32\lib9e2\M5Stack\M5LoRa.cpp.o In file included from .pio\libdeps\m5stack-core-esp32\M5Stack\src\M5Display.cpp:1:0:...

Hello, I recently received several (6 actually) M5Stack devices. After doing the capacitor mod, I've been able to download and test the supplied demos. Working with the FactoryTest sketch, I'm...

Following the code examples, if I run `IMU.calibrateMPU9250(IMU.gyroBias, IMU.accelBias);` to calibrate the bias, my program will crash with a divide-by-zero error. Upon further investigation, I found that `readBytes(MPU9250_ADDRESS, FIFO_COUNTH, 2,...

The title! Unable to use LCD while using m5stack as a HTTP server.

The driver has been handy thanks! In making some changes for my particular application I noticed something odd with a register set. Is it intentional, or was something else intended?...

It appears that M5.BtnA.wasPressed() will not work properly if the M5Stack is currently connected via WiFi. I can't find any info on this so I'm posting it here to see...