Git Product home page Git Product logo

Comments (4)

greiman avatar greiman commented on May 18, 2024

The SSD1306 has no clear command so a 128x32 display requires writing 512 bytes to display memory.

This take about 24 ms with 400 kHz I2C so your program shows extreme flickering.

The SSD1306 runs at a fairly slow refresh rate so this contributes to the flicker.

from ssd1306ascii.

greiman avatar greiman commented on May 18, 2024

I tried a SPI 128x32 display. It does a clear in about 4 ms. I use 8 MHz SPI clock.

Flicker is much better. This loop is fairly good with the 10 ms delay.

void loop() {
    oled.clear(); 
    oled.print("flicker");
    delay(10);
  }

from ssd1306ascii.

sergevm1 avatar sergevm1 commented on May 18, 2024

I have the same issue. Adafruit library doesn't have flickering at all. At they write to some buffer (I guess) and then show the updated screen by the display() command.
I liked this library for its very small amount of consumed memory. But with this issue I don't see a way to use it in practice.

from ssd1306ascii.

greiman avatar greiman commented on May 18, 2024

Clearing the entire display causes flickering.

This is why the Adafruit library has less flicker. The Adafruit library doesn't clear areas that have not changed, it rewrites these areas with the same data.

If you selectively rewrite only areas that are modified there will be less flickering.

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.