Hello I want to display an image in my e-paper (Waveshare 2.13 inch) . Arduino examples works fine. But I did not get how to configure for special usage. For example ; I want to display an image and I dont know which function should I call.
In the Example
if 1 //show image for array
Debug("show image for array\r\n");
Paint_SelectImage(BlackImage);
Paint_Clear(WHITE);
Paint_DrawBitMap(gImage_2in13);
EPD_2in13_V3_Display(BlackImage);
DEV_Delay_ms(2000);
endif
We have this codes . Why we use below functions
Paint_SelectImage(BlackImage);
Paint_Clear(WHITE);
EPD_2in13_V3_Display(BlackImage);
Hello I want to display an image in my e-paper (Waveshare 2.13 inch) . Arduino examples works fine. But I did not get how to configure for special usage. For example ; I want to display an image and I dont know which function should I call.
In the Example
if 1 //show image for array
endif
We have this codes . Why we use below functions Paint_SelectImage(BlackImage); Paint_Clear(WHITE); EPD_2in13_V3_Display(BlackImage);
Thaks for your helps