Display SSD1306 for ESP32
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.0 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. # Readme
  2. # Basic Instructions of Repository DisplayESP32
  3. **This repository aims to provide some functions for creating a user interface for the display
  4. Adafruit SSD1306 on microcontroller ESP32.**
  5. For such, new classes are implemented, which are included in the *.ino* code included in this repo.
  6. ## To begin with
  7. To be able to use this repository, it's important to first connect the display to the
  8. microcontroller correctly. The following diagram shows how it should be done when using an ESP32-WROOM board.
  9. ![Connection diagram used for DisplayESP32 repository!](Connection Diagram_UI.png "Connection diagram")
  10. It is possible to see that the display used in this project uses I2C protocol, thus only two pins are needed to allow
  11. communication with the microcontroller.
  12. On the other hand, the keyboard uses one pin for each button (configured as Pull up), and a connection to Ground.
  13. ## Classes
  14. In this section, the created classes are discussed, to better understand how each of them works.
  15. ### Option class