-
-
Notifications
You must be signed in to change notification settings - Fork 26
gdew0583z21 600x448 B|R
- Size: 600 * 448 Colors: B/W/RED
- Manufacturer: Good display
- Inches: 5.83
- Controller: IL0371
- Status: Implemented. Tests passed (merged in master)
- Partial update: Not supported by the controller (Most color epapers do not support partial refresh)
Statistics in milliseconds with SPI clocked at 4 Mhz and ESP32 at max CPU speed:
2334 _wakeUp settings+send Buffer
2003 update
4338 total time in millis
Takes less than 3 seconds to send the data and 2 seconds more waiting for BUSY till the update is released. This display uses a special function that is called _send8pixel and per SPI IO.data(2 pixels per byte) in 4 rounds per byte which makes this class a bit slower than the others.
Each pixel has 4 bits. A transaction sends one byte with 2 pixels at a time until reaches the end of the buffer. Note that small ¹ is used only to mark where each pixel starts.
Ex1: Two white pixels
|¹ 0|² 0| 1 | 1|¹ 0|² 0| 1 | 1|
0x03 | 0x03 2 white pixels will set this byte to 0x33
00110011 Byte (51 in decimal)
Ex2: Two red pixels
|¹ 0|² 1| 0 | 0|¹ 0|² 1| 0 | 0|
0x04 | 0x04 2 red pixels will set this byte to 0x44
01000100 Byte (68)
Ex3: One white and a second red pixel
|¹ 0|² 0| 1 | 1|¹ 0|² 1| 0 | 0|
0x03 | 0x04 will set the byte to 0x34
00110100 Byte (52)
Color index:
0x00 Black
0x03 White
0x04 Red
To test it, in your C++ example of choice:
#include <gdew0583z21.h>
#include <Fonts/FreeSerif12pt7b.h> // Optionally include a font from Adafruit GFX
EpdSpi io;
Gdew0583z21 display(io);
void app_main(void)
{
display.init(true); // Activate debug
display.setRotation(0); // Optionally change rotation
display.setTextColor(EPD_RED);
// Draw a line of 2 pix height
for (int i = 0; i < display.width(); i++) {
display.drawPixel(i,10,EPD_BLACK);
display.drawPixel(i,11,EPD_BLACK);
}
// Write something
display.setCursor(10,100);
display.setFont(&FreeSerif12pt7b);
display.println("CalEPD the epaper component you can trust");
// Type display.* to discover more of the inherited GFX functions fillCircle, fillTriangle, etc
}
Preview of housing 3D printed for this display More pictures of the 5.83" epaper display
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.