Haberler:

Foruma Resim Yükleme ve Boyut Sınırlaması ( ! )  https://bit.ly/2GMFb8H

Ana Menü

4 satır lcd ler

Başlatan mavi, 21 Ekim 2006, 05:49:24

mavi

Arkadaşlar bir mesaj okudum ama çok hızlı dolaşıyordum araştırayım derken sayfayı kaybettim hatta mesaj bu sitedemi onu bile hatılamıyorum ama bilgi mahiyetinde yazıyorum..

dört satır lcd ile ilgili bilgiler aşağıdaki linlerde var...

satır seçmek için satırların adresleri ilk bölümde yazıyor

http://direct.forum.microchip.com/tm.aspx?m=196824

;*****************************************************************************
; Equates, I/O, vars
;*****************************************************************************
RESET_V  EQU 0x0000  ; Address of RESET Vector
ISR_V  EQU 0x0004  ; Address of Interrupt Vector
LCD_DATA EQU PORTC  ; LCD data lines interface
LCD_DATA_TRIS EQU TRISC
LCD_CTRL EQU PORTA  ; LCD control lines interface
LCD_LINE0 EQU 0x000
LCD_LINE1 EQU 0x040
LCD_LINE2 EQU 0x014
LCD_LINE3 EQU 0x054
; PORTA bits
LCD_E  EQU 2  ; LCD Enable control line
LCD_RW  EQU 1  ; LCD Read/Write control line
LCD_RS  EQU 0  ; LCD Register-Select control line
; PORTC bits
DB7  EQU 7  ; LCD dataline 7 (MSB)
DB6  EQU 6  ; LCD dataline 6
DB5  EQU 5  ; LCD dataline 5
DB4  EQU 4  ; LCD dataline 4
DB3  EQU 3  ; LCD dataline 3
DB2  EQU 2  ; LCD dataline 2
DB1  EQU 1  ; LCD dataline 1
DB0  EQU 0  ; LCD dataline 0 (LSB)
; misc.
LCD_TEMP EQU 0x020  ; LCD subroutines internal use
TABLE_INDEX EQU 0x021  ; Index to table strings
COUNT  EQU 0x022  ; A counter
DELAY  EQU 0x023  ; Used in DELAYxxx routines
X_DELAY  EQU 0x024  ; Used in X_DELAYxxx routines


http://home.iae.nl/users/pouweha/lcd/lcd2.shtml


http://home.iae.nl/users/pouweha/lcd/images/lcd/lcd-pic16c84.jpg

sanırım bunu istiyordu...
Telecommander Monster Of Network

mavi

şahsı buldum picprojeup 6 paylaşımında okumuşum.
Telecommander Monster Of Network

esco

merhaba bana böyle bir şey lazım fakat bu ornekteki dil pic basic olmadığı için anlayamadım.

şimdi 2x16 lcd de ilksatır için lcdout $fe,$80
2. satır için lcdout $fe,c0

yazıyorduk 4 satır lcd de 3. ve 4 satır için ne yazmalayız?

Maxim

$FE, $80        1.satır
$FE, $C0        2.satır
$FE, $94        3.satır
$FE, $D4        4.satır

mavi

Telecommander Monster Of Network