šŸ¤–Have you ever tried Chat.M5Stack.com before asking??šŸ˜Ž
  • Sending MQTT data to the LCD

    FAQS
    3
    0 Votes
    3 Posts
    8k Views
    G
    Hi, I'm not using M5ez yet but I will give it a try, I've set the background colour but I don't think it works with M5.Lcd.print commands.
  • Reference Document?

    FAQS
    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • New user and fonts

    FAQS
    3
    0 Votes
    3 Posts
    17k Views
    G
    @rop thanks for the pointers, I'll have a look at both.
  • How Do I Password Reset My cloud.m5stack.com ?

    FAQS
    4
    0 Votes
    4 Posts
    12k Views
    TeresaT
    @stuartrothrock Thanks for your feedback and suggestion. I have already contact our team to correct the error message. Now it shows in the right way.
  • How do I frash regular m5stack firmware?

    FAQS
    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • M5cam and BMP180

    FAQS
    4
    0 Votes
    4 Posts
    11k Views
    S
    The answer is: conf.sda_io_num = 13; conf.scl_io_num = 4;
  • How to change cpu frequency

    FAQS
    3
    0 Votes
    3 Posts
    10k Views
    P
    @Calin Thanks but it's not working board_build.f_cpu = 200000000L but when I use the function : //before Setup() int cpuSpeed = ESP.getCpuFreqMHz(); //In loop() Serial.println(cpuSpeed); In my serial monitor it display 240
  • How to center a text?

    FAQS
    10
    0 Votes
    10 Posts
    35k Views
    P
    Yes yes it's working
  • How reboot the M5Stack

    FAQS
    3
    0 Votes
    3 Posts
    12k Views
    P
    Thanks you
  • drawJpgFile / drawBmpFile

    FAQS
    30
    0 Votes
    30 Posts
    145k Views
    R
    Thank you Calin!
  • Flash m5go with the regular m5stack firmware?

    FAQS
    2
    0 Votes
    2 Posts
    7k Views
    JJJ
    Hi @lastcaress, You should be able to flash the standard M5Stack firmware onto the M5GO (you may need to use the "Erase" function on the ESP Flash Downloader Tool first). If you want to use M5Cloud you will need to load the M5Cloud firmware onto the M5Stack - it is available here. Not sure if you will be able to use the sensors using the same code - it depends how it is all setup.
  • WiFiManager on M5Stack ?

    FAQS
    1
    0 Votes
    1 Posts
    5k Views
    No one has replied
  • Descriptions and schematics for Faces modules

    FAQS
    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • Setting the volume

    FAQS
    9
    0 Votes
    9 Posts
    27k Views
    S
    Volume only works in "playMusic" function.
  • M5Stack-SAM - Could not find boards.txt

    FAQS m5stack-sam boa boards.txt
    4
    0 Votes
    4 Posts
    15k Views
    JJJ
    @martinsky No problem - glad to hear it is now working..... the other two menus on my github page are also very good.... little more involved to setup, but worth the effort. The SD-Updater menu supports M5Stack library versions 0.1.6 and 0.1.7 (see notes under installation). The MultiApp Firmware Menu uses the ESP Flash Downloader to upload the code in place of the Arduino "IDE".
  • mRuby

    Locked FAQS
    2
    0 Votes
    2 Posts
    7k Views
    JJJ
    @crea Hi Crea, No previous discussion here that I recall. Is not officially supported. Some references: Check this video and this repo. Also this article - (in Japanese - translator fail). Seems it might be possible..... seems worth a try. The repo was even updated recently ! Up for it ?
  • 0 Votes
    1 Posts
    5k Views
    No one has replied
  • Problems using interrupt, MPU9250 and Wi-Fi

    FAQS
    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • 0 Votes
    4 Posts
    11k Views
    JJJ
    @jp No problem JP !!
  • hardware FFT on the esp32

    FAQS
    3
    0 Votes
    3 Posts
    13k Views
    dasloloD
    @m5mpy microcode is very low level, I like how these MCU bring back old memories and old hacks like I used to do on Amiga. And how in general they force into better programming habits. So what I'm trying to do is general purpose signal camera. At the moment, a sound camera will do. From what I was told on eevblog, I need one FFT per microphone to calculate inter-mic delay. So far Arduino FFT switched to uint32 (faster on esp32 than uin8 I'm told) I'm getting 512 bins at 12 ms, which is't very zippy as I'll need 4 cameras at least. Not that big a deal because I don't need 60fps refresh but ... well, that would be nice :D As for the frequency, at the moment I'm interested in detecting the origin of low frequency sound as they're notoriously difficult to locate by ear. Eventually I'd like to expand into an EMF camera.