I am playing with an 2.9" epaper display from DKE, and I cant find its datasheet, especially the LUT table. The model number is DEPG0290RHS75BF6CP. A photo of it is attached.
Does anyone has a sample code for this model? I need to the the sequence of commands to init the display and the LUT.
I guess I will need to find a correct LUT for my display, as the LUT from the above code is for B/W. Alternatively, I hope that I could load the LUT from OTP, but so far I have got no luck. I am asking the vendor but they seem to ignore non-sale emails, :(.
The next photo shows how the colors should look like. It was running the original firmware of this product BSides Canberra 2021 Electronic Badge – InfoSect
The second photo shows my result. I divide the screen into four rectangular parts to compare. The top left square shows the darkest color I can make. The top right shows the white, which is good enough.
Good to hear that you're making some progress with it!
I have a feeling that these two color displays work by displaying both RAM1 and RAM2 at the same time, onto two different colored layers of pixels. If one layer isn't set, you can get an odd blurry mix.
I forget the exact settings needed, but glancing quicky at my own notes to myself, I would suggest something like:
Black - RAM1: off , RAM2: off
White - RAM1: on , RAM2: off
Red - RAM 1: on , RAM2: on
So each pixel should be set with both 0x24 and 0x26 commands, to give it the appropriate mix.
I also have a suspicion that either the 0x21 / 0x22 commands will determine which RAM is being used, so if your example code is from a BW display, it may need a slightly different configuration to display both layers simultaneously.