| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 | /****************************************************************************** | File      	:   EPD_5in65f.c* | Author      :   Waveshare team* | Function    :   5.65inch e-paper* | Info        :*----------------* |	This version:   V1.0* | Date        :   2020-07-08* | 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 <stdlib.h>#include "epd5in65f.h"#include "imagedata.h"Epd::~Epd() {};Epd::Epd() {    reset_pin = RST_PIN;    dc_pin = DC_PIN;    cs_pin = CS_PIN;    busy_pin = BUSY_PIN;    width = EPD_WIDTH;    height = EPD_HEIGHT;};/******************************************************************************function :  Initialize the e-Paper registerparameter:******************************************************************************/int Epd::Init(void) {  if (IfInit() != 0) {      return -1;  }  Reset();    EPD_5IN65F_BusyHigh();    SendCommand(0x00);    SendData(0xEF);    SendData(0x08);    SendCommand(0x01);    SendData(0x37);    SendData(0x00);    SendData(0x23);    SendData(0x23);    SendCommand(0x03);    SendData(0x00);    SendCommand(0x06);    SendData(0xC7);    SendData(0xC7);    SendData(0x1D);    SendCommand(0x30);    SendData(0x3C);    SendCommand(0x41);    SendData(0x00);    SendCommand(0x50);    SendData(0x37);    SendCommand(0x60);    SendData(0x22);    SendCommand(0x61);    SendData(0x02);    SendData(0x58);    SendData(0x01);    SendData(0xC0);    SendCommand(0xE3);    SendData(0xAA);	    DelayMs(100);    SendCommand(0x50);    SendData(0x37);}/** *  @brief: basic function for sending commands */void Epd::SendCommand(unsigned char command) {    DigitalWrite(dc_pin, LOW);    SpiTransfer(command);}/** *  @brief: basic function for sending data */void Epd::SendData(unsigned char data) {    DigitalWrite(dc_pin, HIGH);    SpiTransfer(data);}void Epd::EPD_5IN65F_BusyHigh(void)// If BUSYN=0 then waiting{    while(!(DigitalRead(BUSY_PIN)));}void Epd::EPD_5IN65F_BusyLow(void)// If BUSYN=1 then waiting{    while(DigitalRead(BUSY_PIN));}/** *  @brief: module reset. *          often used to awaken the module in deep sleep, *          see Epd::Sleep(); */void Epd::Reset(void) {    DigitalWrite(reset_pin, LOW);                //module reset        DelayMs(1);    DigitalWrite(reset_pin, HIGH);    DelayMs(200);    }/******************************************************************************function :  Sends the image buffer in RAM to e-Paper and displaysparameter:******************************************************************************/void Epd::EPD_5IN65F_Display(const UBYTE *image) {    unsigned long i,j;    SendCommand(0x61);//Set Resolution setting    SendData(0x02);    SendData(0x58);    SendData(0x01);    SendData(0xC0);    SendCommand(0x10);    for(i=0; i<height; i++) {        for(j=0; j<width/2; j++) {            SendData(image[j+((width/2)*i)]);		}    }    SendCommand(0x04);//0x04    EPD_5IN65F_BusyHigh();    SendCommand(0x12);//0x12    EPD_5IN65F_BusyHigh();    SendCommand(0x02);  //0x02    EPD_5IN65F_BusyLow();	DelayMs(200);}/******************************************************************************function :  Sends the part image buffer in RAM to e-Paper and displaysparameter:******************************************************************************/void Epd::EPD_5IN65F_Display_part(const UBYTE *image, UWORD xstart, UWORD ystart,                                         UWORD image_width, UWORD image_heigh){    unsigned long i,j;    SendCommand(0x61);//Set Resolution setting    SendData(0x02);    SendData(0x58);    SendData(0x01);    SendData(0xC0);    SendCommand(0x10);    for(i=0; i<height; i++) {        for(j=0; j< width/2; j++) {            if(i<image_heigh+ystart && i>=ystart && j<(image_width+xstart)/2 && j>=xstart/2) {              SendData(pgm_read_byte(&image[(j-xstart/2) + (image_width/2*(i-ystart))]));            }			else {				SendData(0x11);			}		}    }    SendCommand(0x04);//0x04    EPD_5IN65F_BusyHigh();    SendCommand(0x12);//0x12    EPD_5IN65F_BusyHigh();    SendCommand(0x02);  //0x02    EPD_5IN65F_BusyLow();	DelayMs(200);}/******************************************************************************function :       Clear screen******************************************************************************/void Epd::Clear(UBYTE color) {    SendCommand(0x61);//Set Resolution setting    SendData(0x02);    SendData(0x58);    SendData(0x01);    SendData(0xC0);    SendCommand(0x10);    for(int i=0; i<width/2; i++) {        for(int j=0; j<height; j++) {            SendData((color<<4)|color);		}	}    SendCommand(0x04);//0x04    EPD_5IN65F_BusyHigh();    SendCommand(0x12);//0x12    EPD_5IN65F_BusyHigh();    SendCommand(0x02);  //0x02    EPD_5IN65F_BusyLow();    DelayMs(500);}/** *  @brief: After this command is transmitted, the chip would enter the  *          deep-sleep mode to save power.  *          The deep sleep mode would return to standby by hardware reset.  *          The only one parameter is a check code, the command would be *          You can use EPD_Reset() to awaken */void Epd::Sleep(void) {    DelayMs(100);    SendCommand(0x07);    SendData(0xA5);    DelayMs(100);	DigitalWrite(RST_PIN, 0); // Reset}/* END OF FILE */
 |