🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • External 1S LIPO on M5Core2 BUS PIN1 and PIN30?

    3
    1
    1 Votes
    3 Posts
    572 Views
    easytargetE
    @skyflyer said in External 1S LIPO on M5Core2 BUS PIN1 and PIN30?: I tried to find information about it, and want to confirm that it is OK to connect the external Lipo battery to pins 1 and 30 on the "BUS expansion port"? And that the battery will be charged when connected to the external USB power? If you look at the schematic you will see that pin30 on the bus and VBAT (on the lipo connector) are the same. So yes, you can replace the internal battery with an external one with the same voltage! @skyflyer said in External 1S LIPO on M5Core2 BUS PIN1 and PIN30?: And I don't need to remove the internal 500mAh battery, since they would be connected in parallel anyhow? Do not simply put rechargeable batteries in parallel. Disconnect the internal one. You can have batteries in parallel but.. at a minimum you need some diodes to prevent them back-charging each other, have a look online where there is a lot of info about this.
  • Issue With Module GPS v2.1 and M5Core2

    8
    0 Votes
    8 Posts
    633 Views
    H
    Hi. Have you tried reading bytes from the GPS and displaying them on a serial monitor as they arrive as below, just to show you are getting data (if the serial setup is incorrect you should still receive data but it will be gibberish): // Serial is the serial monitor // Serial1 is the GPS data int intChar; char charChar; intChar = Serial1.read(); if(inChar != -1){ charChar = (char)intChar; Serial.print(charChar); } I have been using the M5Stack GPS v1.1 and it was set to 115200@7N1, not the advertised 115200@8N1 so might be an issue there (I got gibberish at first) Finally my M5Stack GPSv1.1 works fine with an Adafruit Itsy Bitsy 3v controller and an ESP32S3 based controller but not with the Seeed Wio Terminal. With the Seeed Wio Terminal I get nothing at all - no gibberish, absolutely nothing. It's as if the signal is not there (but it is !!).
  • Core2 deep sleep with wakeup by PIR sensor

    4
    0 Votes
    4 Posts
    1k Views
    felmueF
    Hello @drvval when I run M5Core2 v1.1 from battery, power consumption gets down to about 5.2 mA @ 4.2 V in ESP32 deep sleep. BTW: Interestingly when running from battery I can turn off the boost circuit. In my test I now only turn LCD backlight to zero and turn off boost circuit. When I turn LCD and/or TP off things start to go wrong. My guess is that ESP32 SPI / I2C bus gets confused if devices are suddenly disappearing. Thanks Felix
  • M5Core2 basic SPI questions

    1
    3
    0 Votes
    1 Posts
    236 Views
    No one has replied
  • Core2: expose pin - proto board - M5GO bottom2

    1
    0 Votes
    1 Posts
    494 Views
    No one has replied
  • Core2 and M5Unified display no longer works

    9
    1 Votes
    9 Posts
    4k Views
    S
    I should note that I am also using the SD card interface and whenever the SD is not detected on power up the display doesn't work either. I believe they are on the same bus.
  • M5Stack Core2 AI Voice Assistant

    1
    0 Votes
    1 Posts
    562 Views
    No one has replied
  • Touchscreen not responding when using GoPlus2 with two servo motors

    6
    0 Votes
    6 Posts
    3k Views
    felmueF
    Hello @eleonorafontana16 just to clarify - your current setup (controlling 2 servos using GPIO25 and GPIO26) doesn't include the GoPlus2 module anymore, correct? Thanks Felix
  • No COM detected after connecting to PC

    12
    0 Votes
    12 Posts
    7k Views
    konacurrentsK
    @robski not that I know of. As I mentioned, the USB-C works fine. It's the USB-A that is hit or miss on working. I think this is a mac issue as I search the net. Eg: here and here and mac ports Just was wondering if anyone has had this issue as well. I'm not stuck but my co-worker (not a developer) couldn't get the USB-A on a mac dongle to work. I just wanted her to use the Serial Monitor - as I implemented commands the user can type is to do an OTA update or other things. So they just needed a Serial Monitor (and this issue crept in). Thanks.
  • Replacement battery?

    5
    0 Votes
    5 Posts
    3k Views
    S
    @GeorgeR Have a search for 'quadcopter battery' on Amazon (or your marketplace of choice) and you should find one of the right size and correct connector. I've bought a couple of batteries and charged them with the 'Timer Power Unit' for various projects. WARNING!! BEWARE! I've found about 50% of the batteries I've bought had the wires the opposite way round to that required by the M5Stack controllers. They will instantly kill your controller! Triple check the polarity before ever plugging them into your controller.
  • LittleFS problem with M5core2 and PIO

    2
    0 Votes
    2 Posts
    5k Views
    H
    It looks like PlatformIO is still uploading your filesystem as SPIFFS despite setting board_build.filesystem = littlefs. This happens because the default partition table might not reserve space for LittleFS. Try creating a custom partition table that supports LittleFS and specify it in platformio.ini with board_build.partitions. Also, ensure your LittleFS_esp32 library is compatible with M5Core2. Without proper partitioning, mounting fails with corrupted directory errors like yours. Let me know if you want help generating a suitable partition CSV file!
  • 0 Votes
    4 Posts
    8k Views
    felmueF
    Hello @hacxx please refrain from posting in year old threads which are already resolved. Thank you. Thanks Felix
  • [Error] Get MAC failed in m5Burner

    7
    1
    0 Votes
    7 Posts
    7k Views
    ajb2k3A
    @Boomvalt Xcode is OSX's dev environment and is needed for some low level functions needed for hardware programming even if you are not directly using it.
  • Wakeup Core2 v1.1 by USB and GPIO possible?

    3
    0 Votes
    3 Posts
    2k Views
    D
    @kuriko Thank you for your hint. However, I don't know how it could help to solve my requirements. In M5StickC-Plus example, IMU will remain powered on and will send interrupt on gpio 35 on motion. In my requirement, axp2101 could send interrupt on power-on (usb), but its interrupt pin is not connected to esp32. AXP2101 usually wakes up esp32 by simply powering on esp32, it is not a real wake up by interrupt. Therefore, wake up by power-on (usb) works only if esp32 was powered off by axp2101 previously. I cannot power-off esp32 because it should also wake up on gpio interrupt from PIR.
  • CORE2 HIVEMQ

    33
    0 Votes
    33 Posts
    76k Views
    robskiR
    for Hive MQTT below works for me Uiflow 2.2.5 [image: 1744880435095-mqtt-hive-m5stack.png]
  • Android sketch works with AXP192, but not 2101

    4
    0 Votes
    4 Posts
    3k Views
    felmueF
    Hello @Krmiller GetVBusVoltage() exists in M5Core2 library as well. See here. Thanks Felix
  • Core Basic v2.7 not shown in IDE

    10
    1
    1 Votes
    10 Posts
    6k Views
    P
    @pleister found the solution in rebuilding the extension https://github.com/curdeveryday/vscode-m5stack-mpy/issues/45
  • Solotion found

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Core2 5V pin

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to save battery with M5Stack Core 2

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied