what do you mean macro?
you can use subroutines to execute differnt things.
program code idea *this is not a program
'---------------------------------------------------
GOSUB light
PAUSE 1000 '1 sec
GOSUB motor
PAUSE 1000
END
light:
high portb.0 'energize LED on pin portb.0
RETURN 'go back to line just below GOSUB light
motor:
high portb.1 ' energize MOTOR on pin portb.1
RETURN 'go back to line just below GOSUB motor
'--------------------------------------------------------
or do you mean like the configuration file?
Bookmarks