We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
hi!i want to know how to to give a delay of 0.1 second in keil assembley of 8051 microcontroller, using timers. it would be great if any of you could help, esp with the code. i can give small delays easily but this is somewhat large....i have a project due and i am stuck at this. thankyou in advance:)
I can sucessfully measure a day. It's the time from sunrise to the next sunrise. Or from sunset to the next sunset. This works fine; I have tested this several times. But now I need to measure a week. How can I do this. Please help. ;-)
So what is the exact purpose of this application?
If that's something of just an experiment, it's OK.
But if your application must keep time going (say, for months or years or to the end of the world), you should take an RTC (Real Time Clock) rather than do it by timer within microcontrollers. Compensation for temperature, variation and aging is totally unavailable in this case.
i want to make a watch that can measure time upto one tenth os a second, and i have just recently studied timers. mov tmod, #01 mov th0, #76 mov tl0, #0 setb tr0 k:jnb tf0, k clr tr0 clr tf0 this is my code and it it works just fine:) thankyou so much:)