Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. m5-docs
    • Continue chat with m5-docs
    • Start new chat with m5-docs
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    m5-docs

    @m5-docs

    20
    Reputation
    294
    Posts
    3820
    Profile views
    2
    Followers
    7
    Following
    Joined Last Online
    Website docs.m5stack.com

    m5-docs Follow

    Posts made by m5-docs

    • RE: [Solved] M5 Burner Firmware Option Update

      @gachapo What log information did your device print?
      0_1557470774859_微信截图_20190510144517.png

      posted in SOFTWARE
      m5-docs
    • RE: M5stack basic core battery power on issue (ip5306 strange power management)

      @arzaman Thanks. Your seriousness really touched me.

      posted in Cores
      m5-docs
    • RE: M5stack basic core battery power on issue (ip5306 strange power management)

      @arzaman The IP5306 which is iic version is customized. The best way for you is to ask saler for a replacement or ask our saler for a new core or iic version IP5306. Sorry for the inconvenience !

      posted in Cores
      m5-docs
    • RE: [Solved]How to use interruption processing in m5stack

      Hello @tkb-koki,

      How about this example code?

      https://github.com/futureshocked/ESP32-For-Busy-People-1/blob/9ede724a862539ae18aad1500426ceb4415d5052/04-070_Interrupt_with_button_and_led/04-070_Interrupt_with_button_and_led.ino

      posted in Cores
      m5-docs
    • RE: M5stack basic core battery power on issue (ip5306 strange power management)

      @arzaman Really sorry about that. I do not clearly know your problem.

      "-if I disconnect USB using core bottom battery the core stays on and I can do reset with power on again
      -if I power off (double click) no change to power on again"

      posted in Cores
      m5-docs
    • RE: [Solved] M5 Burner Firmware Option Update

      Hello @gachapo

      You can download the following example code for your board.

      https://github.com/m5stack/Applications-cam

      That's the configuration for B Model.

      #define PWDN_GPIO_NUM     -1
      #define RESET_GPIO_NUM    15
      #define XCLK_GPIO_NUM     27
      #define SIOD_GPIO_NUM     22
      #define SIOC_GPIO_NUM     23
      
      #define Y9_GPIO_NUM       19
      #define Y8_GPIO_NUM       36
      #define Y7_GPIO_NUM       18
      #define Y6_GPIO_NUM       39
      #define Y5_GPIO_NUM        5
      #define Y4_GPIO_NUM       34
      #define Y3_GPIO_NUM       35
      #define Y2_GPIO_NUM       32
      #define VSYNC_GPIO_NUM    25
      #define HREF_GPIO_NUM     26
      #define PCLK_GPIO_NUM     21
      
      posted in SOFTWARE
      m5-docs
    • RE: [Solved]sleep mode on MircoPython?

      Hello @akita11

      Which version are you using? Here's mine.
      0_1557372238970_微信图片_20190509112151.png

      posted in Micropython
      m5-docs
    • RE: M5stack basic core battery power on issue (ip5306 strange power management)

      Hello @arzaman, In order to confirm that if the IP5306 is IIC version on all CORE you have. It's better to download the following testing code.

      https://github.com/m5stack/M5Stack/tree/master/examples/Advanced/I2C_Tester

      posted in Cores
      m5-docs
    • RE: [Solved]How to use interruption processing in m5stack

      @tkb-koki multi-Progress?

      posted in Cores
      m5-docs
    • RE: [Solved]How to use interruption processing in m5stack

      @tkb-koki Do you means how to use BUTTON on M5Stack Core?

      If I am right, you can refer to the code blow.

      https://github.com/m5stack/M5Stack/tree/master/examples/Basics

      /*
          Name:       button.ino
          Created:    2018/9/21 14:06:15
          Author:     sakabin
      */
      
      #include <M5Stack.h>
      // The setup() function runs once each time the micro-controller starts
      void setup() {
        // init lcd, serial, but don't init sd card
        M5.begin(true, false, true);
        M5.Lcd.clear(BLACK);
        M5.Lcd.setTextColor(YELLOW);
        M5.Lcd.setTextSize(2);
        M5.Lcd.setCursor(65, 10);
        M5.Lcd.println("Button example");
        M5.Lcd.setCursor(3, 35);
        M5.Lcd.println("Press button B for 700ms");
        M5.Lcd.println("to clear screen.");
        M5.Lcd.setTextColor(RED);
      }
      
      // Add the main program code into the continuous loop() function
      void loop() {
        M5.update();
       
        // if you want to use Releasefor("was released for"), use .wasReleasefor(int time) below
        if (M5.BtnA.wasReleased()) {
          M5.Lcd.print('A');
        } else if (M5.BtnB.wasReleased()) {
          M5.Lcd.print('B');
        } else if (M5.BtnC.wasReleased()) {
          M5.Lcd.print('C');
        } else if (M5.BtnB.wasReleasefor(700)) {
          M5.Lcd.clear(BLACK);
          M5.Lcd.setCursor(0, 0);
        }
      }
      © 2019 GitHub, In
      
      posted in Cores
      m5-docs