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.
What are the problems you are facing?
---------- Post added at 00:43 ---------- Previous post was at 00:29 ----------
Are you using mikroc pro? At a quick glance , there are some problems in the display part.
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 ones=temp%10; temp=temp/10; tens=temp%10; temp=temp/10; hundreds=temp%10; thous=temp/10; Lcd_Chr(1,3,thous+48); Lcd_Chr(1,4,hundreds+48); Lcd_Chr(1,5,'.'); Lcd_Chr(1,6,tens+48); Lcd_Chr(1,7,ones+48);