🤖Have you ever tried Chat.M5Stack.com before asking??😎

Categories

  • Firmware updates, Hardware Revisions, New Product info can be found here.

    75 Topics
    826 Posts
    KhanFromNorthK
    You can continue developing on the M5Stack Core2 reliably. The key is to bypass UIFlow entirely and use MicroPython directly through Thonny or VS Code.
  • M5Stack Events

    8 Topics
    31 Posts
    kurikoK
    @Apex574R Does the Userdemo firmware running normally?
  • Wish for a feature that doesn't exist yet? this is the place to ask for it. we will collect all the requirements and enquiry's and who knows ... sometime wish might come true!

    223 Topics
    680 Posts
    S
    Hello! I really love my Cardputer ADV, but I just wanted to mention something that, as a new user, didn't feel very intuitive. The original cardputer and the ADV differ to the point where firmware written for one often won't work on the other. As a new user, it was confusing that M5Burner doesn't have separate sections for the ADV and original, instead opting to have one section. Firmware creators (and even m5stack themselves), end up making two version of the firmware (one for the ADV and one for the original), and posting them in the same cardputer section. New users could miss the correct firmware version, and install the wrong one, or get frustrated when firmware that only supports the original model doesn't work on their ADV. I feel a lot of this confusion could be avoided if the m5stack menu had two different sections for the original and ADV model.
  • Forum rules - Announcements - General chit chat (ESP-32, ESP-8266, IoT, Raspberry Pi etc...)

    974 Topics
    3k Posts
    V
    After downloading and extracting the M5Burner software, my computer is unable to run the M5Burner.exe program. When I double-click M5Burner.exe, Windows directly displays a system pop-up message saying "m5burner has stopped working." The following solutions have been attempted but confirmed to be ineffective: · Extract the ZIP archive first, then run M5Burner.exe · Run M5Burner.exe as administrator · Ensure that M5Burner.exe and all other files from the archive are in the same directory, with the path using only half-width characters and the path length not exceeding the Windows system limit · Disable the system VPN and allow M5Burner.exe through the antivirus firewall · Restart the computer The following information is related to the error: · Operating environment: Windows 11 Pro 25H2 26200.8524 · Information obtained from the m5burner.exe application crash event in Windows Event Viewer is as follows: Exception code: 0x80000003 Faulting process ID: 0x893C
  • Core and Modules info.

    3k Topics
    14k Posts
    V
    The same thing. AI mode didn't work, no leds on, no reply on startup phrase
  • Projects Sharing.

    496 Topics
    2k Posts
    H
    I didn't implement those pins selectable in software because it is intended for use on almost any ESP-based hardware. Though if I have a good idea on how to do it without sacrificing portability I might add it later.
  • This is the place to discuss driver issues, M5 burner troubleshooting, and development of software compatible with M5Stack

    3k Topics
    10k Posts
    L
    I turned an M5Stack Cardputer-Adv into a physical control surface for an AI coding agent (Claude Code) over BLE + MCP. Built on top of cardputer-claude-os. [image: device.jpg] Physical approval gate — a hook routes the agent's shell commands and file edits to the Cardputer. Read-only commands pass through; ordinary ones take a single Enter on the device; destructive ones (rm -rf, git push, sudo, editing secrets) need a sustained hold-Y gesture that prompt-injection can't fake. If the device is away, it falls back to the terminal — the Cardputer is an optional gate, never a dependency. Ordinary action — one Enter: [image: approve.jpg] Destructive action — hold Y for ~3s: [image: danger.jpg] Other bits Always-on usage dashboard: today's spend, 5h/7d subscription utilization, battery %, and a resident pixel-crab mascot. notify / ask / confirm tools so the agent can buzz a banner, ask a multiple-choice question, or demand confirmation. Notes for fellow Adv owners The Adv's ES8311 codec only makes sound if your main loop calls M5.update() every iteration — took me a while to track down. The app is big, so it ships as compiled .mpy (source-form import OOMs the launcher), deployed into the cardputer-claude-os launcher bundle. Code (MIT) + setup: https://github.com/loml13/cardputer-claude-mcp Feedback welcome
  • 263 Topics
    574 Posts
    K
    我是嵌入式新手,最近在尝试使用Agent来开发自己的功能。设备是Cardputer ADV,在开发前期将MCU型号、键盘等外设型号以及管脚映射喂给AI,但是无论是trae的auto模型,还是DeepSeek V4 pro,都无法完整开发完功能。其中通病有2个:1.键盘无法使用;2.屏幕闪烁;3.麦克风无法使用。这两个大佬们有思路解决吗? 主要开发的功能有以下这些: 1.通过ESP32-S3FN8的WIFI功能构建web服务器,用户可以通过浏览器访问设备microSD的文件,支持修改、删除、移动、重命名、上传、下载。 2.通过设备麦克风进行录音,并保存在设备microSD中,支持通过web服务器下载录音文件。web端提供录音转文字功能。