🤖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!

    222 Topics
    676 Posts
    R
    I took a closer look and compared M5StampS3A vs M5StampS3 BAT and I must say that it is not possible to do any piggyback for pin mapping at the M5StampS3A level since ESP32-S3FN8 vs ESP32-S3-PICO-1-N8R8 have differences in the number of GPIOs (6 pins error), see the difference table below: [image: 1774204115000-f8a8e80c-1dca-472a-ab48-dac7e6656c42-image.png] So it only remains for M5Stack team to upgrade M5StampS3A for 2/8 PSRAM, i.e. have M5StampS3B version.
  • Forum rules - Announcements - General chit chat (ESP-32, ESP-8266, IoT, Raspberry Pi etc...)

    971 Topics
    3k Posts
    D
    @2-4-6-h8 I am experiencing the same issue. I've registered on this site (obviously) and confirmed my email address. The Android app just spins when I try to register on it. I attempted update the StackChan's firmware but when I connected to my Wifi, it restarted on its own. Now when I click on the "Change Wi-Fi" section under setup, it shows me the QR screen to download the app, then just shows me the StackChan ID. I It seems no one is monitoring these forum posts, as a lot of threads are going unanswered. I hope this can be resolved because this is been a frustrating and disappointing experince thus far.
  • Core and Modules info.

    3k Topics
    14k Posts
    robskiR
    @Aleximdh so your Agent Settings like Assistant Name/Language/LLM Model/ Voice Setting are blank?
  • Projects Sharing.

    486 Topics
    2k Posts
    M
    Hi everyone, I built Pixel Pets, an open-source virtual pet family for M5Stack devices. It currently supports: Muffin — CoreS3 + Module-LLM, with offline voice interaction Visu — CoreS3 without the LLM module Goo-Goo — Core2 version Pip — StickC PLUS2 / PLUS2 S3 pocket companion The pets have moods, needs, mini-games, sounds, touch/button/IMU interactions, weather and moon-phase awareness, and ESP-NOW friendships. Pip can send treats and gestures to a bigger pet via ESP-NOW. The project started as a father-and-son maker project and is meant to be playful, hackable and parent-friendly. No cloud account, no tracking, no subscription. GitHub: https://github.com/marceld23/Pixel-Pets Demo / project page: https://marceld23.github.io/Pixel-Pets/ I would love feedback from other M5Stack users, especially around hardware setup, flashing instructions and ideas for new interactions.
  • This is the place to discuss driver issues, M5 burner troubleshooting, and development of software compatible with M5Stack

    3k Topics
    10k Posts
    Y
    Hello I faced problem about digi-clock write charcter block. Problem is 3rd and 4th digit can not display with this block. I created below flow. Then Digi-Clock displays "0.1.:" for 1st and 2nd digit and colon. [image: 1778319992199-1aae8860-52c1-4c60-9097-5668ed98e2ee-image.jpeg] Howerver, index of write character block can be set only 0 to 4. Therefore it could not display 3rd and 4th digit. I think this index shoud be set 0 to 8. It doesn't work if index forced set to 5 to 8. (It was same behavior as 0 if index is set to 5.) I think the index for DigiClockUnit.set_char should be 0–8, not 0–4. https://uiflow-micropython.readthedocs.io/en/latest/unit/digi_clock.html Could you please kindly consider to fix this issue? (Or let me know please if any other solution available.) #Write raw data and write string blocks are works correctly. Using device -AtomS3 lite -Digi-clock UIFlow version:2.4.4 FW version:2.2.5 OS:Windows11 Thank you in advance Best Regards Yamada
  • 260 Topics
    567 Posts
    Y
    UIFlow2.4.4でも挙動が変わっていないのですが、ご参考として情報共有します。 Write characterの表示位置はそれぞれ下記のようになっているようです。 0:一番左の桁 1:一番左の桁の小数点 2:左から二番目の桁 3:左から二番目の桁の小数点 4:コロン したがって、下記のように書いた場合、LEDの表示は"0.1.:"となります。 [image: 1778318692419-d24bad0f-0fc2-402c-8409-b966be4aa725-image.jpeg] ドキュメントにはDigiClockUnit.set_charのindex(表示位置)は0~4までとなっていますが、上記の挙動からすると本来は0~8まで必要と思われます。 (強制的に5~8を指定しても0~3の扱いになってしまい、左側2桁しか表示されません) 以上、特に新しいネタは無いのですがご参考でした。