Jun 20, 2014 #1 A alimemory Junior Member level 1 Joined Jun 19, 2014 Messages 19 Helped 0 Reputation 0 Reaction score 0 Trophy points 1 Location Nigeria Visit site Activity points 119 I want to learn how to defined GLCD module connection e.g USING Nokia 3310 screan. Using MikroC. I need an explain on this what means? TRISB = 0x00; PORTB = 0x00; THANKS
I want to learn how to defined GLCD module connection e.g USING Nokia 3310 screan. Using MikroC. I need an explain on this what means? TRISB = 0x00; PORTB = 0x00; THANKS
Jun 20, 2014 #2 embpic Advanced Member level 3 Joined May 29, 2013 Messages 742 Helped 80 Reputation 160 Reaction score 77 Trophy points 1,308 Location india Visit site Activity points 5,213 TRISB register defines that PORT will be work as input or output. any TRISx and x is any any port like A,b,c,... and PORTB = 0x00; Means this port will work as ouput. - - - Updated - - - if u assign PORTB = 0xff; then port will work as input.
TRISB register defines that PORT will be work as input or output. any TRISx and x is any any port like A,b,c,... and PORTB = 0x00; Means this port will work as ouput. - - - Updated - - - if u assign PORTB = 0xff; then port will work as input.
Jun 20, 2014 #3 A alimemory Junior Member level 1 Joined Jun 19, 2014 Messages 19 Helped 0 Reputation 0 Reaction score 0 Trophy points 1 Location Nigeria Visit site Activity points 119 What about GLCD? Thanks
Jun 20, 2014 #4 embpic Advanced Member level 3 Joined May 29, 2013 Messages 742 Helped 80 Reputation 160 Reaction score 77 Trophy points 1,308 Location india Visit site Activity points 5,213 yes u can interface using any port for GLCD. But mostly use single port for sending data to GLCD and use control signals from other port. - - - Updated - - - what kinda help u want for GLCD.
yes u can interface using any port for GLCD. But mostly use single port for sending data to GLCD and use control signals from other port. - - - Updated - - - what kinda help u want for GLCD.