| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- /*****************************************************************************
- * | File : EPD_7in5.c
- * | Author : Waveshare team
- * | Function : Electronic paper driver
- * | Info :
- *----------------
- * | This version: V3.0
- * | Date : 2023-12-18
- * | Info :
- *****************************************************************************
- #
- # Permission is hereby granted, free of charge, to any person obtaining a copy
- # of this software and associated documnetation files(the "Software"), to deal
- # in the Software without restriction, including without limitation the rights
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- # copies of the Software, and to permit persons to whom the Software is
- # furished to do so, subject to the following conditions:
- #
- # The above copyright notice and this permission notice shall be included in
- # all copies or substantial portions of the Software.
- #
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- # THE SOFTWARE.
- #
- ******************************************************************************/
- #include "EPD_7in5_V2.h"
- #include "Debug.h"
- /******************************************************************************
- function : Software reset
- parameter:
- ******************************************************************************/
- static void EPD_Reset(void)
- {
- DEV_Digital_Write(EPD_RST_PIN, 1);
- DEV_Delay_ms(20);
- DEV_Digital_Write(EPD_RST_PIN, 0);
- DEV_Delay_ms(2);
- DEV_Digital_Write(EPD_RST_PIN, 1);
- DEV_Delay_ms(20);
- }
- /******************************************************************************
- function : send command
- parameter:
- Reg : Command register
- ******************************************************************************/
- static void EPD_SendCommand(UBYTE Reg)
- {
- DEV_Digital_Write(EPD_DC_PIN, 0);
- DEV_Digital_Write(EPD_CS_PIN, 0);
- DEV_SPI_WriteByte(Reg);
- DEV_Digital_Write(EPD_CS_PIN, 1);
- }
- /******************************************************************************
- function : send data
- parameter:
- Data : Write data
- ******************************************************************************/
- static void EPD_SendData(UBYTE Data)
- {
- DEV_Digital_Write(EPD_DC_PIN, 1);
- DEV_Digital_Write(EPD_CS_PIN, 0);
- DEV_SPI_WriteByte(Data);
- DEV_Digital_Write(EPD_CS_PIN, 1);
- }
- static void EPD_SendData2(UBYTE *pData, UDOUBLE len)
- {
- DEV_Digital_Write(EPD_DC_PIN, 1);
- DEV_Digital_Write(EPD_CS_PIN, 0);
- DEV_SPI_Write_nByte(pData, len);
- DEV_Digital_Write(EPD_CS_PIN, 1);
- }
- /******************************************************************************
- function : Wait until the busy_pin goes LOW
- parameter:
- ******************************************************************************/
- static void EPD_WaitUntilIdle(void)
- {
- while (1)
- {
- if(DEV_Digital_Read(EPD_BUSY_PIN) == 1)
- break;
- }
- }
- /******************************************************************************
- function : Turn On Display
- parameter:
- ******************************************************************************/
- static void EPD_7IN5_V2_TurnOnDisplay(void)
- {
- EPD_SendCommand(0x12); //DISPLAY REFRESH
- DEV_Delay_ms(100); //!!!The delay here is necessary, 200uS at least!!!
- EPD_WaitUntilIdle();
- }
- /******************************************************************************
- function : Initialize the e-Paper register
- parameter:
- ******************************************************************************/
- UBYTE EPD_7IN5_V2_Init(void)
- {
- EPD_Reset();
- EPD_SendCommand(0x01); //POWER SETTING
- EPD_SendData(0x07);
- EPD_SendData(0x07); //VGH=20V,VGL=-20V
- EPD_SendData(0x3f); //VDH=15V
- EPD_SendData(0x3f); //VDL=-15V
- //Enhanced display drive(Add 0x06 command)
- EPD_SendCommand(0x06); //Booster Soft Start
- EPD_SendData(0x17);
- EPD_SendData(0x17);
- EPD_SendData(0x28);
- EPD_SendData(0x17);
- EPD_SendCommand(0x04); //POWER ON
- DEV_Delay_ms(100);
- EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
- EPD_SendCommand(0X00); //PANNEL SETTING
- EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
- EPD_SendCommand(0x61); //tres
- EPD_SendData(0x03); //source 800
- EPD_SendData(0x20);
- EPD_SendData(0x01); //gate 480
- EPD_SendData(0xE0);
- EPD_SendCommand(0X15);
- EPD_SendData(0x00);
- /*
- If the screen appears gray, use the annotated initialization command
- */
- EPD_SendCommand(0X50);
- EPD_SendData(0x10);
- EPD_SendData(0x07);
- // EPD_SendCommand(0X50);
- // EPD_SendData(0x10);
- // EPD_SendData(0x17);
- // EPD_SendCommand(0X52);
- // EPD_SendData(0x03);
- EPD_SendCommand(0X60); //TCON SETTING
- EPD_SendData(0x22);
-
- return 0;
- }
- UBYTE EPD_7IN5_V2_Init_Fast(void)
- {
- EPD_Reset();
- EPD_SendCommand(0X00); //PANNEL SETTING
- EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
- /*
- If the screen appears gray, use the annotated initialization command
- */
- EPD_SendCommand(0X50);
- EPD_SendData(0x10);
- EPD_SendData(0x07);
- // EPD_SendCommand(0X50);
- // EPD_SendData(0x10);
- // EPD_SendData(0x17);
- // EPD_SendCommand(0X52);
- // EPD_SendData(0x03);
- EPD_SendCommand(0x04); //POWER ON
- DEV_Delay_ms(100);
- EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
- //Enhanced display drive(Add 0x06 command)
- EPD_SendCommand(0x06); //Booster Soft Start
- EPD_SendData (0x27);
- EPD_SendData (0x27);
- EPD_SendData (0x18);
- EPD_SendData (0x17);
- EPD_SendCommand(0xE0);
- EPD_SendData(0x02);
- EPD_SendCommand(0xE5);
- EPD_SendData(0x5A);
-
- return 0;
- }
- UBYTE EPD_7IN5_V2_Init_Part(void)
- {
- EPD_Reset();
- EPD_SendCommand(0X00); //PANNEL SETTING
- EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
-
- EPD_SendCommand(0x04); //POWER ON
- DEV_Delay_ms(100);
- EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
-
- EPD_SendCommand(0xE0);
- EPD_SendData(0x02);
- EPD_SendCommand(0xE5);
- EPD_SendData(0x6E);
-
- return 0;
- }
- /*
- The feature will only be available on screens sold after 24/10/23
- */
- UBYTE EPD_7IN5_V2_Init_4Gray(void)
- {
- EPD_Reset();
- EPD_SendCommand(0X00); //PANNEL SETTING
- EPD_SendData(0x1F); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
- EPD_SendCommand(0X50);
- EPD_SendData(0x10);
- EPD_SendData(0x07);
-
- EPD_SendCommand(0x04); //POWER ON
- DEV_Delay_ms(100);
- EPD_WaitUntilIdle(); //waiting for the electronic paper IC to release the idle signal
-
- EPD_SendCommand(0x06); //Booster Soft Start
- EPD_SendData (0x27);
- EPD_SendData (0x27);
- EPD_SendData (0x18);
- EPD_SendData (0x17);
- EPD_SendCommand(0xE0);
- EPD_SendData(0x02);
- EPD_SendCommand(0xE5);
- EPD_SendData(0x5F);
-
- return 0;
- }
- /******************************************************************************
- function : Clear screen
- parameter:
- ******************************************************************************/
- void EPD_7IN5_V2_Clear(void)
- {
- UWORD Width, Height;
- Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
- Height = EPD_7IN5_V2_HEIGHT;
- UBYTE image[EPD_7IN5_V2_WIDTH / 8] = {0x00};
- UWORD i;
- EPD_SendCommand(0x10);
- for(i=0; i<Width; i++) {
- image[i] = 0xFF;
- }
- for(i=0; i<Height; i++)
- {
- EPD_SendData2(image, Width);
- }
- EPD_SendCommand(0x13);
- for(i=0; i<Width; i++) {
- image[i] = 0x00;
- }
- for(i=0; i<Height; i++)
- {
- EPD_SendData2(image, Width);
- }
-
- EPD_7IN5_V2_TurnOnDisplay();
- }
- void EPD_7IN5_V2_ClearBlack(void)
- {
- UWORD Width, Height;
- Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
- Height = EPD_7IN5_V2_HEIGHT;
- UBYTE image[EPD_7IN5_V2_WIDTH / 8] = {0x00};
- UWORD i;
- EPD_SendCommand(0x10);
- for(i=0; i<Width; i++) {
- image[i] = 0x00;
- }
- for(i=0; i<Height; i++)
- {
- EPD_SendData2(image, Width);
- }
- EPD_SendCommand(0x13);
- for(i=0; i<Width; i++) {
- image[i] = 0xFF;
- }
- for(i=0; i<Height; i++)
- {
- EPD_SendData2(image, Width);
- }
-
- EPD_7IN5_V2_TurnOnDisplay();
- }
- /******************************************************************************
- function : Sends the image buffer in RAM to e-Paper and displays
- parameter:
- ******************************************************************************/
- void EPD_7IN5_V2_Display(UBYTE *blackimage)
- {
- UDOUBLE Width, Height;
- Width =(EPD_7IN5_V2_WIDTH % 8 == 0)?(EPD_7IN5_V2_WIDTH / 8 ):(EPD_7IN5_V2_WIDTH / 8 + 1);
- Height = EPD_7IN5_V2_HEIGHT;
-
- EPD_SendCommand(0x10);
- for (UDOUBLE j = 0; j < Height; j++) {
- EPD_SendData2((UBYTE *)(blackimage+j*Width), Width);
- }
- EPD_SendCommand(0x13);
- for (UDOUBLE j = 0; j < Height; j++) {
- for (UDOUBLE i = 0; i < Width; i++) {
- blackimage[i + j * Width] = ~blackimage[i + j * Width];
- }
- }
- for (UDOUBLE j = 0; j < Height; j++) {
- EPD_SendData2((UBYTE *)(blackimage+j*Width), Width);
- }
- EPD_7IN5_V2_TurnOnDisplay();
- }
- void EPD_7IN5_V2_Display_Part(UBYTE *blackimage,UDOUBLE x_start, UDOUBLE y_start, UDOUBLE x_end, UDOUBLE y_end)
- {
- UDOUBLE Width, Height;
- Width =((x_end - x_start) % 8 == 0)?((x_end - x_start) / 8 ):((x_end - x_start) / 8 + 1);
- Height = y_end - y_start;
- EPD_SendCommand(0x50);
- EPD_SendData(0xA9);
- EPD_SendData(0x07);
- EPD_SendCommand(0x91); //This command makes the display enter partial mode
- EPD_SendCommand(0x90); //resolution setting
- EPD_SendData (x_start/256);
- EPD_SendData (x_start%256); //x-start
- EPD_SendData (x_end/256);
- EPD_SendData (x_end%256-1); //x-end
- EPD_SendData (y_start/256); //
- EPD_SendData (y_start%256); //y-start
- EPD_SendData (y_end/256);
- EPD_SendData (y_end%256-1); //y-end
- EPD_SendData (0x01);
-
- EPD_SendCommand(0x13);
- for (UDOUBLE j = 0; j < Height; j++) {
- EPD_SendData2((UBYTE *)(blackimage+j*Width), Width);
- }
- EPD_7IN5_V2_TurnOnDisplay();
- }
- void EPD_7IN5_V2_Display_4Gray(const UBYTE *Image)
- {
- UDOUBLE i,j,k;
- UBYTE temp1,temp2,temp3;
- // old data
- EPD_SendCommand(0x10);
- for(i=0; i<48000; i++) {
- temp3=0;
- for(j=0; j<2; j++) {
- temp1 = Image[i*2+j];
- for(k=0; k<2; k++) {
- temp2 = temp1&0xC0;
- if(temp2 == 0xC0)
- temp3 |= 0x00;
- else if(temp2 == 0x00)
- temp3 |= 0x01;
- else if(temp2 == 0x80)
- temp3 |= 0x01;
- else //0x40
- temp3 |= 0x00;
- temp3 <<= 1;
- temp1 <<= 2;
- temp2 = temp1&0xC0 ;
- if(temp2 == 0xC0)
- temp3 |= 0x00;
- else if(temp2 == 0x00)
- temp3 |= 0x01;
- else if(temp2 == 0x80)
- temp3 |= 0x01;
- else //0x40
- temp3 |= 0x00;
- if(j!=1 || k!=1)
- temp3 <<= 1;
- temp1 <<= 2;
- }
- }
- EPD_SendData(temp3);
- // printf("%x",temp3);
- }
- EPD_SendCommand(0x13); //write RAM for black(0)/white (1)
- for(i=0; i<48000; i++) { //5808*4 46464
- temp3=0;
- for(j=0; j<2; j++) {
- temp1 = Image[i*2+j];
- for(k=0; k<2; k++) {
- temp2 = temp1&0xC0 ;
- if(temp2 == 0xC0)
- temp3 |= 0x00;//white
- else if(temp2 == 0x00)
- temp3 |= 0x01; //black
- else if(temp2 == 0x80)
- temp3 |= 0x00; //gray1
- else //0x40
- temp3 |= 0x01; //gray2
- temp3 <<= 1;
- temp1 <<= 2;
- temp2 = temp1&0xC0 ;
- if(temp2 == 0xC0) //white
- temp3 |= 0x00;
- else if(temp2 == 0x00) //black
- temp3 |= 0x01;
- else if(temp2 == 0x80)
- temp3 |= 0x00; //gray1
- else //0x40
- temp3 |= 0x01; //gray2
- if(j!=1 || k!=1)
- temp3 <<= 1;
- temp1 <<= 2;
- }
- }
- EPD_SendData(temp3);
- // printf("%x",temp3);
- }
- EPD_7IN5_V2_TurnOnDisplay();
- }
- void EPD_7IN5_V2_WritePicture_4Gray(const UBYTE *Image)
- {
- UDOUBLE i,j,k,o;
- UBYTE temp1,temp2,temp3;
- UWORD Width, Height;
- Width = (EPD_7IN5_V2_WIDTH % 8 == 0)? (EPD_7IN5_V2_WIDTH / 8 ): (EPD_7IN5_V2_WIDTH / 8 + 1);
- Height = EPD_7IN5_V2_HEIGHT;
- EPD_SendCommand(0x10);
- for(i=0; i<Height; i++) {
- for(o=0; o<Width; o++) {
- if((o < Width/2)&&(i < Height))
- {
- temp3=0;
- for(j=0; j<2; j++) {
- temp1 = Image[(i*Width/2+o)*2+j];
- for(k=0; k<2; k++) {
- temp2 = temp1&0xC0;
- if(temp2 == 0xC0)
- temp3 |= 0x00;
- else if(temp2 == 0x00)
- temp3 |= 0x01;
- else if(temp2 == 0x80)
- temp3 |= 0x01;
- else //0x40
- temp3 |= 0x00;
- temp3 <<= 1;
- temp1 <<= 2;
- temp2 = temp1&0xC0 ;
- if(temp2 == 0xC0)
- temp3 |= 0x00;
- else if(temp2 == 0x00)
- temp3 |= 0x01;
- else if(temp2 == 0x80)
- temp3 |= 0x01;
- else //0x40
- temp3 |= 0x00;
- if(j!=1 || k!=1)
- temp3 <<= 1;
- temp1 <<= 2;
- }
- }
- EPD_SendData(temp3);
- // printf("%x",temp3);
- }
- else
- {
- EPD_SendData(0x00);
- }
- }
- }
- EPD_SendCommand(0x13);
- for(i=0; i<Height; i++) {
- for(o=0; o<Width; o++) {
- if((o < Width/2)&&(i < Height))
- {
- for(j=0; j<2; j++) {
- temp1 = Image[(i*Width/2+o)*2+j];
- for(k=0; k<2; k++) {
- temp2 = temp1&0xC0 ;
- if(temp2 == 0xC0)
- temp3 |= 0x00;//white
- else if(temp2 == 0x00)
- temp3 |= 0x01; //black
- else if(temp2 == 0x80)
- temp3 |= 0x00; //gray1
- else //0x40
- temp3 |= 0x01; //gray2
- temp3 <<= 1;
- temp1 <<= 2;
- temp2 = temp1&0xC0 ;
- if(temp2 == 0xC0) //white
- temp3 |= 0x00;
- else if(temp2 == 0x00) //black
- temp3 |= 0x01;
- else if(temp2 == 0x80)
- temp3 |= 0x00; //gray1
- else //0x40
- temp3 |= 0x01; //gray2
- if(j!=1 || k!=1)
- temp3 <<= 1;
- temp1 <<= 2;
- }
- }
- EPD_SendData(temp3);
- // printf("%x",temp3);
- }
- else
- {
- EPD_SendData(0x00);
- }
- }
- }
- EPD_7IN5_V2_TurnOnDisplay();
- }
- /******************************************************************************
- function : Enter sleep mode
- parameter:
- ******************************************************************************/
- void EPD_7IN5_V2_Sleep(void)
- {
- EPD_SendCommand(0x50);
- EPD_SendData(0XF7);
- EPD_SendCommand(0X02); //power off
- EPD_WaitUntilIdle();
- EPD_SendCommand(0X07); //deep sleep
- EPD_SendData(0xA5);
- }
|