🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • Heart rate and NCIR competition core2

    2
    0 Votes
    2 Posts
    2k Views
    M
    Hi all, I have been looking for the answer to my problem and my best guest might be the fact that they both are using PortA, thus the competition. Is there a way to switch from one sensor to another to get a reading from both? Thank you in advance :)
  • HELP - BLACK SCREEN M5 STACK CORE 2

    2
    0 Votes
    2 Posts
    2k Views
    ajb2k3A
    @paulasousa it may be a cause of code changes in the libraries. You need to check the documents for the update records. Probably better to rebuild from scratch
  • Updated version, working Core2 web radio player, M5Stack

    22
    0 Votes
    22 Posts
    48k Views
    W
    @perlix Hi, are you sure to remove the line 'Serial.begin(115200);' in setup() and not change it to 'Serial.begin(9600);' or something else? I remove this line and compile it , a lot of error occured. Any advise. Thank you.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    7 Views
    No one has replied
  • stand-alone TFT_eSPI library on Core2

    5
    1 Votes
    5 Posts
    9k Views
    D
    What about M5CoreS3? Doesn't seem to have BL pin defined. Can it be used with TFT_eSPI?
  • Core 2 does not turn on on battery

    3
    0 Votes
    3 Posts
    3k Views
    D
    I had this. Take it apart, disconnect battery, wait a minute or two, plug it back in. Something in the pmic is buggy and this resets it then it works.
  • Core2 : Turn off the backlight

    2
    0 Votes
    2 Posts
    2k Views
    kurikoK
    @IndianaTux this works on my CoreS3, directly turns off LDO2 #include <M5CoreS3.h> #include <Wire.h> void setup() { // put your setup code here, to run once: Wire1.beginTransmission(0x34); Wire1.write(0x12); Wire1.write(0b01001011); // LDO2, aka OLED_VDD, off Wire1.endTransmission(); }
  • M5Stack Core2 v1.1 Bluetooth in MicroPython

    2
    0 Votes
    2 Posts
    2k Views
    kurikoK
    @raeph maybe these codes will help: https://github.com/m5stack/uiflow-micropython/tree/master/tests/bluetooth
  • Power Supply of M5Stack Core2

    2
    0 Votes
    2 Posts
    2k Views
    felmueF
    Hello @laursena unfortunately I don't know the answer to your question about the power consumption and if M5Core2 can handle it. However what I can tell you is that you do not necessarily need the PaHubs. The M5Stack I2C weight measurement units allow for the I2C address to be modified - so you could give each unit its own I2C address and simply connect them in parallel. Thanks Felix
  • Nothing showing on M5Core2 when connected to USB power and unable to upload

    13
    0 Votes
    13 Posts
    15k Views
    N
    I faced the same problem with M5 Stack Core2. It was not connecting via USB no light was turning on when connected to USB. Here is what I did Disconnect the device from USB port of your computer Now you have turn off the device. It is hard since your don't know whether it is on currently or not and connecting USB will turn in on automatically. So connect it to USB once. Then disconnect it again, now you can know device is on. Not press the power button for 10 seconds it will turn off the device. Remove the pin cover from the bottom of the ESP32. Using a wire connect G0 to any GND ping Now plugin the device to the computer You should see the device now. Use this opportunity to flash a good program into the device. Now remove the wire between G0 and GND and restart your device.
  • How to Generate a Beep?

    19
    1 Votes
    19 Posts
    37k Views
    I
    @LostInSpace I am quite new to all this so could you post a simple code of making a beep with your library. thank you Ioannis
  • M5Stack Core2 pin config problems

    8
    0 Votes
    8 Posts
    3k Views
    P
    I managed to resolve the issue I was having by editing the hardware.cpp of the project from pinMode(VCC_3V3_PIN, INPUT); to #ifdef VCC_3V3_PIN pinMode(VCC_3V3_PIN, INPUT); #endif This has then enabled me to comment out the unused pins in the pins.h @felmue and @ajb2k3 thanks for your help
  • Core2 MBus Power Mode 5V Output AXP2101 / AXP192

    9
    0 Votes
    9 Posts
    5k Views
    O
    @felmue Amazing! It works! Thank you so much
  • Core2 v1.1 wont run from mbus 5V

    2
    0 Votes
    2 Posts
    1k Views
    felmueF
    Hello @HolgerRauls unfortunately M5Core2 v1.1 isn't fully supported in M5Core2 library. See here. Consider switching to M5Unified library which supports M5Core2 v1.1 to run from MBus 5V. Thanks Felix
  • Core2 V1.1 cannot control power LED

    7
    0 Votes
    7 Posts
    3k Views
    H
    @matthiMarschi This one worked fine for me: M5.Axp.SetLed(0);
  • Core2 v1.1 vs Fire 2.7

    2
    0 Votes
    2 Posts
    2k Views
    TomKattT
    Couldn't decide, so I bought both lol. Each seems to have some different strengths - the Fire has more ports, the cool magnetic base and physical buttons that often work better than touchscreens. As such it's great for tinkering. But the Core 2 seems a bit more 'polished' for portable applications.
  • M5Stack together with Controllino - Serial transmission problems

    1
    0 Votes
    1 Posts
    859 Views
    No one has replied
  • FT6336U touch controller

    3
    0 Votes
    3 Posts
    1k Views
    J
    @ajb2k3 Thanks for the response. Yes, I had found these before, but there for the FT6336U there is only an .xlsx document with a very brief description of the chip registers. I am looking for a bit more detail...
  • [M5Stack Core2 v1.1] COM port not found

    3
    0 Votes
    3 Posts
    3k Views
    S
    @ajb2k3 Thank you soo much! I turned off the VPN, and then it worked.
  • Newbie help, trigger relay at set time

    2
    0 Votes
    2 Posts
    1k Views
    felmueF
    Hello @G3D_Design please have a look at this simple RTC alarm trigger example in the UIFlow2 Project Zone: M5Core2_RTC_Alarm_Trigger_UIFlow2.1.1 Thanks Felix