🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • 0 Votes
    1 Posts
    3k Views
    No one has replied
  • 0 Votes
    3 Posts
    5k Views
    R
    hey ajb2k3, I have python 3.10 and MaxOS monterey 12.6.1. When i click on the Erase, it get the error in the screenshot or the 3 dots indicating a process is in progress but the process loops indefinitely. Not sure what process is looping but it seems M5burner is trying to connect to the com port of the Core 2 but never gets a response. might be an OS bug as I swapped over to a windows laptop and i was able to download the image but after hard resetting the usb c to stay up - article here I have a working Core 2 again - happy user :-)
  • Error compiling for board M5Stack-Core2

    2
    0 Votes
    2 Posts
    4k Views
    R
    See here: https://community.m5stack.com/topic/4690/executable-file-not-found-in-path
  • M5Core2 AWS with COM.X Zigbee Module

    3
    0 Votes
    3 Posts
    5k Views
    felmueF
    Hello @earthphisek I do not have the COM.X Zigbee module so I cannot test this myself. However with the following modifications the M5Stack example should work with an M5Core2 too. Replace #define <M5Stack.h> with #define <M5Core2.h>. Replace Serial2.begin(38400, SERIAL_8N1, 16, 17); with Serial2.begin(38400, SERIAL_8N1, 13, 14);. Hardware: in the COM.X Zigbee module set the two dip switches 16 and 17 to on and leave the other four in off position. Explanation: On the M5Core2 GPIO16 and GPIO17 have been replaced with GPIO13 and GPIO14. But the labeling in most modules still follow the numbering used with M5Stack devices. Thanks Felix
  • Put M5.shutdown in Void loop -keeps shutting down

    5
    0 Votes
    5 Posts
    7k Views
    T
    Felix, It worked! Thank You so much! I thought I made the most expensive Lego brick in the world! HA HA. In all my years playing with the UNO I never found a way of shutting down through code. If I did I might of given up on IOT. Thanks, Trent
  • AWS IoT Edukit Core M5 - Micropython support?

    Moved
    12
    1 Votes
    12 Posts
    23k Views
    greenleafG
    @rashedtalukder Congrats, hope you are on to somewhere that appreciates your skills!
  • Edukit ATECC608B & AWS IOT & UiFlow

    35
    0 Votes
    35 Posts
    87k Views
    ajb2k3A
    @felmue thanks for letting me know. It’s been stable for the testing but I’m yet to move beyond. I tried looking at provisioning for vets and codes but my brain is not taking it in hence the low level MP stuff. I’m sure there will s an issue with MP but I don’t deal directly and not getting feedback from @m5stack or @IAMLIUBO
  • Read RFID 2 (WS1850S) from Core2 for AWS

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • 0 Votes
    1 Posts
    4k Views
    No one has replied
  • I2C Problem with capacitive touch

    3
    0 Votes
    3 Posts
    5k Views
    felmueF
    Hello @university123 could you post your code? Using UiFlow I've put together a simple program which reads the touch state and x and y coordinates of the MPU6886 in a loop just fine and I do not encounter any lockup when I touch the screen. See below: from m5stack import * from m5stack_ui import * from uiflow import * from m5stack import touch import imu screen = M5Screen() screen.clean_screen() screen.set_screen_bg_color(0xFFFFFF) imu0 = imu.IMU() label0 = M5Label('Text', x=24, y=24, color=0x000, font=FONT_MONT_26, parent=None) label1 = M5Label('Text', x=23, y=86, color=0x000, font=FONT_MONT_26, parent=None) label2 = M5Label('Text', x=151, y=86, color=0x000, font=FONT_MONT_26, parent=None) while True: label0.set_text(str(touch.status())) label1.set_text(str(imu0.ypr[1])) label2.set_text(str(imu0.ypr[2])) wait_ms(2) Thanks Felix
  • LAN id/password security

    2
    0 Votes
    2 Posts
    4k Views
    R
    Your connection to your WiFi network with a password requirement is encrypted. Connection to AWS is also encrypted as AWS IoT does not support unauthenticated connections.
  • GoPlus2 Module and Core2 for AWS

    15
    0 Votes
    15 Posts
    21k Views
    C
    @felmue There's no exact information on compatibility in your links. I found problems, then contacted directly M5 and they explained that Core2 and GoPlus2 are not compatible in a direct message. Hope this thread helps next people. BTW, I bought a new Core Gray device (Core1, not Core 2) but still GoPlus2 is not recognized. I'm starting to think I'll never make it work... :'(
  • Can't add data to existing SD file

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • AWS is unresponsive after Arduino upload

    6
    0 Votes
    6 Posts
    8k Views
    felmueF
    Hello @SteveM you are welcome. Glad to hear you got it working. Thanks Felix
  • AWS IoT & UIFlow

    3
    0 Votes
    3 Posts
    5k Views
    T
    Thank you. That worked a treat!
  • AWS Edukit as normal Core2 for Uiflow

    Moved
    8
    0 Votes
    8 Posts
    16k Views
    greenleafG
    @stanely You are my hero - thanks for figuring this out!
  • How to resart the program

    m5core2
    3
    0 Votes
    3 Posts
    6k Views
    C
    The command is: ESP.restart();
  • Convert Core code to Core2

    3
    0 Votes
    3 Posts
    5k Views
    T
    Thanks! For some reason I had to remove the M5Stack library entirely from the libs-folder, then it worked. Annoying.
  • Core2 for AWS and CAT-M module (SIM 7080G)

    2
    0 Votes
    2 Posts
    4k Views
    felmueF
    Hello @jcom maybe this example can help you? Thanks Felix
  • MATLAB and M5stack

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied