-
-
Notifications
You must be signed in to change notification settings - Fork 26
gdey0213b74 122x250 4 gray
Martin F edited this page Mar 18, 2023
·
1 revision
- Size: 122 * 250, 2.13 inches
- Controller: SSD1680Z
- 4 gray mode: Implemented. Use setMonoMode(false) to check it out
- Partial update: works but needs to be adjusted. Is being executed at the moment in a place in RAM that is 50px below expected, making a copy of the contents above (Don't use for now)
- RES value: 3 Ω
Note that new models that are added from Good-Display.com will be now entitled Good-Display in the Wiki to put them in a closer place in the menu.
Still being implemented. Thanks Good-Display for the assistance on this! https://user-images.githubusercontent.com/2692928/198814097-cbae348b-2a68-4aa3-af7d-4da928867a7c.MOV
#include "goodisplay/gdey0213b74.h"
// FONT Adafruit GFX - Only after display library
#include <Fonts/ubuntu/Ubuntu_M12pt8b.h>
EpdSpi io;
gdey0213b74 display(io);
void app_main()
{
display.init();
display.setCursor(4, 10);
display.setTextColor(EPD_BLACK);
display.setFont(&Ubuntu_M12pt8b);
display.println("Hello GitHub");
display.update();
// Add a 4 Gray demo
display.setMonoMode(false); // 4 grays slower update
uint8_t xCircle = display.width()/2;
display.fillScreen(EPD_WHITE);
display.fillCircle(xCircle,31, 30, EPD_DARKGREY);
display.fillCircle(xCircle,81, 30, EPD_LIGHTGREY);
display.fillCircle(xCircle,121, 30, EPD_BLACK);
display.fillCircle(xCircle,171, 30, EPD_WHITE);
display.setCursor(4, 140);
display.setTextColor(EPD_LIGHTGREY);
display.println("4 GRAY");
display.update();
}
Revision v.1.3 | Firmware for ESP-IDF >= v. 4.3 Documentation written by Fasani Corp.
We are also launching a new company called Marespa.es that will help EU citizens find an affordable apartment in Spain. With the price of Rent going through the roof in 2024, this might be the moment to make an investment, if you plan to work from the spanish coast. With this project we are also supporting our open source projects.