🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    10 Views
    No one has replied
  • Doesn't UIflow support min function for Stick C plus?

    2
    0 Votes
    2 Posts
    4k Views
    S
    I mean mic function not min.
  • M5StickC Plus - detect power button momentary press?

    2
    0 Votes
    2 Posts
    5k Views
    felmueF
    Hello @bazman according to the schematic the power button only is connected to the AXP192 and not to an ESP32 GPIO as are buttons A and B. Luckily the AXP192 can be setup to detect the power button short / long press via interrupt. Checkout the AXP192 datasheet - you can find it here. The AXP192 registers dealing with short / long power button press interrupts are 0x42 (IRQ enable 3) and 0x46 (IRQ status 3). Thanks Felix
  • StickC reboots when sending message via esp-now. [solved]

    3
    0 Votes
    3 Posts
    6k Views
    B
    @felmue Thank you very much for the solution and the explanation. It now works,
  • 0 Votes
    2 Posts
    5k Views
    felmueF
    Hello @Notabug have you tried SPIFFS? You can find an example here. Thanks Felix
  • Interrupt on-board MPU6886

    3
    0 Votes
    3 Posts
    4k Views
    L
    Thank you. I will try to adapt this to my project.
  • issue compiling m5stickc joyc.ino in arduino.

    5
    0 Votes
    5 Posts
    11k Views
    S
    @m5stack Any idea when that engineer will add I2C to the M5StickC Plus? I just added it to my own copy and it only took 15 minutes. It'd make a lot more M5StickC programs compatible with the Plus too!
  • M5stick C and TimerX camera drivers issues

    2
    0 Votes
    2 Posts
    3k Views
    m5stackM
    Your PC can't identify the device COM? or just can't upload the program? could you say more detail? https://docs.m5stack.com/en/unit/timercam_x [image: 1632622650371-ca7be514-895c-4f29-b4a5-948d9910c0cb-image-resized.png]
  • Neoflash HAT

    2
    0 Votes
    2 Posts
    5k Views
    S
    A year ago? It looks to me like you have a duff RGB panel. Did you ever get it swapped?
  • M5Stick-C: How to set low-power mode on MPU6886?

    2
    0 Votes
    2 Posts
    4k Views
    S
    Maybe with the ULP? I want some similar but with the I2C hat env2...
  • M5stickC turn on when connect Type-C USB with power (How to disable?)

    4
    0 Votes
    4 Posts
    6k Views
    E
    Don't know if still relevant, but you can just power it off if you see it was plugged in. I attach a basic code here, and you can tweak it to your needs of course. Be aware that you might need to use a small delay before M5.Axp.GetVBusVoltage() will give you a result you can trust. //function which reads the voltage coming out of the USB, and if it's above 4.1 I know the device is being charged. bool isBeingCharged() { float charge = M5.Axp.GetVBusVoltage(); //Serial.println(charge); return charge > 4.1; } //check here of anywhere you want in the code if the device is being charged, and power it off. void setup() { if (isBeingCharged()) { M5.Axp.PowerOff(); } }
  • How to replace the battery (disassembly without destruction?)

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • m5stickC plus No Sound/Beep

    2
    0 Votes
    2 Posts
    6k Views
    world101W
    @ganeyvim Works for me. Tested originally on uiFlow v1.7.8 and also flashed my M5StickCPlus to the latest v1.8.2. Both tone and beep are working quite well. Yours might be hardware related. [image: 1629134271984-screen-shot-2021-08-16-at-1.17.10-pm-resized.png]
  • M5StickC - MQTT - Firewall

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Connect FPC1020A to StickCPlus

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Wake up using button A or button b

    3
    0 Votes
    3 Posts
    5k Views
    I
    thanks, I think it's the only solution ;)
  • Cannot use Wifi

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • M5StickCPlus No Sound from Internal Buzzer

    3
    1
    0 Votes
    3 Posts
    7k Views
    world101W
    @se Here is a project I built with the M5StickCPlus that uses the buzzer. https://github.com/bstein2379/M5StickC-Plus-Ringtone-Jukebox I set freq=100 and duty=0
  • Charge battery on 8Servos HAT ?

    5
    0 Votes
    5 Posts
    7k Views
    A
    @m5stack Thanks ;-)
  • [Solved]M5StickC and colour images

    10
    0 Votes
    10 Posts
    17k Views
    A
    As Google has led me here, I'd like to answer this question. an image file needs to be converted to a C file using RGB565 little endian. To do this you have two options: use the web tool at https://lang-ship.com/tools/image2data/ to convert the image use your favorite programming language to dump it