🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Drawing random PNG images from SD problem

    Scheduled Pinned Locked Moved SOFTWARE
    4 Posts 2 Posters 8.6k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A Offline
      AndyT
      last edited by

      How do i get this code to work
      this works :
      M5.Lcd.drawPngFile(SD,"/Image8.PNG", 0, 0); // display splash screen
      but
      M5.Lcd.drawPngFile(SD,PngName, 0, 0); // display splash screen
      does not in code below.
      I want to generate a random slide show

         int Arand=random(11);
        String PngName="/Image"+ String (Arand)+".PNG";
        Serial.println (PngName);
         M5.Lcd.drawPngFile(SD,(PngName), 0, 0); // display splash screen
      
      1 Reply Last reply Reply Quote 0
      • felmueF Offline
        felmue
        last edited by

        Hi @AndyT

        AFAIK drawPngFile() expects a pointer to a character array as path name and not a String. Just curious, does your code compile w/o error?

        I think something like this should work:

        M5.Lcd.drawPngFile(SD, PngName.c_str(), 0, 0);
        

        Thanks
        Felix

        GPIO translation table M5Stack / M5Core2
        Information about various M5Stack products.
        Code examples

        1 Reply Last reply Reply Quote 0
        • A Offline
          AndyT
          last edited by

          Cheers Felix,
          No it did not compile without errors before. But adding .c.str() solved it .
          Thank you again

          1 Reply Last reply Reply Quote 0
          • felmueF Offline
            felmue
            last edited by

            Hello @AndyT

            you are welcome. Glad to hear it works now.

            Cheers
            Felix

            GPIO translation table M5Stack / M5Core2
            Information about various M5Stack products.
            Code examples

            1 Reply Last reply Reply Quote 0

            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

            With your input, this post could be even better 💗

            Register Login
            • First post
              Last post