Partial Updates
Instead of inkplate.update()
, you can use inkplate.partialUpdate()
for a faster display refresh. This prevents full-screen flickering, updating only the pixels that have changed in the frame buffer.
Partial Update
Partial updates in black-and-white (1-bit) mode offer the fastest e-Paper update available on Inkplate.
inkplate.setFullUpdateTreshold()
to automate this process.// Include Inkplate Motion library
#include <InkplateMotion.h>
Inkplate inkplate; // Create Inkplate object
void setup()
{
inkplate.begin(INKPLATE_BLACKWHITE); // Initialize Inkplate in black and white mode
// Set text options
inkplate.setTextSize(3);
inkplate.setTextColor(BLACK);
inkplate.setTextWrap(false);
// Set full update threshold
inkplate.setFullUpdateTreshold(40);
// This means a full update will occur after every 40 partial updates
}
void loop()
{
// Scroll text from left to right with partial updates
int x = -500; // Start from the left of the screen border
while (x < 1024)
{
inkplate.clearDisplay();
inkplate.setCursor(x, 300); // Set cursor position
inkplate.print("Partial updates!"); // Print scrolling text
inkplate.partialUpdate(true); // Perform a partial update
x += 15; // Move 15 pixels to the right
}
inkplate.display(); // Perform a full update
delay(1000); // Pause before next update
}
inkplate.partialUpdate()
Performs a partial (fast) update on Inkplate, refreshing only changed pixels to prevent full-screen flickering.
Returns: None
Function parameters:
Type | Name | Description |
---|---|---|
uint8_t | _leaveOn | Optional. If set to 1, the e-Paper power supply remains on after the update. This speeds up consecutive partial updates but requires a full refresh afterward to prevent prolonged power draw. |
inkplate.setFullUpdateTreshold()
Sets the number of partial updates after which a full update is automatically performed.
Returns: None
Function parameters:
Type | Name | Description |
---|---|---|
uint16_t | _numberOfPartialUpdates | The number of partial updates before a full update (inkplate.display()) is triggered automatically. |
Drawing Fast Bitmaps
For the fastest bitmap rendering on Inkplate 6 MOTION, use drawBitmapFast
. To convert images for displaying with this function, use the Soldered Image Converter. For the moment, this function supports only bitmaps size 1024x758px.
This efficiently fills the framebuffer with the provided bitmap data:
inkplate.drawBitmapFast(&imageFrame);
inkplate.drawBitmapFast()
Draws a full-screen bitmap onto the framebuffer as quickly as possible. This function is optimized for high-speed rendering, particularly for 1-bit partial updates.
Returns: None
Function parameters:
Type | Name | Description |
---|---|---|
const uint8_t * | _p | Pointer to the image bitmap data. |
drawBitmapFast
supports only exactly 1024x758px bitmaps for the moment!Full Examples
Inkplate_6_Motion_Partial_Update.ino
Example demonstrating the use of partialUpdate for fast display refreshes on Inkplate 6 MOTION.
Inkplate_6_Motion_Fast_Animation.ino
Example demonstrating drawBitmapFast for rendering animations on Inkplate 6 MOTION. Review the included files in the sketch for more details.
Soldered Image Converter
Convert images to bitmaps for display on Inkplate 6 MOTION using the Soldered Image Converter.