If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
.
Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
.
There simply is no "Happy Spam" If you do it you will disappear from this forum.
I did it ! This is my final version ! I'm happy !!!
I wish You all the best !
Good job!
Don't give up!
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Great! More Nokia LCD applications are always welcome
I have plenty of Nokia color LCD. Maybe that is next step... , but not soon...
BR,
-Gusse-
Hi to all !
Based on the code from here : http://www.picbasic.co.uk/forum/show...7&postcount=35, I intend to use the Nokia-LCD for the thermostat; I attach the schematic. Please, help with TRISB,TRISA,PORTB,PORTA,OPTION_REG setting, because, even I read the datasheet, I don't understand why Mr.GioppY say :
TRISB = %11000010
TRISA= % 10100010
In the schematic I see : RB6,RB7 not used - why "1" ?
RA7 not used - why "1" ?
Can someone explain me ? Thanks in advance !
May be he used it for some tasks and forgot to make it Output (0).
So if you do not intent to use them, make it output. If you still want to keep it Input suggest to tie pull up or pull down resistors. Do not let any pin float.
Ioannis
Here is an include file that has been modified from many peoples code in this thread, and Darrel's PrintStr function, for the nokia-3310. It allows for very simple printing to the LCD.
You can also print different things on the same line, by using the x, and y, positions.
example:
Code:DEFINE OSC 48 include "modedefs.bas" include "LCD_3310.pbp" start: @ PrintStr 0,0, "I love being" @ PrintStr 0,1, "able to print " @ PrintStr 0,2, "so easily!"
Bookmarks