i am new in pbp i want this schematic code in pbp
and step by step detail this code for learning purpose
plz any body help me
Thanks
i am new in pbp i want this schematic code in pbp
and step by step detail this code for learning purpose
plz any body help me
Thanks
Here you go....
Step 1: Don't ask people to write all your code for you and expect to learn a thing from it.
Step 2: Read the manual.
Step 3: If the project is over your head, start with something you can do, with some work.
Step 4: Blink some LED's to start off, then try progressing to bigger projects.
Step 5: Take a look at http://www.picbasic.co.uk/forum/showthread.php?t=12677 for inspiration. Someone working hard and learning fast.
With time and effort, you will be able to return to the project you are yearning for.
Walter
http://www.scalerobotics.com
hello all,
i'm trying to compile a program based on 16f628a and nokia LCD 3310.
I'm trying to right a simple program just to print a HELLO WORLD on the nokia LCD but no luck.
My problem is that when i try to INCLUDE "LCD_3310v4.inc" i get an error that cannot open the inc file.
Also when i open the file in the microcode studio (the LCD_3310v4.inc file) i get the error "Symbol not previously defined EEADRH"
Do you have any suggestion please?
many thanks for your help in advance.
This is causing your EEADRH problem.
Easiest way to go forward is comment or remove following parts of the code:Code:Readcode Addr, Char
Meaning StringOut and ASM-part above it.Code:@ printstr macro function from Darrel and edited to work for this lcd 'format should look like this: @ PrintStr x,y, "your text string goes here"
This is disabling string printing function, so you should figure out other ways to put stuff on LCD.
Those who know better why READCODE doesn't work with 628A could answer to you.
Even better if some workaround is available.
BR,
-Gusse-
Last edited by Gusse; - 2nd June 2011 at 22:52. Reason: Just editing
Hi Gusse,
thanks for your answer. That means that when i also get an error "cannot open inc file" the time i try to compile, it has to do with the 628a?
Sorry for my silly question but cannot understant why is not compatible.
Is your inc-file in the same folder where you have your main pbp-file?
If no, then you should include path to file before inc-file.Code:INCLUDE "LCD_3310v4.inc"
If yes, then I don't know why you get this error message. Is syntax or file name OK?
I think, it has nothing to do with 628A.
BR,
-Gusse-
it is in the same folder.
I will try once more. the code and the syntax are also ok.
thanks for your time.
If i have any news i will let you know.
Bookmarks