注意事项:
包圆可耻,强烈吐槽这种行为。。
项目还在抓取信号,时间周期会比较长。 期待有大佬赞助一台安捷伦才能继续下去
老五4.41英寸墨水屏~
[x] 【2021.10.31】使用驱动板点亮了屏幕
[x] 【2021.11.05】屏幕转接板制作完成,等待抓取逻辑信号
[x] 【2021.11.15】墨水屏驱动板原理图V1制作完成
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;
}
!注意:请使用浏览器自带下载,迅雷等下载软件可能无法下载到有效资源。
欢迎加入EEWorld参考设计群,也许能碰到搞同一个设计的小伙伴,群聊设计经验和难点。 入群方式:微信搜索“helloeeworld”或者扫描二维码,备注:参考设计,即可被拉入群。 另外,如您在下载此设计遇到问题,也可以微信添加“helloeeworld”及时沟通。
EEWorld Datasheet 技术支持