đŸ€–Have you ever tried Chat.M5Stack.com before asking??😎

Subcategories

  • Hear all about new products, initiatives and events here.

    14 Topics
    20 Posts
    kurikoK
    UiFlow2.0 quick start for CoreMP135 has been released. https://docs.m5stack.com/en/guide/linux/coremp135/uiflow2
  • 2 Topics
    2 Posts
    ajb2k3A
    Members will have noticed that some of us have pictures instead of letters next to our names. This isn't anything to do with status but is a function of the forum available to most (if not all) forum member. To set a picture for your avater you need to click on your letter in the top right hand side of the screen and a menu will appear. Click "Edit Profile" and you will be taken to the profile screen. At the top is a picture with your initial in it, click on it and you can upload an image to use.
  • Here is where you'll find News about promotions, M5stack related blog posts and Videos from M5stack users

    233 Topics
    308 Posts
    S
    To fix issues with M5Burner on Mac, ensure you’ve installed the correct USB-to-serial drivers (like CP210x or CH340). Run M5Burner using Rosetta if needed. Allow app permissions via System Settings > Privacy & Security. Always download the latest M5Burner version compatible with your mac.
  • M5Stack Atom Echo LED control with M5Unified and FastLED

    8
    0 Votes
    8 Posts
    3k Views
    V
    @AustinSmith Unfortunately, no matter how I tried to disable it using M5Unified, I could not get it to work. In the end, adding the line suggested above finally solved the issue. pinMode(DATA_PIN, OUTPUT); // <- Add this
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    87 Views
    No one has replied
  • List of track changes for UIFlow2 updates

    2
    1 Votes
    2 Posts
    900 Views
    No one has replied
  • Closed-Loop Stepper Motor Issue

    1
    0 Votes
    1 Posts
    255 Views
    No one has replied
  • 0 Votes
    1 Posts
    666 Views
    No one has replied
  • 0 Votes
    1 Posts
    824 Views
    No one has replied
  • 0 Votes
    1 Posts
    510 Views
    No one has replied
  • external IR LED module.

    2
    0 Votes
    2 Posts
    1k Views
    H
    @davievans That setup sounds reasonable. Just make sure the LED driver you choose can handle the current spike your IR diode needs, otherwise the range won’t improve much. Have you already checked which GPIO pin on the Stick you want to use for triggering the module?
  • Which external hardware to buy for extend IR range ?

    7
    0 Votes
    7 Posts
    3k Views
    L
    To extend the IR range on an M5Stack, the best approach is to use a high-power IR LED paired with a transistor or MOSFET driver to safely handle higher current. Adding a lens or collimator can also help focus the beam for much greater distance and accuracy, and ensuring the signal is properly modulated (like 38 kHz) will improve compatibility with most IR receivers. Just make sure your power supply can support the increased draw from stronger hardware. If you share your budget and required range, I can suggest specific components.
  • how to use advance functions of it8951

    1
    0 Votes
    1 Posts
    360 Views
    No one has replied
  • Issue with M5stack

    4
    0 Votes
    4 Posts
    2k Views
    A
    NRF24L01 Troubleshooting Guide for M5 Core2 Users Thanks for bringing this up! The “NRF24 not detected” message usually points to a wiring, power, or SPI initialization issue. While detailed documentation for NRF24L01 specifically paired with M5 Core2 is limited, here’s a comprehensive set of checks to help you isolate the problem. Verify SPI Wiring The NRF24L01 relies on proper SPI mapping. Make sure the following pins align with the Core2’s hardware SPI bus: MOSI → GPIO 23 MISO → GPIO 38 SCK → GPIO 18 CSN (CS) → GPIO 5 or GPIO 26 CE → Any free GPIO (commonly GPIO 4 or 5 depending on your setup) VCC → 3.3V (never 5V) GND → Ground ⚠ Tip: Loose CSN or CE wiring is one of the most common causes of NRF24 initialization failure. Power Stability Check The NRF24L01 is notoriously sensitive to voltage noise. Ensure a clean 3.3V feed (not exceeding 3.6V). Add a 0.1”F ceramic capacitor close to the module’s VCC/GND pins. Prefer a separate 3.3V regulator if you are using the PA+LNA high-powered version. The module may draw up to ~100mA during TX, so confirm your supply can deliver this reliably. Library & Firmware Setup Make sure the correct software environment is in place: Install TMRh20’s RF24 library via Arduino IDE → Library Manager. Update your M5Core2 library from GitHub. Use a fresh example sketch from the RF24 library to confirm base connectivity. Example Initialization Code Adjust pins depending on your wiring: #include <SPI.h> #include <RF24.h> RF24 radio(4, 5); // CE pin, CSN pin void setup() { Serial.begin(115200); if (!radio.begin()) { Serial.println("NRF24 module NOT detected!"); return; } Serial.println("NRF24 module initialized."); radio.setPALevel(RF24_PA_MIN); radio.setDataRate(RF24_250KBPS); radio.openReadingPipe(0, 0xAABBCCDDEEULL); radio.startListening(); } void loop() {} If this fails, the wiring or hardware is almost certainly the issue. Hardware Integrity Checks Before assuming software issues, confirm physical reliability: Inspect solder joints and header pins. Use a multimeter to confirm continuity on MOSI/MISO/SCK/CSN/CE lines. Try a second NRF24 module if available, these modules can fail easily. Swap CSN/CE to alternate GPIOs if conflicts exist.
  • 1 Votes
    1 Posts
    375 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    74 Views
    No one has replied
  • 1 Votes
    3 Posts
    2k Views
    ?
    I fell in love with M5 too :) I'm learning python programming for fun and M5 tech helps me stay interested and engaged. I hardly ever stan any brands but M5 is so cool that I'd even like to have some merch tbh :D I hope you're safe in the US right now. Take care :)
  • hi, can i please use your version m5cores3_power...?

    4
    0 Votes
    4 Posts
    1k Views
    S
    I'd be happy to help you use the M5CoreS3 Power component—could you please share a bit more about your specific project or how you're planning to implement it?
  • What are your favorite cheap accessories for M5Stack projects?

    19
    1 Votes
    19 Posts
    15k Views
    S
    Those generic 10-pack sensor modules from AliExpress have been a game-changer for prototyping - dirt cheap and surprisingly reliable for the price.
  • ADSB

    2
    0 Votes
    2 Posts
    2k Views
    F
    I just grabbed an M5Stick and followed the instructions and got it working amazingly with ease. Here's repo and the how to: https://github.com/stevenselcuk/nearPlane Good luck! AD6GO
  • 0 Votes
    2 Posts
    2k Views
    H
    @Genio Hi I hope you have resolved this issue! would you please share how you handle this error in the end?
  • New user having trouble with "download" mode (Atom Lite S3)

    3
    0 Votes
    3 Posts
    2k Views
    M
    @robski - got it solved, turns out the problem was that i was connecting to usb-c on my laptop, which didn't seem like it should be a problem since the Atom Lite also uses usb-c. But once i changed over to my usb-a port, it's all working fine.
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    19 Views