Navigation

    LILYGO

    • Register
    • Login
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. pike2k
    3. Topics
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Best 0
    • Groups 0

    Topics created by pike2k

    • P

      T4-S3 (H678) VBUS question
      Technical Discussion • • pike2k

      1
      0
      Votes
      1
      Posts
      137
      Views

      No one has replied

    • P

      S3 Amoled Touch, available GPIOs?
      Product information • • pike2k

      2
      0
      Votes
      2
      Posts
      363
      Views

      P

      I have managed to "unconfuse" myself 😊 regarding my last point about Lilygo's labelling of pins.

      Somehow my brain made a connection between physical pin number on PCB and GPIO. It seemed incorrect that they were identical.
      I see my mistake now.

      But the other questions remain. I accidentally ordered the version without soldered pins, so it's a bit difficult for me to test if all GPIO's on PCB are available for us.

    • P

      S3 Amoled Touch, H681 different board layout
      Product information • • pike2k

      7
      0
      Votes
      7
      Posts
      687
      Views

      teastain2

      @pike2k It was worse a year ago, I had to make my own LilyGO T-Display S3 (not AMOLED) GitHub repository to help people once I got it figured out.
      The one on the left of the schematic image that I sent you is
      U0RXD = SCL (GPIO 44) (The 'U' stands for Universal)
      U0TXD = SDA (GPIO 43) use Wire.begin(43, 44);

      The other connector is marked correctly.
      It might have been added as an after thought because the ancient but very common Dallas Semiconductor DS18B20 won't run from the GPIO pins 43 or 44.
      ESP32 S3 can use almost any pins for almost any function .
      But when setting up I2C you have to call Wire.begin(3, 2);
      Or whatever pins you want, within reason. (There is a complicated datasheet for the ESP32 S3 and it points out the only no-no's.)
      -Terry