![]() | ![]() | ![]() |
| | |||||||
| Micro Controllers Discuss all aspects of micro controllers - building them, coding them, etc. All controllers are welcome - PIC, BASIC, Z8 Encore!, etc. |
| | LinkBack | Thread Tools | Display Modes |
| | (permalink) |
| I read this tutorial, http://www.winpicprog.co.uk/pic_tutorial3.htm i make it in real "world" it works, but i don't understand how to control the lcd in special, for example i use a 4X20 lcd so i want to write a character to adress xx how i make this thing? and the hex table i don't know his use... | |
| |
| | (permalink) |
| Have a complete study of the tutorials. Just reading tutorial3 maynot perhaps quench your thurst. There a reference was given to another site for downloading data regarding LCD related issues.
__________________ Regards, Sarma. Last edited by mvs sarma; 2nd October 2007 at 07:54 PM. | |
| |
| | (permalink) |
| yes i read completly tutorial 3 but i don't understand, can you give me a part of a code that wil make what i say above? and the use of the hex table??? Last edited by ady689; 2nd October 2007 at 08:15 PM. | |
| |
| | (permalink) |
| The provided Asm does all yours need. For LCD to send charater to a particular address, first send the address commnd with LCD_Cmd, then send character with LCD_char. The LCD Command table show how to setup up an address. Bit 7 must be set to 1 and the remaining bits are the LCD address. General example below. To put 'A' at adress 00: MOVLW 0X80 CALL LCD_CMD MOVLW 'A' CALL LCD_CHAR Here lies the instructions on how to use them. This is how I started. These very same files are the foundation and the only source of my LCD control wisdom. Now we are on equal grounds. No more reason to ask others. No excuses other than internet disconnection and prevention of downloading files http://www.epemag.wimborne.co.uk/lcd1.pdf http://www.epemag.wimborne.co.uk/lcd2.pdf | |
| |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
| |
| | ||||
| Title | Starter | Forum | Replies | Latest |
| PIC to LCD wiring problem ? | pasanlaksiri | Micro Controllers | 28 | 4th October 2007 11:29 AM |
| PIC16F628A LCD problems. | HerbertMunch | Micro Controllers | 17 | 2nd October 2007 10:20 AM |
| Newbie needs help with LCD backlight dimming | Mongoose | General Electronics Chat | 6 | 22nd September 2007 12:23 AM |
| Nokia 7110 LCD + questions regarding code and behaviour of LCD. | MrNobody | Micro Controllers | 2 | 19th September 2007 08:50 AM |
| LCD Troubles | Kyle-s4h | Micro Controllers | 13 | 11th September 2007 01:30 PM |