Programming Editor Simlation

comet

New Member
Hi to all!

I tried to work with 4 Tasks with the M2's. It works, really...
But in the Simulator I can't debug the Task 1 to 3.

See here for my test-program!
Code:
#picaxe 20m2
start0:
	high 0
	pause 100
	low 0
	pause 100
	goto start0
start1:
	high 1
	pause 200
	low 1
	pause 200
	goto start1
start2:
	high 2
	pause 500
	low 2
	pause 500
	goto start2
start3:
	high 3
	pause 1000
	low 3
	pause 1000
	goto start3
Bye Juergen
 
Last edited by a moderator:
Top