Search found 4 matches

by tzvika
Tue Jan 06, 2004 9:55 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: glk12232-25 & pic18f8720 not work
Replies: 4
Views: 3763

lcd

Thank you !
Adrresses- this is the only way to know the address?
The address not write in anywhere?
by tzvika
Mon Jan 05, 2004 3:36 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: glk12232-25 & pic18f8720 not work
Replies: 4
Views: 3763

:) Thank you for help!! :)
-This is the first product that i connect to this project & this is the meaning to check I2C.
-addresses- which addresses? I know 0X50 or 80.
-What the problem with stop/start?
by tzvika
Mon Jan 05, 2004 7:53 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: glk12232-25 & pic18f8720 not work
Replies: 4
Views: 3763

glk12232-25 & pic18f8720 not work

I have a Matrix-Orbital glk12232-25 connect to pic18f8720 .
Icannot to "speak" with my lcd.
this is my code:

void wait_end_procc(void){
while(SSPIF==0);
SSPIF=0;
}

void start_bit(void){
SSPIF=0;
SEN=1;
wait_end_procc();
}

void stop_bit(void){
SSPIF=0;
PEN=1;
wait_end_procc();
}

void ...