
Originally Posted by
Mus.me
i think none understands my quetion.i want to run like this code ..
i want both programes to run apart from each other its just example so i can write my programe like this plz help
Code:
main: ' i wa]nt this led to blink forever without any other delay or stops
high led
pause 100
low led
pause 100
goto main
loop: ' and i want this led1 to blink without any other delay or stop
high led1
pause 2000
low led1
pause 200
goto loop
You might try this:
Code:
main:
For ledvar = 0 to 100
low led
pause 100
high led
pause 100
next ledvar
low led1
For ledvar = 0 to 100
low led
pause 100
high led
pause 100
High LED1
goto Main
If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
.
Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
.
There simply is no "Happy Spam" If you do it you will disappear from this forum.
Bookmarks