🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • M5Stack Core 2 Freezes after UIFlo_Core2 Burn (Any Version)

    5
    0 Votes
    5 Posts
    8k Views
    felmueF
    Hello @NetworkUke good to hear you got it working. Happy Stacking! Felix
  • New Core2 appears to not be working properly?

    11
    2 Votes
    11 Posts
    20k Views
    felmueF
    Hello @TheAlphaGhost I think the code you uploaded is for M5Stack and not M5Core2. Please use #include <M5Core2.h> at the top and remove M5.Power.begin() which is required for M5Stack only. #include <M5Core2.h> void setup() { M5.begin(); M5.Lcd.print("Hello World"); } void loop() { } You probably will need to download and install the proper library for M5Core2 as well. Thanks Felix
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    13 Views
    No one has replied
  • M5Core2 and Lan PoE

    3
    0 Votes
    3 Posts
    6k Views
    J
    Thank you Felix.
  • M5.Lcd.setBrightness() not working

    2
    0 Votes
    2 Posts
    5k Views
    felmueF
    Hello @jhubsch on M5Core2 LCD brightness is controlled by AXP192 (as you've already figured out yourself) so changing LCD brightness should work with: M5.Axp.SetLcdVoltage(v); // v from 2500 to 3300 Thanks Felix
  • Bus Mapping M5Core2 <-> M5Stack

    10
    0 Votes
    10 Posts
    20k Views
    N
    @nlindin This one works! #include <M5Core2.h> #include <IRremote.h> IRrecv irrecv(35); decode_results ircode; void setup() { M5.begin(); irrecv.enableIRIn(); } void loop() { if (irrecv.decode(&ircode)) { Serial.println(ircode.value, HEX); delay(100); irrecv.resume(); } m5.update(); }
  • Core2: WS2812 and interrupter

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • Grove PORT A for both Onewire and i2c sensors

    6
    0 Votes
    6 Posts
    14k Views
    hagueH
    Maybe it would be an idea to use an I2C to 1-Wire converter? Like the DS2482-100. Then you can have several I2C devices on the bus and also 1-Wire devices. I have not tried the chip yet. But I will do that soon.
  • Core 2 with Arduino IDE: which board to choose

    2
    0 Votes
    2 Posts
    6k Views
    N
    Hi! Board settings==board info? Whit "M5Stack-Core-Esp32"> M5Stack Arduino> M5Stack-Core2 works nice to me.
  • Newbie questions (sorry)

    12
    0 Votes
    12 Posts
    22k Views
    E
    @ajb2k3 thanks for your answer but as you can see just above I already got the answer from another post on the forum. In fact this is not that simple. Yes you can flash the device with the binaries found on the MicroPython website but then you only get the basic lib to get access to the ESP32. If you want to take advantage of all 'surrounding' features like touch screen, accelerometer etc...then, unlike with UIFlow where the libs do encapsulate all those surrounding features, you have to dig yourself and find the correct libs as M5Stack is not providing one.
  • Core2+GoPlus2+M5GO2

    core2 goplus2 m5go2
    3
    0 Votes
    3 Posts
    8k Views
    N
    Thank you!
  • AXP192 interrupt output not used

    3
    1
    0 Votes
    3 Posts
    7k Views
    felmueF
    Hello @Zontex Understood. Thank you for checking. Maybe it could still be wired to a GPIO, but via a solder bridge, so it could be used optionally? Anyways, I've soldered a wire from AXP IRQ to ESP32 GPIO35. I can detect now when USB (aka ACIN) has been connected or disconnected while ESP32 is in light sleep and use that to wake up. Cheers Felix
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Core2 flash error on big sur

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • compatibility issue between Touch and i2c Grove sensor

    4
    0 Votes
    4 Posts
    7k Views
    felmueF
    Hello @jimbo_s you're welcome. I am glad you got it working to your liking. Happy Stacking! Felix
  • M5GO Battery Bottom2 (for Core2 only)

    4
    0 Votes
    4 Posts
    8k Views
    felmueF
    Hi @Zontex No offence, but I went ahead and created my own M5GO in white with some additional modifications, actually mostly removing stuff which consumes too much power for my battery operated project. I've called it M5PogoBottom. Cheers Felix
  • M5GO Battery Bottom2 (for Core2 only) & UIFLOW/Python

    2
    0 Votes
    2 Posts
    4k Views
    OyczEO
    yee i have the same problem.
  • M5Button & M5Touch: progress update

    4
    3 Votes
    4 Posts
    9k Views
    felmueF
    Hello @m5stack I can imagine you guys are busy with all the new exiting products (M5CoreInk, M5Paper etc.), but I was wondering about when Rop's excellent improvements for M5Core2 will be approved? BTW: I am using Rop's code for a while now and with great success. Thank you very much in advance. Felix
  • How to turn your Core2 into a paperweight/magnet, a cautionary tale.

    2
    1 Votes
    2 Posts
    5k Views
    felmueF
    Hello @revta thank you for sharing your experience. Re ATECC608A: I did not notice the link in the M5Core2 documentation until now. However running an I2C scanner on M5Core2 doesn't reveal such a device (which by default should have address 0x35). All devices the scanner detects are: 0x34 (AXP), 0x38 (Touch), 0x51 (RTC) and 0x68 (IMU). The 8 pin IC close to USB-C you referring to I think is part of the protection circuit for the SD card - but I could be wrong about that. At this point my conclusion is that the ATEC608A never made it into the final design. Happy Stacking! Felix
  • [Pull-request merged] RTC backup battery charging current

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