🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • Hello World, or not Arduino

    3
    2
    0 Votes
    3 Posts
    7k Views
    W
    that did it THANK you
  • 2 question while await my core 2, power and pinouts

    3
    0 Votes
    3 Posts
    8k Views
    W
    @felmue Wow thank you for all the information
  • Bluetooth

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

    1
    3 Votes
    1 Posts
    3k Views
    No one has replied
  • Power on via RTC timer example

    5
    1 Votes
    5 Posts
    9k Views
    felmueF
    Hi @Zontex thank you for looking into it, I appreciate it. Please let me know if there is anything I can help with or test. Thanks Felix
  • Windowing environment

    4
    1 Votes
    4 Posts
    11k Views
    m5stackM
    Cool!
  • Simple Touch Keyboard

    12
    1
    2 Votes
    12 Posts
    27k Views
    felmueF
    Hello Rop nice, now we already have two keyboard layouts (anybody working on Dvorak?). I like your solution for uppercase letters and the caret handling is nifty - well done. Cheers Fexli
  • Touch Buttons and Styluses

    3
    1 Votes
    3 Posts
    8k Views
    felmueF
    Hi Van thank you for the test application. I've added my test (using a finger) in the issues section. I think I have a stylus somewhere and when I find it I'll give it another go. Cheers Felix
  • Big Font

    4
    0 Votes
    4 Posts
    11k Views
    RopR
    It's just a web frontend to the adafruit font converter thing. Might have a look once I'm done with a bunch of other Core2-related goodness. Feel free figure out WTF...
  • M5Sound 😎

    10
    1 Votes
    10 Posts
    21k Views
    vkichlineV
    Rop, all the included examples run fine. I found that the problem is that Button::_hidden is uninitialized. I will open an issue. Now I can easily add hit and miss sounds to my button testing app. Will update soon.
  • WTF with versions???

    firmware software version
    2
    0 Votes
    2 Posts
    6k Views
    m5stackM
    you could ignore the version notice. just select the core2 device on the setting page will be ok. 1.0.12 was for the Desktop IDE software version. 1.4.5 or 1.6.x was for the UIFlow firmware version. [image: core2_uiflow_selcet.jpg]
  • 0 Votes
    15 Posts
    24k Views
    felmueF
    Hi @Rop I think I've played with that register setting myself at one point in the past and I also did not see any difference in regard of the area under the circles. It will be interesting to see if that will be improved in one of the next M5Core2 hardware revisions. Thanks Felix
  • Ultra low power consumption in sleep mode

    3
    1
    0 Votes
    3 Posts
    7k Views
    felmueF
    Hi @Rop or a pin drop... thank you for that piece of information - it's good to know the last touch can be retrieved if necessary. Currently in my project I put almost everything to sleep, except for touch (monitor mode) and IMU (setup for WOM). The ULP is monitoring the interrupt lines from both and wakes the main CPU if required. Cheers Felix
  • Core2 RTC challenge

    7
    0 Votes
    7 Posts
    14k Views
    S
    Hi @felmue, I started M5Core2-Factory test, disconnected USB and go away. About 5 hours later I came back and tried to switch on M5Core. Nothing happened. I connected USB, flashed the M5Core2 with the factory test program and everything worked fine. At the last day I used my RTC-library with alarm functions and more and it worked continuously. Cheers
  • Core2 Factory Test

    6
    0 Votes
    6 Posts
    13k Views
    vkichlineV
    In another thread, it became clear that the most appropriate fix for this issue in the factory test code is: On lines 446 and 447, in the function checkI2cAddr(): Change one instance of Wire. to Wire1. one each of the two lines. Wire.beginTransmission( lastptr->addr ); if ( Wire.endTransmission() == 0 ) ...becomes: Wire1.beginTransmission( lastptr->addr ); if ( Wire1.endTransmission() == 0 )