Closed GoogleCodeExporter closed 8 years ago
The error applies to text and graphics.
Original comment by 1337ch17...@googlemail.com
on 4 Nov 2013 at 11:47
Can you provide a picture of the output and a link to the datasheet for the
display?
Which u8glib constructor/device did you use?
In u8g_dev_t6963_128x64.c:
around line 162 replace
disp_ram_adr = WIDTH/8;
disp_ram_adr *= y;
for( i = 0; i < PAGE_HEIGHT; i ++ )
with
disp_ram_adr = WIDTH/8;
disp_ram_adr *= y;
disp_ram_adr += 5; // shift display by 5*8 = 40 pixel
for( i = 0; i < PAGE_HEIGHT; i ++ )
will this help?
Original comment by olikr...@gmail.com
on 5 Nov 2013 at 4:38
Thanks for your fast reaction, sadly I have no access to the hardware at
the moment.
I'll deliver the requested information as soon as possible ;)
Original comment by 1337ch17...@googlemail.com
on 5 Nov 2013 at 7:02
I use
U8GLIB_T6963_128X64 u8g(22, 24, 26, 28, 30, 32, 34, 36, 12, 11, 9, 8, 10);
I changed the pins in order to check whether this was a hardware issue.
2013/11/5 w201cruiser . <1337ch1770r@googlemail.com>
Original comment by 1337ch17...@googlemail.com
on 5 Nov 2013 at 7:21
This is what it looks like before:
https://www.dropbox.com/s/0d8fme233zebug0/20131105_105434.jpg
and after the modification:
https://www.dropbox.com/s/lggholf3xqvj5np/20131105_105205.jpg
2013/11/5 w201cruiser . <1337ch1770r@googlemail.com>
Original comment by 1337ch17...@googlemail.com
on 5 Nov 2013 at 10:02
Datasheet:
http://www.gydlcd.com/003/pdf/200582521173393124.pdf
Original comment by 1337ch17...@googlemail.com
on 5 Nov 2013 at 10:13
[deleted comment]
How did you connect the FS pin? It must be connected to GND.
Original comment by olikr...@gmail.com
on 5 Nov 2013 at 11:20
Yup that was it, thanks a lot again!
Thought it would not play a role because it changed nothing some tries ago, but
that was before fixing another wiring issue ;)
Might this be a candidate for the FAQ?
Original comment by 1337ch17...@googlemail.com
on 5 Nov 2013 at 1:31
Great, and yes, it is already mentioned at the end of this page:
http://code.google.com/p/u8glib/wiki/device
Original comment by olikr...@gmail.com
on 5 Nov 2013 at 1:36
will be continued in issue 87
Original comment by olikr...@gmail.com
on 22 Jan 2014 at 8:13
Original issue reported on code.google.com by
1337ch17...@googlemail.com
on 4 Nov 2013 at 11:43