
Originally Posted by
fratello
Now my project it is in this stage - see photo 1. I ask -again, sorry ! - for help : how to make like in photo 2 ? I do not understand how 'advanced' to next line (I think because of my poor english...

). I read the N3310 display .pdf and many examples, but still don't understand... Can somebody explain to me, please ?
You want to have "Temp:" on Row0 and temperature reading on Row1? If this is the case then I recommend to use library from post #95.
This is how you can move positions on screen.
Code:
PosX=[X-axis pos]:PosY=[Y-axis pos]:Gosub Lcd_GotoXY
1) Goto PosX=0 and Pos=0
Code:
PosX=0:PosY=0:Gosub Lcd_GotoXY
Then add LCD write routines to display "Temp:"
2) calculate where you want to write on Row1.
X-axis
84 pixel, 6 pixel width per character = 16 character per line
Temp: -> 5 character -> 5 * 6 pixel = 30 (start pixel for temp reading)
PosX=30
Y-axis
48 pixel, 8 height per character = 6 character per column
1st row = 0, 2nd = 1, ... 6th = 5
PosY=1
Code:
PosX=30:PosY=1:Gosub Lcd_GotoXY
Then add LCD write routines to display temperature reading.
To take library into use, insert this to your code and save & unzip-file Nokia_LCD_3310_7110.zip to same directory (or mod path).
Code:
'----- LCD Setup -----
include "LCD_3310.pbp"
You might want to use also other library functions... it might easier your life...
BR,
-Gusse-
Bookmarks