๐Ÿค–Have you ever tried Chat.M5Stack.com before asking??๐Ÿ˜Ž

Subcategories

  • You can discuss ESPHome related issues here, share your yaml and projects.

    22 Topics
    35 Posts
    C
    Hi everyone, I am new here. hopefully i can get this dial working with my home assistant. I have a M5 stack dial that is a S3A. While installing this M5 do i need to do anything different than the S3? thanks in advance cue340
  • Squareline Studio and LVGL Discussion

    6 Topics
    19 Posts
    S
    @ไฟบใŒใ‚ฌใƒณใƒ€ใƒ ใ  said in LVGL performance problem: I applied LVGL on stickc-plus2๏ผŒwith TFT_eSPI's st7789v2 driver.But the refreshing rate is very low (while doing "load screen anim").I know stickc had good performance on drawing screen (by watching the video of M5stick T-Lite Thermal tutorial). And the LVGL also has a good performance through Dial-ESP32-S3 and Din-Meter demonstration video. So what is the reason of such low performance. Cound it be the TFT_eSPI library? Iโ€™ve seen similar issues on the StickC-Plus2. It could be due to TFT_eSPI settings, try increasing the SPI frequency or enabling DMA. Also, check your LVGL buffer config; full buffering helps with performance.
  • Discuss all things UIFlow here. Bugs, Improvements, Guides etc...

    1k Topics
    4k Posts
    C
    Im trying to run uiflow, but getting api error. im trying to login but credentials are failing. reset pw takes me to M5. what do i do?
  • M5Stack is programmable with the Arduino IDE. Here you can troubleshoot your issues and share Arduino code and libraries

    469 Topics
    2k Posts
    felmueF
    Hello @Shipbrook M5Unified uses Wire1 for internal I2C and Wire for external I2C. The example for SHT40 incorrectly uses Wire which causes issues as soon as other internal I2C communication is required, e.g. reading battery status. The quick way to fix this is replacing Wire with Wire1 in below line: //if(!sht4.begin(&Wire, SHT40_I2C_ADDR_44, SHT_SDA_PIN, SHT_SCL_PIN, 400000U)) if(!sht4.begin(&Wire1, SHT40_I2C_ADDR_44, SHT_SDA_PIN, SHT_SCL_PIN, 400000U)) The better way is to get the actual port used by M5Unified for internal I2C and the use that information: i2c_port_t PortIn = M5.In_I2C.getPort(); TwoWire * WireIn = (PortIn == 1) ? &Wire1 : &Wire; if(!sht4.begin(WireIn, SHT40_I2C_ADDR_44, SHT_SDA_PIN, SHT_SCL_PIN, 400000U)) Thanks Felix
  • Discuss all things Micropython here. Get help, Recommend Libraries, Report Bugs and Improvements

    218 Topics
    898 Posts
    J
    @pabou try using uiflow to generate the code, then peek copy from there.
  • For discussion and assistance with M5EZ.

    13 Topics
    62 Posts
    J
    using the mentioned changes hello_world example did compile and got uploaded to my core2. However , nothing is shown on screen, screen remains black.
  • Discuss all things related to ESP - IDF, Espressifs IoT Development Framework

    29 Topics
    101 Posts
    felmueF
    Hello @daniyyel ah, ok. So the correct documentation is here. Have a look at the code examples in Quick Start Guide to see how the M5IOE1 needs to be programmed to turn on power etc. The function is called SIM7028_EN() and first turns on power then resets the modem. Thanks Felix
  • UiFlow 2.0 related issues discussion.

    366 Topics
    2k Posts
    I attempted to burn the firmware for each version of UIFlow 2.0 Stick Plus on my stickC Plus, but after each firmware was burned, the device failed to boot up and did not respond to any key press.
  • TimerCam Power/Wake button docs โ€“ G38 instead of G37

    6
    1 Votes
    6 Posts
    7k Views
    M
    @fried_chips I finally got to this thread. Thank you, I've been looking for the solution of this problem. and I'm glad to have found it. I installed a pull-up resistor this route. [image: 1726562722678-img_20240917_103853.jpg]
  • M5 Stick C Plus 2 Not Booting

    3
    0 Votes
    3 Posts
    2k Views
    robskiR
    @krishna first of all be sure that firmware you trying to download is for M5StickC Plus2, have you tried easyburner project from M5StickC Plus2 documentation store page?
  • How to Erase Original Firmware from M5Stack UnitV2

    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    63 Views
    No one has replied
  • M5Stick2 / Leption Thermal Option - Repo broken

    1
    0 Votes
    1 Posts
    886 Views
    No one has replied
  • Noob: How to update ATOM Joystick/Stampl Fly firmwares from Linux

    1
    0 Votes
    1 Posts
    913 Views
    No one has replied
  • 0 Votes
    1 Posts
    953 Views
    No one has replied
  • M5Stack UnitV2 with a Raspberry Pi via UART

    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

    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"

    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

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

    10
    0 Votes
    10 Posts
    5k Views
    ajb2k3A
    @NoobCheck1 what do you mean โ€œitโ€™s funnyโ€?
  • Thermal Online Cat-M Original Factory Application

    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

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

    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

    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.

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

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • This topic is deleted!

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

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