Git Product home page Git Product logo

Comments (4)

greiman avatar greiman commented on June 16, 2024

Looks like the default I2C pins are used internally on ESP32-Cam. You can select alternate pins with bool begin(int sda=-1, int scl=-1, uint32_t frequency=0); .

Try changing this:

SSD1306AsciiWire oled;

void setup() {
  Wire.begin();
  Wire.setClock(400000L);

To:

SSD1306AsciiWire oled;

// select your pin choice here
#define I2C_SDA 14
#define I2C_SCL 15

void setup() {
  Wire.begin(I2C_SDA , I2C_SCL , 400000L);

The ESP32 has two I2C ports.

You can use the second port like this

SSD1306AsciiWire oled(Wire1);

// select your pin choice here
#define I2C_SDA 14
#define I2C_SCL 15

void setup() {
  Wire1.begin(I2C_SDA , I2C_SCL , 400000L);

I compiled the above but didn't test them on an ESP32. Let me know if this works. Its been years since I used an alternate port.

from ssd1306ascii.

GigiG62 avatar GigiG62 commented on June 16, 2024

It works just fine! Thanks Bill. For my project, the ESP32-Cam pins are all used (Camera, SD and two external sensors) so I set the only two remaining free pins, RX and TX (1 and 3 on ESP32), as SDA and SCL. After uploading the firmware to the board, they can be used as I2C pins. Thanks again.

from ssd1306ascii.

GigiG62 avatar GigiG62 commented on June 16, 2024

Is it possible to use a 128x128 OLED like this?

from ssd1306ascii.

greiman avatar greiman commented on June 16, 2024

No the SD1306 controller only supports up to 128x64.

from ssd1306ascii.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.