Picbasic errors


Closed Thread
Results 1 to 16 of 16

Thread: Picbasic errors

Hybrid View

  1. #1
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default Do you have a serial LCD Module ?

    If you do not have a serial LCD, which is to say if it does not have an extra circuit board with a PIC or other controller you must use LCDOUT not serout.
    Look at the diagram on page187 of Mr. Iovine's book and accompanying code.

    Or page 96 of the MELABS p basic pro manual. The LCD unit with 16 pins or 14 pins on the non backlit units require extra circuitry, usually a PIC to work. The link I am providing is a source for one I have used to convert to serial use, however; this unit uses some Propriority commands which are available on his website, go and look at his links. http://www.wulfden.org/k107/index.shtml
    Looking is free.

  2. #2
    Join Date
    Sep 2006
    Posts
    747


    Did you find this post helpful? Yes | No

    Default

    well on page it is a test circuit for toxic gaz. but RB3 of the 16F84A is directly into the lcd screen. I guess his board is different. BUt I tried changing SEROUT to LCDOUT but it do not work either.

    There must be a way to print out without using another circuit.

    ken

  3. #3
    Join Date
    Sep 2004
    Location
    Mentor, Ohio
    Posts
    352


    Did you find this post helpful? Yes | No

    Smile

    Hi Lerameur,

    There are basically 2 types of LCD dsplays, a parallel one and a serial one. It is easier for these authors to greatly "simplify" software examples using a serial LCD display. It only requires 1 wire connected to the PIC. The command structure is also somewhat easier to use. The serial display will also require 2 wires for power. A contrast pot is usually on the second PC board. This second board is connected to the 16 or so pins on the LCD board.

    The LCD you are talking about that you have is a parallel display, as long as nothing esle meaning a second circuit board mounted on its back. You will need to put 2 wires for power, 1 wire with a potentiometer wired between + and ground for contrast, a wire for Enable, and a wire for the register select pin. Some more advanced applications will require another wire for Read/Write functions. Now to make things seem even more complicated, you have 2 modes of operation on a parallel LCD. 4 bit and 8 bit operation. In 8 bit operation you will use all 8 data lines on the LCD for sending data to the display plus the control lines. In 4 bit operation you tell PBP (software) which set of 4 data lines you are going to use, either the lower 4 bits (DB0 to DB3) or the higher 4 bits (DB4 to DB7). These setups are called DEFINES in the program and they specify how you plan to wire your display to the PIC. Once that is done, you can write to the display using LCDOUT commands.

    I and the rest of the members of the forum STRONGLY suggest you spend some time getting and reading the datasheets on your LCD display and the PIC you are using. (no books to buy, just download these for free) And plan on spending a couple of days reading the posts on this forum. I can also guarantyee you that you will get all of the information you need to make your projects work. Of course, if you are still confused you can ask for assistance here.

    I also have both of the books mentioned in previous posts to this thread. You really need to pay close attention to their program examples. It does say they are for either PicBasic Compiler or Pic Basic Pro. I have been doing PIC projects for about 3 years now and I would have to say that this forum has been fantastic as far as getting an education on the subject matter. Up until Melanie's recent post about helping noobies I to was concerned of being embarassed or ridiculed about asking the proverbial "stupid question" but I can say that by reading the old posts here and studying the data sheets and trying many things you will get the results you are looking for. Don't hesitate to ask questions but try to find the answers yourself first. I made myself a notebook based on the many topics that have been discussed here and refer to them first if I have a problem. These people here are really great and I appreciate the time and effort they put into helping total strangers all around the world. This is a great site!

    Keep plugging away. I hope my explanation helps you out.

    BobK

  4. #4
    Join Date
    Oct 2004
    Location
    Hangover, Germany
    Posts
    289


    Did you find this post helpful? Yes | No

    Angry

    You have to buy this LCD-02 from his page:

    http://www.imagesco.com/microcontroller/lcd.html
    PBP 2.50C, MCS+ 3.0.0.5, MPLAB 8, MPASM 5.14, ASIX Presto, PoScope, mE mikroBasic V7.2, PICKIT2

  5. #5
    Join Date
    Sep 2006
    Posts
    747


    Did you find this post helpful? Yes | No

    Default

    Thanks Bob,

    I have some serious reading to do before going into production then .
    I go a book from my library in assembler, after that I think I will go to Baisc, I have not seen a lot of programing in C .
    The serial Lcd is very expensive though, I 'll see what i can do with the one I have for now

    k

  6. #6
    Join Date
    Sep 2006
    Posts
    747


    Did you find this post helpful? Yes | No

    Default

    Also,
    from this link: http://www.wulfden.org/k107/index.shtml
    There is a pre programed chip, they dont give you that code, would you know where to get it?,

    ken

  7. #7
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default yes I do

    Quote Originally Posted by lerameur
    Also,
    from this link: http://www.wulfden.org/k107/index.shtml
    There is a pre programed chip, they dont give you that code, would you know where to get it?,

    ken
    http://cgi.ebay.com/Serial-LCD-Kit-1...QQcmdZViewItem

    P H Anderson sells the chips to Wulfden, he will sell them to you too. His prices in quantity are(as I Remember) about 50 cents over what you pay for unprogrammed chips. He does not license the code. You can contact him through the ebay link above. You can also sit down and write a similar code, after you learn some more. As I recommended earlier, read other peoples posts and use the search button to find what interests you. If you need serial LCD modules they are available in a lot of places including ebay, or buy a kit, or roll your own, or use the LCDOUT procedure for parallel lcd modules like the one you have.

    HERE IS A LINK TO THE PBP MANUAL, LOOK AT THE SECTION RE: LCDOUT
    on adobe page 53 - manual page 93, 94, 95, 96
    http://www.melabs.com/downloads/pbpm304.pdf
    Last edited by Archangel; - 12th September 2006 at 08:58. Reason: ADD CONTENT

Similar Threads

  1. Replies: 3
    Last Post: - 1st July 2008, 21:07
  2. Picbasic Pro Demo assembly errors
    By mikeRho in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 2nd January 2008, 06:41
  3. Replies: 22
    Last Post: - 12th July 2005, 17:39
  4. PicBasic Fundamentals
    By Billyc in forum General
    Replies: 9
    Last Post: - 4th May 2004, 10:04
  5. PicBasic Pro & PicBasic syntax different
    By Billyc in forum General
    Replies: 5
    Last Post: - 16th April 2004, 21:19

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts