Precautions:
Bao Yuan is shameful, and I strongly complain about this behavior. .
The project is still capturing signals, and the time period will be relatively long. I hope that a big boss will sponsor an Agilent to continue.
Laowu 4.41-inch ink screen~
[x] 【2021.10.31】Using the driver board to light up the screen
[x] 【2021.11.05】The screen adapter board is completed and waiting to capture the logic signal
[x] 【2021.11.15】Ink screen driver board schematic diagram V1 completed
static byte[] convertTo1bit_PixelFormatType0(byte[] picData, int w, int h)
{
byte[] newRow = new byte[picData.length * 1 / 8];
// join nibbles (so 1 byte is 8 pixels)
int j = 0;
for (int i = 0; i < picData.length; i += 8)
{
newRow[j] = (byte)( ((picData[i + 0] << 7) & 0x80) |
((picData[i + 1] << 6) & 0x40) |
((picData[i + 2] << 5) & 0x20) |
((picData[i + 3] << 4) & 0x10) |
((picData[i + 4] << 3) & 0x08) |
((picData[i + 5] << 2) & 0x04) |
((picData[i + 6] << 1) & 0x02) |
((picData[i + 7]) & 0x01));
j++;
}
return newRow;
}
All reference designs on this site are sourced from major semiconductor manufacturers or collected online for learning and research. The copyright belongs to the semiconductor manufacturer or the original author. If you believe that the reference design of this site infringes upon your relevant rights and interests, please send us a rights notice. As a neutral platform service provider, we will take measures to delete the relevant content in accordance with relevant laws after receiving the relevant notice from the rights holder. Please send relevant notifications to email: bbs_service@eeworld.com.cn.
It is your responsibility to test the circuit yourself and determine its suitability for you. EEWorld will not be liable for direct, indirect, special, incidental, consequential or punitive damages arising from any cause or anything connected to any reference design used.
Supported by EEWorld Datasheet