Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
C3 = 48 ; C2 = 48 ; C1 = 48 ;
C3 = C3 + (Command % 10 ) ; // These steps extract the hundreds, tens and units
Command = Command / 10 ; // from Command and stores them in C1, C2 and C3
C2 = C2 + (Command % 10 ) ;
Command = Command / 10 ;
C1 = C1 + (Command % 10 ) ;
I'm going to look into that!
thanks for u r suggestion..!
I will be back after finishing all those things
hi Brian,
This is for FFh, but the method is the same, just add the 1000's part.
Look at Pommie's post
[
Thanks for the new ideas!
May any one send the circuit to display any character on lcd screen without using microcontroller?
Silly idea, you need a processor - end of story.
Nigel - I suggested connecting the LCD up on breadboard without a Microcontroller purely as a learning exercise. It would give an appreciation for how an LCD works. You would need a processor to implement a useful display, of course.