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.
hi
im new to pic programming, I saw a led c project online which worked well on my pic18f4550 but i want to edit the time delay. I need help in calculating the delay with respect to any osc. in c im using 12MHz crystal
Thanks
void delay_ms(int time)
{
int i;
for (i=0;i<time;i++)
_delay(30000);
}