Replies: 7 comments 28 replies
-
Everything seems to be there in the UC1628 datasheet. |
Beta Was this translation helpful? Give feedback.
-
I'm also trying to develop for Parallel port(8080) basic driver. It would be helpful if you can point us to gitlab path if already exists. |
Beta Was this translation helpful? Give feedback.
-
Hi olikraus |
Beta Was this translation helpful? Give feedback.
-
@fuyuqingfeng @ullahsh @bhavyasrig |
Beta Was this translation helpful? Give feedback.
-
Hello everyone, |
Beta Was this translation helpful? Give feedback.
-
I am still searching for an option to buy once display. |
Beta Was this translation helpful? Give feedback.
-
@fuyuqingfeng @ullahsh @bhavyasrig @shlyakpavel I have created a 128x64 variant of the UC1628 based display based on the code for a 256x128 display with the same controller. A subset of the constructors are also added to all examples: U8G2_UC1628_128X64_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ 3, /*dc=*/ 16, /*reset=*/ 17); // UC1628 pin names: enable: /WR, dc: CD
U8G2_UC1628_128X64_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
U8G2_UC1628_128X64_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
U8G2_UC1628_256X128_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
U8G2_UC1628_256X128_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8); Of course, there is also a 8080 constructor for the 256x128 display, it is just not listed in the examples. The new code is available in beta release 2.35.6. Maybe someone can test this 128x64 display and give some feedback. Also consider to give feed back in the official issue here: #2260 You can download the latest U8g2 beta release from here: https://github.com/olikraus/U8g2_Arduino/archive/master.zip
PlatformIO:
|
Beta Was this translation helpful? Give feedback.
-
I am developing parallel port 8080 driver for UC1628 lcd, do you have any basic driver for parallel port to up the lcd.
wanted to know the state of WR0,WR1,RST and RS pin of LCD to write data into it.
Any help would be appreciated.
Regards,
Shafi
Beta Was this translation helpful? Give feedback.
All reactions