🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • 0 Votes
    1 Posts
    883 Views
    No one has replied
  • 0 Votes
    1 Posts
    923 Views
    No one has replied
  • M5Stack UnitV2 with a Raspberry Pi via UART

    SOFTWARE
    3
    0 Votes
    3 Posts
    2k Views
    P
    @ajb2k3 Thank you for your help! I'm not sure if I've configured the program correctly. I've been trying to set it up using Jupyter Notebook on the Unit V2. Could you please assist me in verifying whether the setup is correct or guide me on how to properly configure it to send data via UART to my Raspberry Pi?
  • M5StickT2 bin file or board definition

    SOFTWARE
    3
    0 Votes
    3 Posts
    2k Views
    M
    Hi All, I also face the Problem, that the provided Code for the M5StickT2 will not compile. https://github.com/m5stack/M5-StickT/archive/refs/heads/master.zip The EasyLoader will work for us, but we are not able to add required function by our own, als long we could not compile the base Package. iIs there a updated Library or maybe someone which has added RTSP Support for this Sketch and have it running, is willed to share ob maybe enhance it for us inside an Contract. Best Regards
  • TimerCam - "not found image data"

    SOFTWARE
    3
    1 Votes
    3 Posts
    2k Views
    P
    @dhellellerstedt The reason is simple: The images get uploaded, but not to api.m5stack.com but to 120.77.157.90 (Aliyun/Alibaba Cloud). Simply use that IP and you will get your images. Of course that raises the question why there is this missmatch. Maybe the Firmware-Images in M5Burner got mixed up or some other reason... Regarding the Tokens: They change each time because only the forst 12 chars are relevant.
  • Arduino on the CoreMP135

    SOFTWARE
    1
    0 Votes
    1 Posts
    813 Views
    No one has replied
  • Problem ios app for ezdata

    SOFTWARE
    10
    0 Votes
    10 Posts
    5k Views
    ajb2k3A
    @NoobCheck1 what do you mean “it’s funny”?
  • Thermal Online Cat-M Original Factory Application

    SOFTWARE
    2
    0 Votes
    2 Posts
    1k Views
    P
    For anyone looking I found project here https://github.com/m5stack/ThermalOnline-CatM-UserDemo Also another version (larger thermal image (full screen)) https://github.com/m5stack/M5Stack/blob/master/examples/Unit/THERMAL_MLX90640/THERMAL_MLX90640.ino
  • M5burner on ios

    SOFTWARE
    4
    0 Votes
    4 Posts
    3k Views
    6
    Thanks
  • M5 Stack ThermalOnline Cat-M Help

    SOFTWARE
    2
    0 Votes
    2 Posts
    2k Views
    P
    Hi did you ever find the original source to re-load the Thermal Online app? TY
  • Re-Burn original firmware on M5Paper

    SOFTWARE
    7
    0 Votes
    7 Posts
    4k Views
    T
    @ajb2k3 Thanks for your reply. Yes I did erased the flash. Any other ideas??
  • K-meter custom firmware - will pay for some code.

    SOFTWARE
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • M5 Stack Core S3 Azure Iot Hub

    SOFTWARE
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Weird error i get when trying to open the m5burner

    SOFTWARE
    1
    2
    0 Votes
    1 Posts
    727 Views
    No one has replied
  • EXT.IO 2 Desktop IDE Compatibility

    SOFTWARE
    2
    0 Votes
    2 Posts
    1k Views
    ajb2k3A
    @ggong No, the Desktop IDE hasn't been updated in a long time as work has been concentrated on the Web IDE.
  • Has anyone gotten MP3 streaming to work on Core2?

    SOFTWARE
    3
    0 Votes
    3 Posts
    2k Views
    W
    I got the sketches to work, They will be posted to the above repo shortly. The key changes from some of the existing code out there that does not work anymore: After WiFi connects, the delay must be increased to at least 1 sec: while ( !WiFi.isConnected() ) delay(100); delay(1000); Preallocating the source buffer seems to be essential: const int preallocateBufferSize = 128*1024; const int preallocateCodecSize = 85332; // AAC+SBR codec max mem needed void *preallocateBuffer = NULL; void *preallocateCodec = NULL; ... // Don't forget to malloc the buffers preallocateBuffer = malloc(preallocateBufferSize); preallocateCodec = malloc(preallocateCodecSize); ... srcbuf = new AudioFileSourceBuffer(file, preallocateBuffer, preallocateBufferSize); ... // Preallocating the MP3 generator doesn't seem to be essential //gen = new AudioGeneratorMP3(preallocateCodec, preallocateCodecSize); You must call M5.begin with the 6th argument false to disable the M5.Speaker code. With this argument, the skeptch will produce audio, but at half speed and half pitch: M5.begin(true, false, true, true, kMBusModeOutput, false); My M5Core2 library version is 0.1.9. I have 2.0.9 of the M5 board. definitions.
  • Core2 + Lan Module 13.2 + ENV IV help!

    SOFTWARE
    5
    0 Votes
    5 Posts
    3k Views
    felmueF
    Hello @FlooidOps I am glad to hear you figured it out. And sorry for not being more specific about how to switch to the alternate GPIO. Thanks Felix
  • Official Card Computer Demo App is missing from M5Burner app

    SOFTWARE
    3
    0 Votes
    3 Posts
    2k Views
    grimtechnetG
    @robski oh very cool! I didn't notice that till now, thanks. I see the Cardputer demos there. Unfortunately they are outdated but I'll keep an eye on it
  • M5 Stack Fire does not boot after flashing UI Flow 2.0.6.

    SOFTWARE
    4
    0 Votes
    4 Posts
    2k Views
    ajb2k3A
    @pawinchan After erasing and then burning (that looks like the correct version) Once UIFLow say complete hard resetting, wait for a while and then press the fires power/reset button
  • M5Burner on Manjaro Linux issues with dialout group

    SOFTWARE
    3
    0 Votes
    3 Posts
    3k Views
    grimtechnetG
    Thank you. The button press to get into download mode is what I was missing. (Press and hold BtnGo, then press and release BtnRst and BtnGo) After doing that, I saw ttyACM0 listed in the select box.