Giter Site home page Giter Site logo

esp32-sh1106-oled's Introduction

esp32-sh1106-oled's People

Contributors

nhatuan84 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

esp32-sh1106-oled's Issues

Hard coded SPI instance

As the ESP32 has a pin multiplexer, can you possibly modify the library so a reference to an SPIClass instance can be passed in the constructor, and that reference is used thereafter?

The ESP32 Arduino libraries (lamely) declare SPIClass SPI(VSPI); at the end of SPI.cpp.
If you want to use another SPI peripheral or pin location, you are hamstrung into using VSPI on the associated pins, whether you like it or not :-( (another issue for that library really!).

Hardware SPI: unintialised "sid" member variable

If an instance is created using the Adafruit_SH1106(int8_t DC, int8_t RST, int8_t CS) constructor, sid is not explicitly set to anything other than -1.

This means in begin() the code to setup the SPI pins may be skipped over if "sid" just happens to be -1!

Suggested fix:
// constructor for hardware SPI - we indicate DataCommand, ChipSelect, Reset
Adafruit_SH1106::Adafruit_SH1106(int8_t DC, int8_t RST, int8_t CS) : Adafruit_GFX(SH1106_LCDWIDTH, SH1106_LCDHEIGHT) {
dc = DC;
rst = RST;
cs = CS;
sid = 0; // BUG FIX - WAS MISSING!
hwSPI = true;
}

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.