🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • Using 2 ToF4M Units as a Timing Gate

    Arduino
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Arduino & TimerCameraX - webcam examples just don't work

    Arduino
    4
    0 Votes
    4 Posts
    3k Views
    felmueF
    Hello @jarkman I am afraid I am out of ideas at this point in time. Sorry. Thanks Felix
  • M5Dial Maximum Program Space

    Arduino
    2
    0 Votes
    2 Posts
    2k Views
    gordshG
    OK, I figured this out. Turns out my Arduino [Partition Scheme] setting was incorrect. I had a setting of [Default 4MB with spiffs (1.2MB APP/1.5mn SPIFFS] instead of.... [8M with spiffs (3MB APP/1.5MB SPIFFs] Now after the sketch upload, I get Sketch uses 1265261 bytes (37%) of program storage space. Maximum is 3342336 bytes.
  • Serial trouble at startup with TimerCamX and Arduino

    Arduino arduino
    1
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    4 Posts
    4k Views
    LukeSL
    Thanks guys adding the build flags fixed the blank serial terminal in PlatformIO.
  • Arduino IDE 2.3.2 M5Stamp C3, M5Unified ping time out

    Arduino
    6
    0 Votes
    6 Posts
    4k Views
    felmueF
    Hello @HappyUser it is correct that M5StampC3 is supported by M5Unified library, but I can confirm that the library currently doesn't compile due to errors in Mic_Class.cpp and Power_Class.cpp. I suspect that since there isn't much to gain from using a library like M5Unified for a stamp product (as @teastain already mentioned), M5Stack engineers aren't that alert in keeping the library updated. Thanks Felix
  • M5StickC Plus 2 Official Arduino Samples Not Working (SOLVED)

    Arduino
    4
    0 Votes
    4 Posts
    4k Views
    B
    @robski said in M5StickC Plus 2 Official Arduino Samples Not Working: does your stick loads ok with latest M5Burner firmware? Is user demo from M5Burner works? I can confirm that arduino M5stickCplus2 examples do work as had them in recently. Display, IR, Rtc, Battery, IMU, I've used Arduino 2.3.2, be sure you pick M5Stick Plus2 The two official images "M5stickCplus2 UserDemo V.0.1" and "UIFlow_StickC_Plus2 V.1.13.2" work correctly. I have also tried other custom images dedicated to the Plus 2, but the only one that boots correctly is Marauder. All sketches executed from Arduino 2 do not boot, and the screen does not turn on. I suspected some power management issue or something related to the LED, but I cannot explain why the demo is working in that case. I downloaded the latest M5Burner tool. What you mean with M5Burner firmware?
  • M5 AtomS3 Lite And Arduino Serial Monitor

    Arduino
    3
    0 Votes
    3 Posts
    3k Views
    A
    @felmue thank you for making me aware of that thread! The information contained within worked like a charm!
  • Core1 LCD -- get text height

    Arduino
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    2 Posts
    3k Views
    P
    @lukes said in C++ syntax question - Defining an object in a class that requires arguments?: HardwareSerial Maybe this solves your problem ... class StaticClass { private: int myContent; public: StaticClass(int v){myContent = v;} void printout(){printf("%d\n",myContent);} }; class TestClass { public: //StaticClass myClass = StaticClass(42); // With C11 StaticClass myClass; TestClass() : myClass(42) { } void doit() { myClass.printout(); } }; int main(void) { TestClass tc; tc.doit(); }
  • M5Dial's External Port A I2C Capability or Lack Thereof

    Arduino
    13
    0 Votes
    13 Posts
    9k Views
    teastainT
    @abraxas My Pleasure! -Terry
  • StampS3 in PlatformIO - Why are not all GPIO pins enumerated?

    Arduino
    2
    0 Votes
    2 Posts
    2k Views
    teastainT
    @brainzilla I am not familiar with Platfomio, but the info you need is here: https://docs.m5stack.com/en/core/M5StampS3 PIN1.27
  • Gamepad bi-directional data transfer

    Arduino
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Timer Camera X with RTC

    Arduino
    4
    0 Votes
    4 Posts
    3k Views
    felmueF
    Hello guys please see my comment here for a possible explanation and solution. Thanks Felix
  • M5stickcplus2 power off button, with B button.

    Arduino
    3
    0 Votes
    3 Posts
    2k Views
    P
    Thank you. your help was very precious. now it works great.
  • 0 Votes
    2 Posts
    3k Views
    felmueF
    Hello @LukeS I don't think the RGB LED has been integrated into M5Unified library for M5AtomLite. Even for M5AtomS3 the code for the RGB LED is kind of outside M5Unified library, e.g. in utility/LedDisplay.c. All I can find in M5Unified is the GPIO definition for the RGB LED for different M5Stack devices. However I don't think they are used. For M5AtomLite the RGB LED GPIO is (re-)defined and used from here. And for M5AtomS3 it is (re-)defined and used from here. Thanks Felix
  • Timer Camera X with Fingerprint FPC1020A

    Arduino
    7
    0 Votes
    7 Posts
    4k Views
    L
    and when I try to test 100x by putting my finger... I have Add user result: 0 but the chance is 1/100. So could it be the fingerprint unit is broken? User added successfully! RxBuf[0]: F5 RxBuf[1]: 3 RxBuf[2]: 0 RxBuf[3]: 0 RxBuf[4]: 0 RxBuf[5]: 0 RxBuf[6]: 3 RxBuf[7]: F5 RxBuf[8]: 0 1
  • Enter numerical 6 digital value m5paper

    Arduino
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • M5StickC Plus 2 problem

    Arduino
    8
    0 Votes
    8 Posts
    5k Views
    teastainT
    @lukevancelave The rtc (Real Time Clock) demo is very good and you can modify it as you like or use it as an example for your unique project. see here! https://github.com/m5stack/M5StickCPlus2/blob/master/examples/Basic/rtc/rtc.ino
  • Modification of the M5Stack library for Arduino

    Arduino
    5
    0 Votes
    5 Posts
    4k Views
    B
    I already tried but without any results, i have a ST7789V, with the TFT_SPI library it works well but not with the M5Stack library....