N.Karthick
Junior Member level 2
- Joined
- Sep 19, 2014
- Messages
- 24
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Location
- Tirupur, India
- Activity points
- 166
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.
int x;
int y;
void main(){
x=1023; // set x to maximum value of 1023 - just a guess - no idea what is actually required
for(y=0; y< 1024; y++){
Delay_ms(10); // adjust to suit time of waveform - if that is what is wanted - again just a wild guess
}
while(1); // infinite loop to prevent return to operating system
}