🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • SPM1423 "I2S" Microphone U089 Quirks

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • M5 Station Battery version doesn't last this long

    2
    0 Votes
    2 Posts
    3k Views
    felmueF
    Hello @FLOSCH the reason battery level, power, voltage and current are incorrect is that the calls to GetBatteryLevel(), GetBatPower(), GetBatVoltage() and GetBatCurrent() are happening before I2C is initialized and therefore return invalid values. You'll need to do this calls inside setup() and after M5.begin(). Thanks Felix
  • GRBL Module 13.2 Stepmotor Driver (SKU: M035) - Firmware upgrade

    2
    1 Votes
    2 Posts
    3k Views
    P
    Hello M5Joe, did you find any way to update the GRBL to 1.1 ? I am also stack on the same problem. Thanks to any feedback. Best regards, Péter
  • Lora 868 module external antenna

    2
    0 Votes
    2 Posts
    4k Views
    E
    Hi, Sometimes I find IPX (or I-PEX or U.FL?), sometimes MCX, sometimes SMA... on descriptions So I link them all here... so you can find out yourself SMA wikipedia the most common one, it is threaded MCX wikipedia snap in IPX I-PEX U.FL wikipedia very tiny, mostly used on little pc board connections, surface mounted, snap on For antennas, you could do an internet search with keywords: "868 MHz antenna" Also YouTube is a nice source for searching all these terms LoRa module video on YouTube at 2:00 minutes it shows internally U.FL connectors, and externally MCX if I am not mistaken
  • 0 Votes
    2 Posts
    3k Views
    E
    @sippanan_p It seems that your band frequency is OK for US, so do not worry about setting the RX window? Maybe not able to join has another cause?
  • OLED Module with CORE2-AWS fonts/text/libraries for micropython

    3
    0 Votes
    3 Posts
    4k Views
    D
    @ajb2k3 Good to know. Thanks!
  • 0 Votes
    5 Posts
    7k Views
    K
    Would love to know if there is a fix to have this work with the core2. I just purchased a core2 and the driver module, just found your post after many failed attempts with the same error you got.
  • 4in8out help

    3
    0 Votes
    3 Posts
    3k Views
    M
    Hi. Excuse me I checked the documentation and also the github of M5Stack and I couldn't find the "MODULE_4IN8OUT.h" library can you provide me with the URL of the Library plss. Thanks
  • AWS IoT Core with NB-IoT Module

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Best module for controlling a 2-wire linear actuator

    5
    0 Votes
    5 Posts
    5k Views
    J
    For anyone finding this. I contacted M5 and they suggested the odrive module, but that's currently out of stock. I've moved on to trying to use either a stepper motor or a servo for my application and I think I can make them work.
  • M5stack core2 control 12 channel Servo module

    12
    0 Votes
    12 Posts
    13k Views
    L
    @lishengkkk [image: 1669725914814-fbaad8a0-e3c8-43d4-8534-c63e11b13031-image-resized.png]
  • Thermal unit MLX90640 with Core2

    9
    0 Votes
    9 Posts
    16k Views
    W
    Bump. Me too! I can't find an M5 copy of MLX90640_API.cpp and MLX90640_I2C_Driver.cpp. After commenting out calls to MLX90640_BadPixelsCorrection() I tried using Sparkfun's version, but the .ino file has calls to interpolate_image() and get_point() which the Sparkfun library does not have. I tried using Blockly but the data returned by the calls to unit.get(unit.THERMAL, unit.PORTA) objects return garbage data. Well, not quite garbage - it's data but it is not corrected and interleaved in a way I can figure out. Micropython might be a better bet but I don't know how to get the Unit libraries. I don't have a spare Arduino to test on either.
  • UHF-RFID M5Stack Current and Power consumption

    2
    0 Votes
    2 Posts
    3k Views
    K
    @jptalledo I have noticed it drains the battery of the M5Paper quite quickly. I have not tested that specifically as it was not a requirement for my project. The range is quite good at 50-70 cm. I think there is a way to change the power and read strength, though I have not investigated too deeply. I am using other methods to alter read time. When I get to a stable point I will refine some more.
  • atom motion with micropython

    atom motion micropython
    2
    0 Votes
    2 Posts
    4k Views
    felmueF
    Hello @thop in UIFlow online check out Base - Motion. On the Python tab you'll see how to use it with MicroPython. Thanks Felix
  • 0 Votes
    2 Posts
    4k Views
    teastainT
    Yes, you would send position or speed values to each channel. There should be an example in the documents. If I misunderstand let me know and I will research further. Arduino IDE, no problem, and I’m sure it is facilitated in UIFlow.
  • POE camera

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • [SOLVED] M5GO BOTTOM2 (For CORE2 only) - LEDBar not working on Core2

    6
    0 Votes
    6 Posts
    7k Views
    C
    It seems that FastLED.h lack of some developper to get it working properly on ESP32 now. I jumped to AdaFruit NeoPixel lib and run this sketch successfully using your PIN values. #include <M5Core2.h> #include <Adafruit_NeoPixel.h> #define LEDBAR_PXL 10 #define LEDBAR_PIN 25 Adafruit_NeoPixel ledBar(LEDBAR_PXL, LEDBAR_PIN, NEO_GRB + NEO_KHZ800); void setup() { M5.begin(); // put your setup code here, to run once: ledBar.begin(); ledBar.show(); } void loop() { // put your main code here, to run repeatedly: ledBar.fill(0xFF0000); ledBar.show(); delay(750); ledBar.fill(0x000000); ledBar.show(); delay(500); }
  • COM.GSM Module

    gsm sim899
    2
    0 Votes
    2 Posts
    3k Views
    felmueF
    Hello @jorge5a the COM.GSM can only operate with 2G networks. Are you sure in your region 2G is still operational? The fact that the SIMs work in a smartphone doesn't automatically mean they work in the COM.GSM as the smartphone could connect using something else than 2G. That said you can try the following command. This will tell you if the modem has registered with a provider. AT+COPS? +COPS=0 // auto mode not registered +COPS=1 // manual mode not registered +COPS: 0,0,"CHINA MOBILE" // auto mode registered Or try to get a list of available providers. AT+COPS=? +COPS: (1,"Sunrise","Sunrise","22802",0),,(0,1,2,3,4),(0,1,2) Note: this command can take a long time and sometimes you need to issue it multiple times to get a result. Thanks Felix
  • PortA i2c unit not recognized in Core2 when stacked onto Servo2?

    6
    0 Votes
    6 Posts
    7k Views
    felmueF
    Hello @swiminthesky no worries. Thank you for reporting back. I am glad it now works for you. Thanks Felix
  • M5Stamp Extend I/O Module SMT assembly

    4
    0 Votes
    4 Posts
    5k Views
    V
    Thanks @teastain, @HWTaro9 but I'm especially looking for pcb footprint data like pad sizes and spacings to start with the pcb design.