: Block code
Archiver
Posts: 46,084
This might work - - - -
In this loop only pin 2 will cycle or change state . Because the
" Goto SKP " command will bypass the code for pin 3 .
How ever if you " comment - out " Goto SKP - then the
lines for pin 3 will be in the loop
Good Luck
Start :
high 2
pause 222
low 2
Goto SKP
high 3
pause 333
low 3
SKP :
pause 222
Goto Start
In this loop only pin 2 will cycle or change state . Because the
" Goto SKP " command will bypass the code for pin 3 .
How ever if you " comment - out " Goto SKP - then the
lines for pin 3 will be in the loop
Good Luck
Start :
high 2
pause 222
low 2
Goto SKP
high 3
pause 333
low 3
SKP :
pause 222
Goto Start