PDA

View Full Version : OpenSBP - IF - THEN



Scott216
06-21-2017, 10:54 PM
Does OpenSBP support IF - Then like this

IF blah blah THEN
statement
statement
statement
END IF

If so, does it also support ELSE?

Or does it just do a a single line like

IF blah blah THEN statement

steve_g
06-22-2017, 03:33 AM
http://shopbottools.com/ShopBotDocs/software.htm

See SBP programming handbook…
I see IF…Then, but not Else.

SG

Scott216
06-22-2017, 08:37 AM
Thanks. I was looking at the programming handbook. I just found it hard to believe it doesn't have ELSE. Also, it seems I can only execute one command after THEN like this

IF blah blah THEN command

I can't do this:

IF blah blah THEN
Command
Command
Command
END IF