Running multiple programs
pinkdolphin02
Posts: 13
in BASIC Stamp
Im having trouble figuring out how to run multiple programs on the BS2 2.5. i need to loops that are independent of each other so they don't slow eachother down when actually running the program. I tried to keep it in the same DO LOOP just to find out that it really slows down the whole process which the opposite of what I want to happen. the program I have right now is such:
DIR14 = 1
DIR8 = 1
DO
OUT14 = IN3
IF (IN9 = 1) THEN
FREQOUT 8, 10, 2500
ELSE
FREQOUT 8, 10, 1000
ENDIF
LOOP
Any help will be greatly appreciated
DIR14 = 1
DIR8 = 1
DO
OUT14 = IN3
IF (IN9 = 1) THEN
FREQOUT 8, 10, 2500
ELSE
FREQOUT 8, 10, 1000
ENDIF
LOOP
Any help will be greatly appreciated
Comments