🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • soy principiante!

    2
    0 Votes
    2 Posts
    3k Views
    C
    Check with https://randomnerdtutorials.com/contact
  • M5StickC Plus not recognized by PC

    2
    0 Votes
    2 Posts
    4k Views
    teastainT
    @human101010 with the power on, click the power button and it will rest and start the sketch over. There is a more complicated procedure somewhere on the internet which I cannot find rn, on mobile! Did it ever connect? M5 did have supply different USB chips, you may need the CH340 patch.
  • video stream (computer desktop) to m5stickc plus

    4
    0 Votes
    4 Posts
    6k Views
    F
    adding notes : the M5stickc plus uses an AXP192 for power management (including display), all the functions to initialise it are inside the M5StickCPlus but you can't call this library in same time as TFT_eSPI.h. you will have to copy AXP192.h & AXP192.cpp from the M5StickCPlus lib and put it in your project (change the names). If you have a M5 project loaded in your stick and then upload a sketch using TFT_eSPI, it will work the first time as the display is already power on from the previous m5 sketch but the display won't turn back on on the next restart unless you init the AXP192 like explained. hope it helps anyone!
  • Displaying JPEG Images on M5StickC

    3
    0 Votes
    3 Posts
    8k Views
    F
    @boverby the link is dead would you mind sharing your code ? I am trying to stream to a m5stickc plus, what you did would be a good reference to look at ! thank you
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • M5StickC-Plus changes in version 1.1

    2
    0 Votes
    2 Posts
    5k Views
    B
    I ordered another C-Plus today and got the v1.1 revision as expected. There's a difference on the label - Sleep/Wake has been added next to the RTC box, see below. I would like to know what the relevance of this change is. [image: 1676992895200-m5stick-cplus-diffs-resized.jpg]
  • M5StickC - MPU-6886 Data Ready Interrupt & Read Process

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • M5StickC built in LED

    6
    0 Votes
    6 Posts
    16k Views
    W
    Thanks! That workaround works. You only see the brief flash when applying power or when the IDE uploads the code and hard resets via RTS. If you do this: #include <M5StickCPlus.h> void setup() { M5.begin(); digitalWrite (M5_LED, HIGH); // turn off the LED pinMode(M5_LED, OUTPUT); digitalWrite (M5_LED, HIGH); // off } void loop() { delay(10); ESP.restart(); } the LED does not flash repeatedly.
  • M5 Stick C IMU orientation

    8
    0 Votes
    8 Posts
    7k Views
    ajb2k3A
    I'm sure that the IMU is place so that Y points to the top of the StickC.
  • M5 Stamp pico mate nao conecta

    2
    0 Votes
    2 Posts
    2k Views
    teastainT
    @marciocobra Since no one has responded... to what does it not connect? Do you have the USB programmer, I presume? Does it not connect to Arduino IDE port? Or ESP_NOW, or WiFi or Internet!
  • SHT31 in Uiflow

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • How do I access the mic on the m5stickc?

    7
    0 Votes
    7 Posts
    14k Views
    K
    I was successful in recording something like a wave form with the following code: from machine import I2S, Pin import array mic = I2S(I2S.NUM0, ws=Pin(0), sdin=Pin(34), mode=I2S.MASTER_PDM, dataformat=I2S.B16, channelformat=I2S.ONLY_RIGHT, samplerate=16000, dmacount=16, dmalen=256) b2 = array.array("h", 4096 * [0]) mic.readinto(b2) However, there seems to be a systematic offset around ~+1000. Not sure what is going on here. Could it be related to PDM encoding and the I2S clock? Also, I experience values that are larger than the 12bit precision documented somewere def eval(): mic.readinto(b2) print(min(b2), max(b2), sum(b2)/len(b2)) for i in range(1000): eval() ... 48 1963 1017.062 811 1237 1027.727 927 1122 1021.952 849 1286 1023.281 763 1719 1029.73 102 1966 1015.185 -903 2878 1012.832 -788 2683 984.9133 -1524 2761 982.3828 -815 3075 986.0596 -864 3044 980.6567 -713 2904 993.0678 -669 2615 1014.595 -138 2182 1022.794 -73 1954 1018.482 ...
  • Error updating Arduino IDE

    2
    1 Votes
    2 Posts
    3k Views
    M
    I was in the same situation. I failed to update the board definitions that were already installed on Arduino IDE 1.8.19. Eventually, reinstalling the board definitions solved the problem. Specifically, I uninstalled the M5Stack board definitions on Arduino IDE 2.0, then added the URL for the board definitions, restarted the IDE, and then installed the M5Stack board definitions, which was successful.
  • Docs and Libraries for K016-B (M5Stick Mini Development Kit)

    7
    0 Votes
    7 Posts
    6k Views
    ajb2k3A
    @fletli I have a video going up soon on how to get it to work in Micropython which turned out very easy in the end.
  • Issue with Env-iii hat.

    4
    0 Votes
    4 Posts
    5k Views
    felmueF
    Hello @goochiecobbler I am happy to hear it worked. And thank you for reporting back and posting the working code. Thanks Felix
  • Using the GROVE Port to run I2C sensors using ESP-IDF doesnt work.

    3
    0 Votes
    3 Posts
    4k Views
    A
    @felmue Hi, thanks for the reply. I'll look into it :D
  • How do I change the battery on the M5StickC?

    3
    0 Votes
    3 Posts
    5k Views
    teastainT
    @juanjosecastillo Will it run on USB power?
  • M5StickCPlus OTA Failing in Update loop

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Serial unstable on M5StickC Plus

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Connecting an external 3.7V lithium battery to the M5StickPlus

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