Navigation

    M5Stack Community

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

    bobmixon

    @bobmixon

    I am a father, maker, software engineer and cook. For work, I am a Senior Office 365/SharePoint Architect.
    #Office365 #SharePoint #Maker #IoT

    0
    Reputation
    2
    Posts
    1412
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online
    Website bobmixon.com

    bobmixon Follow

    Posts made by bobmixon

    • Header and Buttons Only

      Greetings,

      First and foremost, thank you Rop for writing this library, saved me a ton of time.

      I'm currently working on a M5Stack Gray application and want only the header, and a couple buttons; I'll add task code (yield) or interrupts later. I first want to get the UI working.

      I have no issues getting the header to display as I wish.
      I have no problems getting the buttons to display.

      However, I am not able to read the buttons. Calling the ez.buttons.poll() in my loop does not ever return any key pressed.

      Can you please show me an example of just a header, buttons and a means of retrieving the pressed button.

      Thank you!

      posted in M5EZ
      bobmixon
    • M5Stack Fire LCD Issues

      Greetings,

      I have an M5Stack Fire. I have the ESP32 connected to OpenWeather API without issues. As soon as I attempt to do anything with the LCD, the code locks up. Here is the setup code:

      *void setup()
      {
      Serial.begin(115200);

      // Initialize the M5.
      M5.Power.begin();
      M5.begin();

      //M5.Lcd.setBrightness(100);

      // Initialize the WiFi.
      WiFi.begin(ssid, password);

      while (WiFi.status() != WL_CONNECTED)
      {
      delay(1000);
      Serial.println("Connecting to WiFi..");
      }

      Serial.println("Connected to the WiFi network");
      delay(10000);
      }*

      The line commented out is causing the issue. If I un-comment it, the ESP32 will freeze.

      Thoughts on what I'm doing wrong?

      Thank you!

      posted in SOFTWARE
      bobmixon