We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
Rating:
Author: MIKROE
Last Updated: 2024-10-31
Package Version: 2.1.0.12
mikroSDK Library: 2.0.0.0
Category: Electronic Paper Display
Downloaded: 100 times
Not followed.
License: MIT license
eINK Click is an adapter Click board™, used to interface a compatible eINK display with the host MCU.
Do you want to subscribe in order to receive notifications regarding "eINK 2.90 inch display" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "eINK 2.90 inch display" changes.
Do you want to report abuse regarding "eINK 2.90 inch display".
DOWNLOAD LINK | RELATED COMPILER | CONTAINS |
---|---|---|
5345_eink_2.90_inch_d.zip [574.06KB] | mikroC AI for ARM GCC for ARM Clang for ARM mikroC AI for PIC mikroC AI for PIC32 XC32 GCC for RISC-V Clang for RISC-V mikroC AI for AVR mikroC AI for dsPIC XC16 |
|
eINK Click is an adapter Click board™, used to interface a compatible eINK display with the host MCU.
We provide a library for the Eink290Inch Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Package can be downloaded/installed directly form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.
This library contains API for Eink290Inch Click driver.
eink290inch_cfg_setup
Config Object Initialization function.
void eink290inch_cfg_setup ( eink290inch_cfg_t *cfg );
eink290inch_init
Initialization function.
err_t eink290inch_init ( eink290inch_t *ctx, eink290inch_cfg_t *cfg );
eink290inch_fill_screen
Function that fills the screen
void eink290inch_fill_screen ( eink290inch_t *ctx, uint8_t color );
eink290inch_display_image
Display image function
void eink290inch_display_image ( eink290inch_t *ctx, const uint8_t* image_buffer );
eink290inch_set_font
Set font function
void eink290inch_set_font ( eink290inch_t *ctx, eink290inch_font_t *cfg_font );
This application demonstrates the use of eINK Click board.
The demo application is composed of two sections :
Initializes the driver and configures the Click board for 2.90 inch eINK display. After that, if the TEXT mode is supported, shows a desired text messages on the display.
void application_init ( void )
{
eink290inch_cfg_t cfg;
eink290inch_font_t cfg_font;
eink290inch_set_text_t text_set;
// Click initialization.
eink290inch_cfg_setup( &cfg );
EINK290INCH_MAP_MIKROBUS( cfg, MIKROBUS_1 );
eink290inch_init( &eink290inch, &cfg );
eink290inch_start_config( &eink290inch );
eink290inch_set_lut( &eink290inch, eink290inch_lut_table, 70 );
Delay_ms ( 1000 );
#ifndef IMAGE_MODE_ONLY
cfg_font.p_font = &guiFont_Tahoma_18_Regular[ 0 ];
cfg_font.color = EINK290INCH_SCREEN_COLOR_WHITE;
cfg_font.orientation = EINK290INCH_FO_HORIZONTAL;
eink290inch_set_font( &eink290inch, &cfg_font );
text_set.n_char = 4;
text_set.text_x = 5;
text_set.text_y = 50;
eink290inch_text( &eink290inch, &demo_text[ 0 ], &text_set );
Delay_ms ( 1000 );
cfg_font.p_font = &guiFont_Tahoma_10_Regular[ 0 ];
cfg_font.color = EINK290INCH_SCREEN_COLOR_WHITE;
cfg_font.orientation = EINK290INCH_FO_HORIZONTAL;
eink290inch_set_font( &eink290inch, &cfg_font );
text_set.n_char = 7;
text_set.text_x = 5;
text_set.text_y = 90;
eink290inch_text( &eink290inch, &demo_text1[ 0 ], &text_set );
Delay_ms ( 1000 );
cfg_font.p_font = &guiFont_Tahoma_8_Regular[ 0 ];
cfg_font.color = EINK290INCH_SCREEN_COLOR_WHITE;
cfg_font.orientation = EINK290INCH_FO_HORIZONTAL;
eink290inch_set_font( &eink290inch, &cfg_font );
text_set.n_char = 9;
text_set.text_x = 5;
text_set.text_y = 120;
eink290inch_text( &eink290inch, &demo_text2[ 0 ], &text_set );
Delay_ms ( 1000 );
#endif
}
Draws four demo images to the display with a one-second delay between each drawing.
void application_task ( void )
{
eink290inch_display_image( &eink290inch, &demoImage_light[ 0 ] );
Delay_1sec( );
eink290inch_display_image( &eink290inch, &demoImage_dark[ 0 ] );
Delay_1sec( );
eink290inch_display_image( &eink290inch, &demoImage_light_180[ 0 ] );
Delay_1sec( );
eink290inch_display_image( &eink290inch, &demoImage_dark_180[ 0 ] );
Delay_1sec( );
}
Due to insuficient RAM memory, only the IMAGE mode is supported with 8-bit PIC and AVR microcontrollers.
The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.
Other mikroE Libraries used in the example:
Additional notes and informations
Depending on the development board you are using, you may need USB UART Click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.