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

    Accessing second UART on M5Stamp-PICO

    Arduino
    2
    3
    4.0k
    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.
    • D
      didier9
      last edited by

      Is there a way to access a second hardware UART on the M5Stamp-PICO?
      I do not need the SPI port but I do need the UART (and I2C) and uploading code while also using the UART in the application is really inconvenient.
      Any help appreciated.

      www.ko4bb.com

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

        Hello @didier9

        for UART you should be able to use any available GPIO for RX and TX like this:

        Serial2.begin(115200, SERIAL_8N1, <RX>, <TX>);
        

        for I2C you should be able to use any available GPIO for SDA and SCL like this:

        Wire.begin(<SDA>, <SCL>);
        

        Thanks
        Felix

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

        1 Reply Last reply Reply Quote 0
        • D
          didier9
          last edited by

          Hi Felix,
          Sorry for the delay... my STAMP_PICO project was momentarily shelved but I just resurrected it and found your response.
          I will definitely try your suggestion since I would like to keep the native port to flash but I need another UART.
          Thank you!

          www.ko4bb.com

          1 Reply Last reply Reply Quote 0
          • First post
            Last post