Skip to content

Commit

Permalink
Use strength=3 for each phase
Browse files Browse the repository at this point in the history
  • Loading branch information
rgerganov committed Jan 17, 2024
1 parent a678ae9 commit 90b1f75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions target/src/EPD_3in52_rse.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ void EPD_Init()
EPD_SendData(0x03); // OPTEN VDHR[6:0] VHDR=6.4V
// T_VDS_OFF[1:0] 00=1 frame; 01=2 frame; 10=3 frame; 11=4 frame
EPD_SendCommand(0x06); // booster soft start BTST
EPD_SendData(0x17);
EPD_SendData(0x37);
EPD_SendData(0x3D);
EPD_SendData(0b00010111); // BT_PHA[7:0]
EPD_SendData(0b00010111); // BT_PHB[7:0]
EPD_SendData(0b00010111); // x x BT_PHC[5:0]

EPD_SendCommand(0x82); // VCOM_DC setting VDCS
EPD_SendData(0x07); // x VDCS[6:0] VCOM_DC value= -1.9v 00~3f,0x12=-1.9v
Expand Down Expand Up @@ -237,4 +237,4 @@ void EPD_Sleep()
EPD_ReadBusy();
EPD_SendCommand(0X07); //deep sleep
EPD_SendData(0xA5);
}
}

0 comments on commit 90b1f75

Please sign in to comment.