Bargraph and 2x40 LCD problem
Hi all
I have the following problem using a seiko 2x40 LCD (4042)
http://www.shopeio.com/inventory/pdf/SeikoChar.pdf
I use a 16F876 and read AD0 and AD1 which I want to display on line 1 and 2
followed by a bargraph
All works ok if the COL position is not bigger than 15
If I use 16 it erase the the text and the bargraph starts on 1st line 1st character
anyidea ?
lcd_main:
Lcdout $fe, 1
LCDOUT "Forw: ",dec4 fwd_pwr," Watt"
pause 10
; syntax- BARgraph Value, Row, Col, Width, Range, Style
@ BARgraph _fwd_pwr, 1, 15, 25, 1024, boxed ' OK
; @ BARgraph _fwd_pwr, 1, 16, 25, 1024, boxed ' not OK
return