🤖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.
  • 2022 M5 Stamp Pico and Waveshare epaper Arduino Library?

    2
    0 Votes
    2 Posts
    3k Views
    felmueF
    Hello @hausofpayne ESP32 allows to assign almost any functionality (SPI, I2C, etc.) to almost any GPIOs. Using the example GxEPD2_WS_ESP32_Driver.ino from the GxEPD2 library with the following GPIO setup worked for me. (Note: I used a Waveshare 2.9" ePaper for my test.) DI <--> 26 SCK <--> 18 CS <--> 21 DC <--> 22 BUSY <--> 32 RESET <--> 33 On line 118 of the example you set the GPIOs for CS, DC, RST and BUSY: GxEPD2_DISPLAY_CLASS<GxEPD2_DRIVER_CLASS, MAX_HEIGHT(GxEPD2_DRIVER_CLASS)> display(GxEPD2_DRIVER_CLASS(/*CS=*/ 21, /*DC=*/ 22, /*RST=*/ 33, /*BUSY=*/ 32)); On line 150 of the example you set the GPIOs for SPI: SPI.begin(18, 36, 26, 21); // map and init SPI pins SCK(18), MISO(36), MOSI(26), SS(21) Thanks Felix
  • 0 Votes
    3 Posts
    4k Views
    W
    Thanks for responding ajb2k3. I'm certain it's the M5Core version I'm installing. I wrote to M5Stack for information regard a replacement and what the cost would be.
  • How to solve the problem of RVIZ freezing?

    3
    3
    1 Votes
    3 Posts
    5k Views
    ElephantRoboticsE
    This looks like a good suggestion.
  • 1 Votes
    3 Posts
    4k Views
    ElephantRoboticsE
    Thanks for your approval!
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    81 Views
    No one has replied
  • Core2 with W5500 and RS485 (ModbusMaster) with more then 2 slaves

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Atom Echo smallest wall power charger?

    1
    2
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Where is the FPGA code for Atom Display?

    1
    1 Votes
    1 Posts
    2k Views
    No one has replied
  • AWS IoT SDK support

    11
    0 Votes
    11 Posts
    15k Views
    K
    @ajb2k3 I’m afraid but I’m not the author of that post. But, I agree that it’s a well written one. Regarding device shadow, this is what I meant: [image: 1660510875123-54276020-0df4-4c24-a194-83fe63676b6e.png] Interact with device shadows
  • Core2 does not start after replacing CORE2 cover

    9
    0 Votes
    9 Posts
    10k Views
    felmueF
    Hello @Kombistack from what I can tell the damage isn't that severe. According to the schematic those two components are capacitors. I don't think they are critical for the overall functionality of the M5Core2, they might have an influence on the performance of the IMU though. That said, you should be able to resolder those with a small soldering iron. Or find someone who can fix it for you. I don't know if this board can be purchased separately as spare part. Have you checked with M5Stack support? Thanks Felix
  • Azure IoT Handle Example for Speaker play_cloud command?

    4
    2
    0 Votes
    4 Posts
    4k Views
    greenleafG
    In case anyone else has the same issue...the handler works if you hard-code the path to the Wav file [image: 1659467225560-c6876809-3335-4966-b617-200384690612-image.png] but cloud path doesn't work with the same trick, it still gives the Data format is not valid error.
  • Core2 Microphone quality and external microphone

    1
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • m5stamp c3U on a mac using arduino side

    2
    0 Votes
    2 Posts
    2k Views
    felmueF
    Hello @Trussell maybe this info can help? Thanks Felix
  • High Level Question regarding M5Stamp and Core2

    7
    0 Votes
    7 Posts
    8k Views
    teastainT
    Thomas, so glad to help, I love ESP_NOW !!! All my maker stuff is now M5Stack! Cheers, Terry
  • Use of GPIO pins

    4
    0 Votes
    4 Posts
    7k Views
    T
    @felmue I came to exactly the same conclusion via brute force and ignorance! I decided to ditch the EasyIO and played with the PIN option, one of the examples made it clear that the values 0-4 were virtual proxies . So I ended up with this, which works. I did not try 3.3v as I had it working on 5v on my arduino. Thanks for help from m5stack import * from m5ui import * from uiflow import * import machine setScreenColor(0x111111) l1 = M5TextBox(0, 225, "Intruder Status", lcd.FONT_Default, 0xFFFFFF, rotate=0) cIntruder = M5Circle(117, 230, 5, 0xFFFFFF, 0xFFFFFF) pin0 = machine.Pin(26, mode=machine.Pin.IN, pull=machine.Pin.PULL_UP) pin0.off() while True: if (pin0.value()) == 1: cIntruder.setBgColor(0xff0000) else: cIntruder.setBgColor(0x33cc00) wait_ms(2)
  • Block 101?

    4
    0 Votes
    4 Posts
    5k Views
    T
    Thanks @ajb2k3, that's just what I need
  • Stamp C nonblocking led script?

    4
    0 Votes
    4 Posts
    6k Views
    A
    You can make a new class , create a task to control blink or not, and color, with only one function call in you main code . I have done it, but is on vacation now, so cant share it.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Noob question: where to start Timer Camera and 4G/LTE comms?

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • M5Stack Fire won’t connect to IPhone hotspot

    5
    0 Votes
    5 Posts
    8k Views
    H
    Check the WiFi frequency band. ESP32 is only compatible to 2.4GHz WiFi networks. Some iPhone use 5GHz by default but there is a compatibility mode for switching down to 2.4GHz.