Re: DELAY PROBLEM
Posted: Thu May 20, 2010 8:54 am
Hello,
Are you using a loop similar to this.
Loop
{
Output 1
Delay
Output 2
}
If so then your Output 1 will be seen but the Output 2 is on and off so fast that you will not see it. You will need 2 delays to allow your program to toggle correctly.
Loop
{
Output 1
Delay
Output 2
Delay
}
Are you using a loop similar to this.
Loop
{
Output 1
Delay
Output 2
}
If so then your Output 1 will be seen but the Output 2 is on and off so fast that you will not see it. You will need 2 delays to allow your program to toggle correctly.
Loop
{
Output 1
Delay
Output 2
Delay
}